diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Patch.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Patch.cs index 3ad6899e8f..bfadd6f25f 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Patch.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Patch.cs @@ -11,6 +11,9 @@ using Content.Shared.Mobs.Components; using System.Diagnostics.CodeAnalysis; using Content.Shared.Chemistry; using Content.Shared.DoAfter; +using Content.Shared.FixedPoint; +using System.Threading; +using Timer = Robust.Shared.Timing.Timer; namespace Content.Server.Chemistry.EntitySystems { @@ -25,6 +28,7 @@ namespace Content.Server.Chemistry.EntitySystems SubscribeLocalEvent(OnAfterInteract); SubscribeLocalEvent(OnUseInHand); SubscribeLocalEvent(OnSolutionChange); + } private void OnPatchDoAfter(Entity entity, ref PatchDoAfterEvent args) @@ -151,11 +155,7 @@ namespace Content.Server.Chemistry.EntitySystems if (!targetSolution.CanAddSolution(removedSolution)) return true; - _reactive.DoEntityReaction(target.Value, removedSolution, ReactionMethod.Touch); - // Transfering only half of the solution via Injection method - removedSolution.ScaleSolution(0.5f); - _reactive.DoEntityReaction(target.Value, removedSolution, ReactionMethod.Injection); - _solutionContainers.TryAddSolution(targetSoln.Value, removedSolution); + ApplyOnSkin(patch,target, targetSoln, removedSolution); QueueDel(patch); _adminLogger.Add(LogType.ForceFeed, $"{_entMan.ToPrettyString(user):user} put a patch on {_entMan.ToPrettyString(target.Value):target} with a solution {SolutionContainerSystem.ToPrettyString(removedSolution):removedSolution} using a {_entMan.ToPrettyString(uid):using}"); @@ -163,7 +163,82 @@ namespace Content.Server.Chemistry.EntitySystems return true; } - static bool EligibleEntity([NotNullWhen(true)] EntityUid? entity, IEntityManager entMan, PatchComponent component) + /// + /// Applies solution via ReactionMethod.Touch + /// Applies until CancellationToken is not cancelled + /// if CancellationToken is cancelled starts ApplyIntoBloodStream + /// + private void ApplyOnSkin(Entity entity, EntityUid? target, Entity? targetSoln, Solution solution) + { + CancellationToken token = entity.Comp.CancelTokenSourceSkin.Token; + Double applicationTime = (double) (entity.Comp.BaseApplicationTime + 2 * (solution.Volume / 5)); + FixedPoint2 ups = 1 / applicationTime; // ups - units per second + var currentSolution = solution; + + currentSolution.ScaleSolution((float)ups); + + if (target.HasValue) + { + Timer.SpawnRepeating(TimeSpan.FromSeconds(1), () => + { + if (token.IsCancellationRequested) + return; + _reactive.DoEntityReaction(target.Value, currentSolution, ReactionMethod.Touch); + }, token); + } + + Timer.Spawn(TimeSpan.FromSeconds(applicationTime), () => + { + OnRemoveSkin(entity); + ApplyIntoBloodStream(entity, target, targetSoln, solution); + }); + } + + + /// + /// Almost similar to the ApplyOnSkin. + /// Applies solution into bloodstream. + /// + private void ApplyIntoBloodStream(Entity entity, EntityUid? target, Entity? targetSoln, Solution solution) + { + CancellationToken token = entity.Comp.CancelTokenSourceBlood.Token; + Double applicationTime = (double) (entity.Comp.BaseApplicationTime + 2 * (solution.Volume / 5)); + FixedPoint2 ups = (1 / applicationTime) / 2; // ups - units per second + var currentSolution = solution; + + currentSolution.ScaleSolution((float)ups); + + if (targetSoln.HasValue) + { + Timer.SpawnRepeating(TimeSpan.FromSeconds(1), () => + { + if (token.IsCancellationRequested) + return; + _solutionContainers.TryAddSolution(targetSoln.Value, solution); + + if (target.HasValue) + { + _reactive.DoEntityReaction(target.Value, solution, ReactionMethod.Touch); + } + }, token); + + Timer.Spawn(TimeSpan.FromSeconds(applicationTime / 2), () => OnRemoveBlood(entity)); + } + + } + + // Stops Timer, otherwise ApplyOnSkin and ApplyIntoTheBloodstream will last forever + private static void OnRemoveSkin(Entity entity) + { + entity.Comp.CancelTokenSourceSkin.Cancel(); + } + + private static void OnRemoveBlood(Entity entity) + { + entity.Comp.CancelTokenSourceBlood.Cancel(); + } + + private static bool EligibleEntity([NotNullWhen(true)] EntityUid? entity, IEntityManager entMan, PatchComponent component) { // Using patch only on mobs return component.OnlyMobs diff --git a/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs b/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs index 7a0d10998c..b1dfbd0662 100644 --- a/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs +++ b/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs @@ -12,5 +12,5 @@ public sealed partial class ERTMapComponent : Component public EntityUid? Shuttle; public static ResPath OutpostMap = new("/Maps/ERT/ERTStation.yml"); - public static ResPath ShuttleMap = new("/Maps/ERT/ERTShuttle.yml"); + //public static ResPath ShuttleMap = new("/Maps/ERT/ERTShuttle.yml"); } diff --git a/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs b/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs index 52a9f6f6af..238c93dbfa 100644 --- a/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs +++ b/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs @@ -65,7 +65,7 @@ public sealed class ERTRecruitmentRule : StationEventSystem(component.Shuttle, out var shuttle) && component.Outpost != null) { _shuttle.TryFTLDock(component.Shuttle.Value, shuttle, component.Outpost.Value); } + */ _recruitment.StartRecruitment(ERTRecruitmentRuleComponent.EventName); } @@ -167,6 +169,10 @@ public sealed class ERTRecruitmentRule : StationEventSystem(outpost); ERTMap.MapId = mapId; - ERTMap.Shuttle = shuttleId; + //ERTMap.Shuttle = shuttleId; return true; } diff --git a/Content.Server/_White/ERTRecruitment/ERTRecruitmentRuleComponent.cs b/Content.Server/_White/ERTRecruitment/ERTRecruitmentRuleComponent.cs index 81364f850e..3541043432 100644 --- a/Content.Server/_White/ERTRecruitment/ERTRecruitmentRuleComponent.cs +++ b/Content.Server/_White/ERTRecruitment/ERTRecruitmentRuleComponent.cs @@ -21,8 +21,8 @@ public sealed partial class ERTRecruitmentRuleComponent : Component [ViewVariables] public EntityUid? Outpost; - [ViewVariables] - public EntityUid? Shuttle; + //[ViewVariables] + // public EntityUid? Shuttle; [ViewVariables] public EntityUid? TargetStation; } diff --git a/Content.Shared/Chemistry/Components/PatchComponent.cs b/Content.Shared/Chemistry/Components/PatchComponent.cs index da014a4f53..864843f552 100644 --- a/Content.Shared/Chemistry/Components/PatchComponent.cs +++ b/Content.Shared/Chemistry/Components/PatchComponent.cs @@ -1,4 +1,5 @@ -using Content.Shared.DoAfter; +using System.Threading; +using Content.Shared.DoAfter; using Content.Shared.FixedPoint; using Robust.Shared.GameStates; using Robust.Shared.Serialization; @@ -22,6 +23,9 @@ public sealed partial class PatchDoAfterEvent : SimpleDoAfterEvent [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class PatchComponent : Component { + //[ViewVariables, DataField] + public CancellationTokenSource CancelTokenSourceSkin = new(); + public CancellationTokenSource CancelTokenSourceBlood = new(); [ViewVariables, AutoNetworkedField] public FixedPoint2 CurrentVolume; @@ -32,9 +36,15 @@ public sealed partial class PatchComponent : Component [DataField("solutionName")] public string SolutionName = "patch"; + // Application only on mobs [DataField("onlyMobs")] public bool OnlyMobs = true; + // Application time used in calculation final time + [DataField("applicationTime")] + public FixedPoint2 BaseApplicationTime = 10; + + // Delay used in calculation final delay time [ViewVariables(VVAccess.ReadWrite)] [DataField("delay")] public TimeSpan Delay = TimeSpan.FromSeconds(5); diff --git a/Resources/Locale/en-US/ghost/ghost-gui.ftl b/Resources/Locale/en-US/ghost/ghost-gui.ftl index 909513e96c..7c5e09ae10 100644 --- a/Resources/Locale/en-US/ghost/ghost-gui.ftl +++ b/Resources/Locale/en-US/ghost/ghost-gui.ftl @@ -1,10 +1,19 @@ ghost-gui-return-to-body-button = Return to body ghost-gui-ghost-warp-button = Ghost Warp ghost-gui-ghost-roles-button = Ghost Roles ({$count}) +ghost-gui-toggle-ghost-visibility-name = Toggle Ghosts +ghost-gui-toggle-ghost-visibility-desc = Toggle the visibility of other ghosts. ghost-gui-toggle-ghost-visibility-popup = Toggled visibility of ghosts. +ghost-gui-toggle-lighting-manager-name = Toggle All Lighting +ghost-gui-toggle-lighting-manager-desc = Toggle all light rendering to better observe dark areas. ghost-gui-toggle-lighting-manager-popup = Toggled all lighting. +ghost-gui-toggle-fov-name = Toggle FoV +ghost-gui-toggle-fov-desc = Toggles field-of-view in order to see what players see. ghost-gui-toggle-fov-popup = Toggled field-of-view. - +ghost-gui-scare-name = Boo! +ghost-gui-scare-desc = Scare your crew members because of boredom! +ghost-gui-toggle-ghost-hearing-name = Toggle Ghost Hearing +ghost-gui-toggle-ghost-hearing-desc = Toggle between hearing all messages and hearing only radio & nearby messages. ghost-gui-toggle-hearing-popup-on = You can now hear all messages. ghost-gui-toggle-hearing-popup-off = You can now only hear radio and nearby messages. diff --git a/Resources/Locale/en-US/robotics/ai-actions.ftl b/Resources/Locale/en-US/robotics/ai-actions.ftl new file mode 100644 index 0000000000..8c10c30e06 --- /dev/null +++ b/Resources/Locale/en-US/robotics/ai-actions.ftl @@ -0,0 +1,12 @@ +action-name-show-solar-console = Solar Control Interface +action-description-show-solar-console = View a solar control interface. +action-name-show-communications-console = Communications Interface +action-description-show-communications-console = View a communications interface. +action-name-show-radar-console = Mass Scanner Interface +action-description-show-radar-console = View a mass scanner interface. +action-name-show-cargo-console = Cargo Ordering Interface +action-description-show-cargo-console = View a cargo ordering interface. +action-name-show-crew-monitoring-console = Crew Monitoring Interface +action-description-crew-monitoring-console = View a crew monitoring interface. +action-name-show-station-records-console = Station Records Interface +action-description-show-station-records-console = View a station records Interface diff --git a/Resources/Locale/ru-RU/ghost/ghost-gui.ftl b/Resources/Locale/ru-RU/ghost/ghost-gui.ftl index 5d5596b460..074860a264 100644 --- a/Resources/Locale/ru-RU/ghost/ghost-gui.ftl +++ b/Resources/Locale/ru-RU/ghost/ghost-gui.ftl @@ -11,16 +11,27 @@ ghost-gui-toggle-lighting-manager-popup = Рендеринг света был ghost-gui-toggle-fov-name = Переключить поле зрения ghost-gui-toggle-fov-desc = Переключить поле зрения чтобы видеть то же, что и игроки. ghost-gui-toggle-fov-popup = Поле зрения было переключено. +ghost-gui-scare-name = Буу! +ghost-gui-scare-desc = Напугайте экипаж станции! +ghost-gui-toggle-ghost-hearing-name = Переключить видимость сообщений +ghost-gui-toggle-ghost-hearing-desc = Переключение между прослушиванием всех сообщений и прослушиванием только радиосвязи и ближайших сообщений. +ghost-gui-toggle-hearing-popup-on = Теперь вы слышите все сообщения. +ghost-gui-toggle-hearing-popup-off = Теперь вы можете слышать только радиосвязь и ближайшие сообщения. + + ghost-target-window-title = Телепорт призрака ghost-target-window-current-button = Телепорт в: { $name } + ghost-roles-window-title = Роли призраков ghost-roles-window-request-role-button = Запросить ghost-roles-window-request-role-button-timer = Запросить ({ $time }сек.) ghost-roles-window-follow-role-button = Следовать ghost-roles-window-no-roles-available-label = В настоящее время нет доступных ролей призраков. + ghost-return-to-body-title = Вернуться в тело ghost-return-to-body-text = Вы возрождаетесь! Вернуться в свое тело? ghost-roles-window-rules-footer = Кнопка станет доступна через { $time } секунд (эта задержка нужна, чтобы убедиться, что вы прочитали правила). + ghost-respawn-time-left = Минут осталось до возможности вернуться в раунд - { $time }. ghost-respawn-max-players = Функция недоступна, игроков на сервере должно быть меньше { $players }. ghost-respawn-window-title = Правила возвращения в раунд diff --git a/Resources/Maps/ERT/ERTStation.yml b/Resources/Maps/ERT/ERTStation.yml index 3e031f7ca1..9e4b93eeb4 100644 --- a/Resources/Maps/ERT/ERTStation.yml +++ b/Resources/Maps/ERT/ERTStation.yml @@ -1,1327 +1,3745 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 24: FloorDark - 29: FloorDarkMono - 49: FloorKitchen - 53: FloorMetalDiamond - 70: FloorSteel - 81: FloorTechMaint2 - 83: FloorWhite - 88: FloorWhiteMono - 93: FloorWood - 95: Lattice - 96: Plating + 30: FloorDark + 36: FloorDarkMono + 51: FloorGrass + 64: FloorKitchen + 82: FloorReinforcedHardened + 93: FloorSteel + 112: FloorTechMaint2 + 115: FloorWhite + 130: Lattice + 131: Plating entities: - proto: "" entities: - uid: 1 components: - type: MetaData - - pos: -3.9375005,-1.5 - parent: 2522 - type: Transform - - chunks: + name: ERT station "Theta-19" + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: -1.1896636,-1.0184419 + parent: 1 + - type: MapGrid + chunks: 0,0: ind: 0,0 - tiles: MQAAADEAAAAxAAAAYAAAAGAAAABgAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAADEAAAAxAAAAMQAAAGAAAABGAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABfAAAAXwAAAF8AAABgAAAAMQAAAGAAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAHQAAAB0AAAAdAAAAYAAAAAAAAAAAAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAEYAAABGAAAARgAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAGAAAAAdAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABGAAAARgAAAEYAAABgAAAAGAAAABgAAAAdAAAAHQAAAB0AAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAAYAAAABgAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAAAdAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAAAYAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAGAAAABgAAAAYAAAAGAAAABgAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAFEAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAARgAAAGAAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAA== - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAMQAAADEAAABgAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAADEAAAAxAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADEAAAAxAAAAMQAAAGAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAF8AAAAxAAAAMQAAADEAAABgAAAAYAAAAF8AAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAMQAAADEAAAAxAAAAYAAAAB0AAABgAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAA== - -1,0: - ind: -1,0 - tiles: HQAAAGAAAABTAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAUwAAAGAAAAAdAAAAUwAAAFMAAABgAAAAMQAAAFMAAABgAAAAUwAAAB0AAAAdAAAAHQAAAGAAAAAdAAAAUwAAAFMAAABgAAAAUwAAAFMAAABTAAAAYAAAADEAAABgAAAAYAAAAFMAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABYAAAAYAAAAFMAAABgAAAAUwAAAGAAAABgAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABgAAAARgAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAARgAAAEYAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABgAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGAAAABGAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAFMAAABTAAAAYAAAAGAAAABTAAAAYAAAAGAAAABGAAAAYAAAABgAAABgAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABTAAAAYAAAAGAAAAAdAAAAUwAAAB0AAABgAAAAHQAAAB0AAABgAAAAYAAAAB0AAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAHQAAAFMAAAAdAAAAYAAAAB0AAAAdAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAYAAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAB0AAABgAAAAYAAAAGAAAABgAAAARgAAAGAAAABGAAAARgAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAAA1AAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAANQAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABGAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAADUAAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAAAdAAAAHQAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAAYAAAAGAAAABgAAAAHQAAAEYAAABGAAAAUQAAAEYAAABGAAAAAAAAAF8AAAAAAAAAYAAAAB0AAABGAAAARgAAAB0AAAAdAAAAYAAAAB0AAABGAAAAHQAAAGAAAABGAAAARgAAAA== - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAYAAAABgAAAAYAAAAGAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAGAAAAAxAAAAMQAAADEAAAAxAAAAAAAAAGAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAABgAAAAMQAAADEAAAAxAAAAMQAAAAAAAABgAAAAGAAAABgAAAAdAAAAGAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAADEAAAAxAAAAMQAAADEAAABgAAAAYAAAABgAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAxAAAAHQAAAGAAAABTAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAHQAAAGAAAAAdAAAAHQAAAB0AAABgAAAAMQAAAA== - -1,1: - ind: -1,1 - tiles: AAAAAF8AAAAAAAAAYAAAAB0AAABGAAAARgAAAB0AAAAdAAAAYAAAAB0AAABGAAAAHQAAAGAAAABgAAAARgAAAAAAAABfAAAAAAAAAGAAAAAdAAAARgAAAEYAAAAdAAAAHQAAAGAAAAAdAAAARgAAAB0AAABgAAAAHQAAAEYAAABfAAAAXwAAAF8AAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAHQAAAEYAAAAdAAAAYAAAAB0AAABGAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABGAAAAHQAAAGAAAAAdAAAARgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAARgAAAB0AAABgAAAAHQAAAEYAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAABgAAAAYAAAAB0AAABGAAAAXwAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAARgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,1: - ind: 0,1 - tiles: YAAAAGAAAABGAAAARgAAAGAAAABgAAAAYAAAAEYAAABgAAAAYAAAAB0AAABGAAAARgAAAB0AAABgAAAAHQAAAB0AAABgAAAARgAAAEYAAAAdAAAAYAAAAEYAAABGAAAARgAAAGAAAAAdAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAYAAAAEYAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAHQAAAGAAAABGAAAARgAAAB0AAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAABgAAAARgAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAYAAAAEYAAABGAAAAHQAAAGAAAABGAAAARgAAAEYAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAGAAAABGAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAUwAAAFMAAABTAAAAYAAAAEYAAABGAAAARgAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAFMAAABTAAAAUwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,0: - ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAHQAAAGAAAAAdAAAAUwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABTAAAAUwAAAB0AAABgAAAAUwAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAGAAAABgAAAAUwAAAFMAAABgAAAAYAAAAGAAAABTAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAUwAAAGAAAABTAAAAUwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAB0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABgAAAAHQAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAADUAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAA1AAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABgAAAANQAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: AAAAAF8AAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHQAAAGAAAAAdAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAHQAAAGAAAAAdAAAAUwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + version: 6 1,0: ind: 1,0 - tiles: AAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAFEAAABgAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAUgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAUgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJAAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAJAAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAJAAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAMwAAAAAAMwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + version: 6 1,1: ind: 1,1 - tiles: RgAAAB0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEYAAAAdAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-1: - ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAUgAAAAAAgwAAAAAAUgAAAAAAUgAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAUgAAAAAAgwAAAAAAUgAAAAAAUgAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAJAAAAAAAgwAAAAAAcwAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcwAAAAAAJAAAAAAAgwAAAAAAcwAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: JAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAJAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: MwAAAAAAMwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAMwAAAAAAMwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMwAAAAAAMwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: cwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHgAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAHgAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: gwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAgwAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: JAAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAcwAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: JAAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAAAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: cAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAcwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: XQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcwAAAAAAcwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: AAAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - - angularDamping: 0.05 + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - type: OccluderTree - type: SpreaderGrid - type: Shuttle - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: - color: '#52B4E9FF' + color: '#00B400B2' id: Bot decals: - 92: -23,-1 - 93: -23,0 - 94: -23,1 - 95: -20,1 - 96: -20,0 - 97: -20,-1 - 106: -23,4 + 1510: 41,73 + 1511: 40,73 + 1512: 39,72 + 1513: 43,76 + 1514: 45,73 + 1515: 46,73 + 1516: 47,72 - node: - color: '#FFFFFFFF' + color: '#80C71FB2' id: Bot decals: - 120: -1,8 - 121: 0,8 - 122: 1,8 - 123: 2,8 - 124: 3,8 - 125: 3,7 - 126: 2,7 - 127: 1,7 - 128: 0,7 - 129: -1,7 - 138: -8,13 - 141: -9,9 - 143: -12,7 - 144: -13,7 - 145: -14,7 - 146: -14,8 - 159: -12,15 - 160: -12,16 - 161: -12,17 - 162: -8,17 - 163: -9,17 - 164: -9,16 - 165: -8,16 - 166: -8,15 - 167: -9,15 - 201: -6,14 - 253: 4,21 - 254: 4,19 - 255: 4,17 - 413: 15,16 - 414: 15,17 - 415: 17,17 - 416: 17,16 - 421: 10,17 - 422: 13,17 - 473: 11,6 - 474: 10,6 - 502: 11,12 - 561: -2,8 - 562: -2,7 - 563: 4,8 - 564: 4,7 + 876: -1,40 + 877: -1,39 + 878: -1,38 - node: - color: '#52B4E996' + color: '#A46106B2' + id: Bot + decals: + 1055: 23,48 + 1056: 23,46 + 1074: 26,52 + 1075: 26,51 + 1081: 19,49 + 1082: 20,49 + 1129: 16,48 + 1130: 15,48 + 1476: 53,68 + - node: + color: '#DE3A3AB2' + id: Bot + decals: + 213: 35,26 + 221: 33,26 + 232: 35,22 + 233: 36,22 + 234: 36,21 + 235: 35,21 + 236: 35,20 + 237: 36,20 + 252: 47,34 + 253: 47,30 + 272: 49,34 + 273: 50,34 + 274: 51,34 + 393: 47,28 + 394: 47,27 + 400: 45,26 + 401: 45,24 + 1163: 32,51 + 1164: 32,50 + 1165: 30,51 + 1166: 30,50 + 1167: 32,48 + 1168: 32,47 + 1169: 30,48 + 1170: 30,47 + 1171: 34,51 + 1172: 34,50 + 1173: 36,51 + 1174: 36,50 + 1175: 36,48 + 1176: 36,47 + 1177: 34,48 + 1178: 34,47 + 1477: 54,68 + - node: + color: '#EFB341B2' + id: Bot + decals: + 30: 27,16 + 31: 21,19 + 32: 21,18 + 33: 24,19 + 34: 24,18 + 37: 24,17 + 72: 21,12 + 73: 21,11 + 74: 23,12 + 75: 23,11 + 76: 23,9 + 77: 23,8 + 78: 21,9 + 79: 21,8 + 96: 30,17 + 97: 29,17 + 98: 32,17 + 99: 32,13 + 100: 30,13 + 101: 29,13 + 159: 25,16 + 166: 30,21 + 167: 31,21 + 168: 32,21 + 169: 31,22 + 170: 31,20 + 907: 23,44 + 1478: 55,68 + 1843: 36,69 + 1847: 58,40 + - node: + color: '#EFB346B2' + id: Bot + decals: + 1932: 41,18 + - node: + color: '#334E6DB2' id: BotGreyscale decals: - 535: -12,-3 - 565: -11,-5 + 1479: 54,66 - node: - color: '#52B4E9FF' + color: '#52B4E9B2' id: BotGreyscale decals: - 42: -8,-1 - 43: -9,1 - 46: -5,0 - 47: -5,-1 - 48: -6,7 - 49: -6,8 - 50: -4,8 - 51: -4,7 - 52: -13,1 - 53: -12,1 - 54: -12,-1 - 55: -13,-1 - 80: -18,-1 - 81: -16,-1 + 556: 3,28 + 557: 3,27 + 558: 5,28 + 559: 5,27 + 561: 3,24 + 677: 1,38 + 678: 1,36 + 684: 1,37 + 686: 17,30 + 687: 17,28 + 728: 11,40 + 729: 11,39 + 730: 11,36 + 731: 11,37 + 732: 14,37 + 733: 15,37 + 734: 16,37 + 735: 15,40 + 736: 16,40 + 770: 22,40 + 771: 21,40 + 772: 22,36 + 773: 21,36 + 775: 18,39 + 801: 20,30 + 802: 20,28 + 820: 12,44 + 821: 16,44 + 822: 16,42 + 1480: 56,68 + 1490: 51,68 - node: - color: '#A020F0FF' + color: '#8932B8B2' id: BotGreyscale decals: - 512: 10,2 - 513: 11,2 - 514: 12,2 + 2068: 33,54 + 2070: 37,54 + 2071: 36,54 - node: - color: '#52B4E9FF' - id: Box + color: '#9FED58B2' + id: BotGreyscale decals: - 104: -23,3 - 105: -23,5 + 1481: 53,66 + - node: + color: '#D381C9B2' + id: BotGreyscale + decals: + 1482: 55,66 + - node: + color: '#D4D4D4B2' + id: BotGreyscale + decals: + 1483: 56,66 + 1489: 51,69 + - node: + color: '#A46106B2' + id: BotLeft + decals: + 1072: 27,52 + 1073: 25,51 + 1085: 19,48 + 1086: 20,50 + - node: + color: '#EFB341B2' + id: BotLeft + decals: + 90: 32,16 + 91: 32,12 + 92: 29,12 + 93: 30,14 + 94: 30,18 + 95: 29,16 + 164: 32,22 + 165: 30,20 + - node: + color: '#A46106B2' + id: BotRight + decals: + 1070: 25,52 + 1071: 27,51 + 1083: 19,50 + 1084: 20,48 + 1091: 19,46 + 1092: 20,46 + - node: + color: '#EFB341B2' + id: BotRight + decals: + 84: 29,18 + 85: 30,16 + 86: 29,14 + 87: 30,12 + 88: 32,14 + 89: 32,18 + 162: 30,22 + 163: 32,20 - node: color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 1468: 51,54 + 1469: 53,54 + - node: + color: '#00B400B2' id: Box decals: - 130: 1,10 - 139: -9,13 - 140: -8,9 - 142: -11,7 - 193: -6,15 - 194: -6,16 - 195: -6,17 - 196: -6,18 - 197: -4,18 - 198: -4,17 - 199: -4,16 - 200: -4,15 - 219: -2,20 - 220: -2,19 - 221: -2,18 - 222: -2,17 - 223: 0,20 - 224: 0,19 - 225: 0,18 - 226: 0,17 - 417: 12,17 - 418: 11,17 - 419: 10,16 - 420: 13,16 - 467: 12,8 - 468: 13,8 - 469: 14,8 - 470: 14,6 - 471: 13,6 - 472: 12,6 - 494: 10,12 - 495: 11,10 - 496: 12,12 - 497: 13,12 - 498: 14,12 - 499: 14,10 - 500: 13,10 - 501: 12,10 - 541: -2,21 - 542: -2,22 - 543: 0,21 - 544: 0,22 - 545: -6,19 - 546: -6,20 - 547: -4,19 - 548: -4,20 + 1428: 56,52 + 1429: 55,52 + 1430: 51,52 + 1431: 50,52 + 1432: 46,48 + 1441: 46,47 - node: - color: '#52B4E996' + color: '#80C71FB2' + id: Box + decals: + 879: -3,40 + - node: + color: '#A46106B2' + id: Box + decals: + 1131: 12,50 + 1138: 12,51 + - node: + color: '#DE3A3AB2' + id: Box + decals: + 185: 36,30 + 186: 32,30 + 187: 34,29 + 214: 35,24 + 215: 36,24 + 238: 34,20 + 248: 45,34 + 249: 45,33 + 250: 45,31 + 251: 45,30 + 395: 50,24 + 396: 49,24 + - node: + color: '#EFB341B2' + id: Box + decals: + 60: 27,12 + 61: 27,11 + 62: 27,9 + 63: 27,8 + 901: 19,44 + 902: 20,44 + 903: 18,44 + 904: 18,42 + 905: 19,42 + 906: 20,42 + 1844: 37,69 + - node: + color: '#00FFFF66' id: BoxGreyscale decals: - 525: -10,-3 - 526: -9,-3 - 527: -8,-3 - 528: -7,-3 - 529: -6,-3 - 530: -6,-5 - 531: -7,-5 - 532: -8,-5 - 533: -10,-5 - 534: -9,-5 + 0: 11,12 + 1: 12,12 + 2: 13,12 + 3: 14,12 - node: - color: '#52B4E9FF' + color: '#334E6DB2' id: BoxGreyscale decals: - 40: -7,-1 - 41: -9,-1 - 44: -3,-1 - 45: -4,-1 - 56: -11,1 - 57: -11,-1 - 78: -18,0 - 79: -16,0 + 1557: 39,67 - node: - color: '#A020F0FF' + color: '#52B4E9B2' + id: BoxGreyscale + decals: + 560: 3,25 + 652: 3,31 + 653: 3,30 + 654: 3,33 + 655: 3,34 + 685: 11,28 + 688: 12,30 + 774: 18,40 + 793: 23,32 + - node: + color: '#8932B8B2' + id: BoxGreyscale + decals: + 2069: 33,55 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 1442: 49,57 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 1443: 48,57 + 1444: 47,56 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 1447: 49,54 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 1445: 47,55 + 1446: 48,54 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 1450: 48,56 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 1451: 48,55 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 1448: 49,55 + 1449: 49,56 + - node: + color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 503: 12,4 + 1584: 53,61 - node: - color: '#A020F0FF' + color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 504: 10,4 + 1334: 39,65 + 1571: 46,61 - node: - color: '#A020F0FF' - id: BrickTileSteelCornerSe - decals: - 507: 12,3 - - node: - color: '#A020F0FF' + color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 506: 10,3 + 1224: 24,36 + 2059: 25,21 - node: - color: '#A020F0FF' + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 1575: 43,59 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 1245: 27,44 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 1592: 46,59 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe + decals: + 1370: 41,63 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 1227: 25,36 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 1211: 27,32 + 1212: 27,33 + 1213: 27,34 + 1214: 27,35 + 1215: 27,36 + 1216: 27,37 + 1217: 27,38 + 1218: 27,39 + 1219: 27,40 + 1268: 41,45 + 1342: 51,65 + 1354: 41,62 + 1355: 41,61 + 1356: 41,60 + 1357: 41,59 + 1358: 41,58 + 1359: 41,57 + 1360: 41,56 + 1361: 41,55 + 1362: 41,54 + 1363: 41,53 + 1364: 41,52 + 1365: 41,51 + 1366: 41,50 + 1367: 41,49 + 1368: 41,48 + 1369: 41,47 + 1583: 53,59 + 1585: 53,60 + - node: + color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 505: 11,4 + 1231: 28,44 + 1232: 29,44 + 1233: 33,44 + 1234: 37,44 + 1272: 43,44 + 1273: 44,44 + 1274: 45,44 + 1275: 46,44 + 1276: 47,44 + 1277: 48,44 + 1278: 49,44 + 1279: 50,44 + 1280: 51,44 + 1281: 52,44 + 1282: 53,44 + 1283: 54,44 + 1284: 55,44 + 1285: 56,44 + 1286: 57,44 + 1287: 58,44 + 1335: 40,65 + 1336: 41,65 + 1337: 42,65 + 1338: 43,65 + 1339: 43,65 + 1340: 44,65 + 1341: 48,65 + 1573: 45,59 + 1574: 44,59 + 1586: 52,61 + 1587: 51,61 + 1588: 50,61 + 1589: 49,61 + 1590: 48,61 + 1591: 47,61 - node: - color: '#A020F0FF' + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 1760: 60,44 + 1761: 61,44 + 1762: 62,44 + 1763: 63,44 + 1764: 67,44 + 1765: 71,44 + 1766: 72,44 + 1767: 73,44 + 1768: 75,44 + 1769: 74,44 + 1770: 76,44 + - node: + color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 508: 11,3 + 1235: 37,42 + 1236: 36,42 + 1237: 35,42 + 1238: 34,42 + 1239: 33,42 + 1240: 32,42 + 1241: 31,42 + 1242: 30,42 + 1243: 29,42 + 1244: 28,42 + 1269: 39,42 + 1270: 40,42 + 1271: 41,42 + 1288: 58,42 + 1289: 57,42 + 1290: 56,42 + 1291: 54,42 + 1292: 55,42 + 1293: 53,42 + 1294: 52,42 + 1295: 51,42 + 1296: 50,42 + 1297: 49,42 + 1298: 48,42 + 1299: 47,42 + 1300: 46,42 + 1301: 45,42 + 1302: 44,42 + 1303: 43,42 + 1343: 51,63 + 1344: 50,63 + 1345: 50,63 + 1346: 49,63 + 1347: 48,63 + 1348: 47,63 + 1349: 46,63 + 1350: 45,63 + 1351: 44,63 + 1352: 43,63 + 1353: 42,63 + 1576: 44,59 + 1577: 45,59 + 1578: 46,59 + 1579: 47,59 + 1580: 48,59 + 1581: 49,59 + 1582: 50,59 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 1771: 76,42 + 1772: 75,42 + 1773: 74,42 + 1774: 73,42 + 1775: 72,42 + 1776: 71,42 + 1777: 67,42 + 1778: 66,42 + 1779: 65,42 + 1780: 63,42 + 1781: 62,42 + 1782: 61,42 + 1783: 60,42 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 1220: 25,32 + 1221: 25,33 + 1222: 25,34 + 1223: 25,35 + 1225: 24,37 + 1226: 24,38 + 1228: 25,42 + 1229: 25,43 + 1230: 25,44 + 1267: 39,45 + 1319: 39,47 + 1320: 39,51 + 1321: 39,53 + 1322: 39,52 + 1324: 39,55 + 1325: 39,56 + 1326: 39,57 + 1327: 39,58 + 1328: 39,59 + 1329: 39,60 + 1330: 39,61 + 1331: 39,62 + 1332: 39,63 + 1333: 39,64 + 1572: 46,60 + 2058: 25,22 + - node: + color: '#EFB341B2' + id: BrickTileWhiteBox + decals: + 1848: 58,38 + - node: + color: '#EFB346B2' + id: BrickTileWhiteBox + decals: + 1931: 41,16 + - node: + color: '#00B400B2' + id: BrickTileWhiteCornerNe + decals: + 1380: 46,52 + 1391: 51,48 + 1400: 56,48 + 1495: 47,73 + 1496: 45,76 + 1539: 47,70 + - node: + color: '#334E6DB2' + id: BrickTileWhiteCornerNe + decals: + 1548: 43,70 + 1559: 40,68 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteCornerNe + decals: + 571: 9,35 + 582: 20,34 + 610: 20,26 + 639: 23,26 + 650: 5,34 + 664: 5,40 + 767: 22,37 + 834: 9,44 + - node: + color: '#80C71FB2' + id: BrickTileWhiteCornerNe + decals: + 888: -1,36 + - node: + color: '#8932B8B2' + id: BrickTileWhiteCornerNe + decals: + 2061: 37,56 + - node: + color: '#A46106B2' + id: BrickTileWhiteCornerNe + decals: + 1115: 14,51 + 1141: 27,48 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteCornerNe + decals: + 194: 30,30 + 203: 39,30 + 212: 36,26 + 278: 43,40 + 320: 39,37 + 398: 50,26 + 421: 47,40 + 429: 51,40 + 438: 52,31 + 450: 30,26 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerNe + decals: + 351: 31,40 + 352: 39,40 + 353: 39,33 + 354: 35,33 + 355: 31,33 + 376: 35,40 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 259: 4,24 + 1471: 53,57 + 2011: 45,61 + - node: + color: '#00B400B2' + id: BrickTileWhiteCornerNw + decals: + 1377: 43,52 + 1388: 48,48 + 1401: 53,48 + 1416: 45,48 + 1500: 41,76 + 1503: 39,73 + 1538: 45,70 + - node: + color: '#334E6DB2' + id: BrickTileWhiteCornerNw + decals: + 1549: 42,70 + 1556: 39,68 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteCornerNw + decals: + 546: 22,30 + 570: 7,35 + 638: 22,26 + 665: 1,40 + 698: 11,30 + 790: 22,34 + 797: 19,30 + 809: 11,44 + 857: -3,44 + - node: + color: '#80C71FB2' + id: BrickTileWhiteCornerNw + decals: + 887: -3,36 + - node: + color: '#8932B8B2' + id: BrickTileWhiteCornerNw + decals: + 2080: 34,56 + - node: + color: '#A46106B2' + id: BrickTileWhiteCornerNw + decals: + 1043: 18,52 + 1119: 12,48 + 1140: 25,48 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteCornerNw + decals: + 195: 29,30 + 202: 38,30 + 206: 32,26 + 239: 34,22 + 279: 41,40 + 296: 38,26 + 330: 29,37 + 386: 45,28 + 397: 49,26 + 419: 45,40 + 427: 49,40 + 435: 49,31 + - node: + color: '#EFB341B2' + id: BrickTileWhiteCornerNw + decals: + 48: 25,12 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerNw + decals: + 350: 29,40 + 359: 37,33 + 360: 33,33 + 361: 29,33 + 368: 33,40 + 375: 37,40 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 260: 2,24 + 1462: 43,57 + 1470: 51,57 + 2012: 43,61 + - node: + color: '#00B400B2' + id: BrickTileWhiteCornerSe + decals: + 1382: 46,50 + 1393: 51,46 + 1399: 56,46 + 1408: 56,50 + 1413: 51,50 + 1418: 46,46 + 1542: 47,67 + - node: + color: '#334E6DB2' + id: BrickTileWhiteCornerSe + decals: + 1488: 51,67 + 1552: 43,67 + 1560: 40,67 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteCornerSe + decals: + 553: 5,24 + 583: 20,32 + 612: 20,24 + 641: 23,24 + 651: 5,30 + 673: 5,36 + 722: 16,36 + 726: 16,39 + 761: 22,39 + 841: 9,37 + - node: + color: '#80C71FB2' + id: BrickTileWhiteCornerSe + decals: + 895: -1,31 + - node: + color: '#A46106B2' + id: BrickTileWhiteCornerSe + decals: + 1045: 27,50 + 1116: 14,50 + 1127: 16,46 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteCornerSe + decals: + 183: 36,28 + 199: 30,28 + 200: 39,28 + 269: 51,33 + 303: 43,24 + 342: 39,35 + 390: 47,24 + 422: 47,38 + 430: 51,39 + 439: 52,30 + 449: 30,24 + - node: + color: '#EFB341B2' + id: BrickTileWhiteCornerSe + decals: + 27: 27,14 + 443: 27,18 + 918: 23,42 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerSe + decals: + 356: 31,39 + 357: 35,39 + 358: 39,39 + 383: 39,32 + 384: 35,32 + 385: 31,32 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 262: 4,23 + 1472: 53,56 + 2016: 45,60 + - node: + color: '#00B400B2' + id: BrickTileWhiteCornerSw + decals: + 1385: 43,50 + 1397: 48,46 + 1398: 53,46 + 1409: 55,50 + 1415: 50,50 + 1417: 45,46 + 1543: 45,67 + - node: + color: '#334E6DB2' + id: BrickTileWhiteCornerSw + decals: + 1486: 49,67 + 1553: 42,67 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteCornerSw + decals: + 542: 22,28 + 625: 7,24 + 640: 22,24 + 756: 18,36 + 792: 22,32 + 798: 19,28 + 810: 11,42 + 842: 7,37 + - node: + color: '#80C71FB2' + id: BrickTileWhiteCornerSw + decals: + 874: -3,38 + 894: -3,31 + - node: + color: '#A46106B2' + id: BrickTileWhiteCornerSw + decals: + 1037: 18,46 + 1122: 12,46 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteCornerSw + decals: + 178: 32,28 + 198: 29,28 + 201: 38,28 + 208: 32,24 + 270: 49,33 + 298: 38,24 + 331: 29,35 + 425: 45,38 + 442: 49,30 + - node: + color: '#EFB341B2' + id: BrickTileWhiteCornerSw + decals: + 21: 21,14 + 56: 25,8 + 171: 29,20 + 444: 26,18 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerSw + decals: + 369: 33,39 + 370: 29,39 + 371: 37,39 + 372: 37,32 + 373: 33,32 + 374: 29,32 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 264: 2,23 + 1459: 43,54 + 1473: 51,56 + 2014: 43,60 + - node: + color: '#EFB341B2' + id: BrickTileWhiteEndE + decals: + 1846: 35,68 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 418: 50,28 + 1454: 47,57 + 1455: 47,54 + 1563: 40,70 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteEndS + decals: + 432: 49,38 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 1139: 16,50 + 1419: 43,46 + 1423: 53,50 + 1426: 48,50 + - node: + color: '#EFB341B2' + id: BrickTileWhiteEndW + decals: + 1845: 34,68 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndW + decals: + 1564: 39,70 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteInnerNe + decals: + 636: 9,26 + 768: 19,37 + 789: 9,34 + - node: + color: '#A46106B2' + id: BrickTileWhiteInnerNe + decals: + 1053: 21,48 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteInnerNe + decals: + 458: 27,26 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 1467: 46,54 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteInnerNw + decals: + 319: 41,26 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteInnerSe + decals: + 637: 9,32 + 727: 13,39 + 769: 19,39 + - node: + color: '#A46106B2' + id: BrickTileWhiteInnerSe + decals: + 1054: 21,50 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteInnerSe + decals: + 433: 49,39 + 462: 27,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 1466: 46,57 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteInnerSw + decals: + 549: 25,28 + 869: 7,42 + - node: + color: '#00B400B2' + id: BrickTileWhiteLineE + decals: + 1381: 46,51 + 1392: 51,47 + 1404: 56,47 + 1410: 56,51 + 1414: 51,51 + 1497: 45,75 + 1498: 45,74 + 1540: 47,69 + 1541: 47,68 + - node: + color: '#334E6DB2' + id: BrickTileWhiteLineE + decals: + 1550: 43,69 + 1551: 43,68 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineE + decals: + 554: 5,25 + 555: 5,26 + 584: 20,33 + 593: 9,31 + 596: 9,30 + 597: 9,27 + 598: 9,28 + 599: 9,29 + 611: 20,25 + 642: 23,25 + 645: 5,33 + 648: 5,32 + 649: 5,31 + 674: 5,38 + 675: 5,37 + 676: 5,39 + 692: 17,29 + 723: 13,38 + 764: 19,38 + 799: 20,29 + 816: 16,43 + 835: 9,43 + 836: 9,42 + 837: 9,41 + 838: 9,40 + 839: 9,39 + 840: 9,38 + - node: + color: '#80C71FB2' + id: BrickTileWhiteLineE + decals: + 897: -1,32 + 898: -1,33 + 899: -1,34 + 900: -1,35 + - node: + color: '#8932B8B2' + id: BrickTileWhiteLineE + decals: + 2062: 37,55 + - node: + color: '#A46106B2' + id: BrickTileWhiteLineE + decals: + 1051: 21,49 + 1057: 23,47 + 1128: 16,47 + 1143: 27,47 + 1144: 27,46 + 1145: 27,45 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteLineE + decals: + 184: 36,29 + 196: 30,29 + 204: 39,29 + 211: 36,25 + 243: 47,33 + 244: 47,32 + 245: 47,31 + 304: 43,25 + 305: 43,26 + 306: 43,27 + 307: 43,28 + 308: 43,29 + 309: 43,30 + 310: 43,31 + 311: 43,32 + 312: 43,33 + 313: 43,35 + 314: 43,36 + 315: 43,37 + 316: 43,38 + 317: 43,39 + 318: 43,34 + 343: 39,36 + 391: 47,25 + 392: 47,26 + 416: 50,25 + 423: 47,39 + 451: 30,25 + 454: 27,27 + 455: 27,28 + 456: 27,29 + 457: 27,30 + 461: 27,23 + 1158: 32,49 + 1162: 36,49 + - node: + color: '#EFB341B2' + id: BrickTileWhiteLineE + decals: + 28: 27,15 + 49: 23,10 + 58: 27,10 + 83: 32,15 + 445: 27,19 + 446: 27,20 + 447: 27,21 + 448: 27,22 + 910: 23,43 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 1420: 43,47 + 1424: 53,51 + 1425: 48,51 + 1452: 46,56 + 1453: 46,55 + - node: + color: '#00B400B2' + id: BrickTileWhiteLineN + decals: + 1378: 45,52 + 1379: 44,52 + 1389: 49,48 + 1390: 50,48 + 1402: 54,48 + 1403: 55,48 + 1499: 44,76 + 1517: 42,76 + 1547: 46,70 + 1565: 45,65 + 1566: 47,65 + 1567: 46,65 + 1568: 49,65 + 1569: 50,65 + 1570: 51,65 + - node: + color: '#334E6DB2' + id: BrickTileWhiteLineN + decals: + 1484: 50,69 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineN + decals: + 547: 23,30 + 548: 24,30 + 550: 4,28 + 572: 10,34 + 573: 11,34 + 574: 12,34 + 575: 13,34 + 576: 14,34 + 577: 15,34 + 578: 16,34 + 579: 17,34 + 580: 19,34 + 581: 18,34 + 600: 10,26 + 601: 11,26 + 602: 12,26 + 603: 13,26 + 604: 14,26 + 605: 15,26 + 606: 16,26 + 607: 17,26 + 608: 18,26 + 609: 19,26 + 644: 4,34 + 666: 2,40 + 667: 3,40 + 668: 4,40 + 689: 14,30 + 690: 15,30 + 691: 16,30 + 699: 13,30 + 714: 13,40 + 715: 14,40 + 716: 12,40 + 759: 19,40 + 760: 20,40 + 765: 20,37 + 766: 21,37 + 788: 8,35 + 817: 15,44 + 818: 14,44 + 819: 13,44 + 858: -2,44 + 859: -1,44 + 860: 0,44 + 861: 1,44 + 862: 2,44 + 863: 3,44 + 864: 4,44 + 865: 5,44 + 866: 6,44 + 867: 7,44 + 868: 8,44 + - node: + color: '#80C71FB2' + id: BrickTileWhiteLineN + decals: + 880: -2,40 + 889: -2,36 + - node: + color: '#8932B8B2' + id: BrickTileWhiteLineN + decals: + 2063: 36,56 + 2081: 35,56 + - node: + color: '#A46106B2' + id: BrickTileWhiteLineN + decals: + 1044: 24,52 + 1052: 22,48 + 1117: 13,51 + 1120: 13,48 + 1121: 14,48 + 1142: 26,48 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteLineN + decals: + 175: 35,30 + 176: 34,30 + 177: 33,30 + 220: 34,26 + 254: 46,34 + 280: 42,40 + 294: 40,26 + 295: 39,26 + 321: 38,37 + 322: 37,37 + 323: 36,37 + 324: 35,37 + 325: 34,37 + 326: 33,37 + 327: 32,37 + 328: 31,37 + 329: 30,37 + 402: 46,28 + 420: 46,40 + 428: 50,40 + 436: 50,31 + 437: 51,31 + 452: 29,26 + 453: 28,26 + 1157: 31,51 + 1161: 35,51 + - node: + color: '#EFB341B2' + id: BrickTileWhiteLineN + decals: + 29: 26,16 + 36: 23,19 + 46: 22,19 + 52: 22,12 + 59: 26,12 + 80: 31,18 + 908: 22,44 + 909: 21,44 + - node: + color: '#F9801DB2' + id: BrickTileWhiteLineN + decals: + 362: 30,33 + 363: 30,40 + 364: 34,40 + 365: 38,40 + 366: 38,33 + 367: 34,33 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 261: 3,24 + 1463: 44,57 + 1464: 45,57 + 1465: 46,57 + 1475: 52,57 + 2013: 44,61 + - node: + color: '#00B400B2' + id: BrickTileWhiteLineS + decals: + 1383: 45,50 + 1384: 44,50 + 1394: 50,46 + 1395: 49,46 + 1396: 37,52 + 1405: 55,46 + 1406: 54,46 + 1504: 41,72 + 1505: 42,72 + 1506: 43,72 + 1507: 44,72 + 1508: 45,72 + 1509: 46,72 + 1532: 40,72 + 1544: 46,67 + - node: + color: '#334E6DB2' + id: BrickTileWhiteLineS + decals: + 1487: 50,67 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineS + decals: + 543: 23,28 + 544: 24,28 + 552: 4,24 + 585: 18,32 + 586: 19,32 + 587: 17,32 + 588: 16,32 + 589: 15,32 + 590: 14,32 + 591: 13,32 + 592: 10,32 + 594: 11,32 + 595: 12,32 + 613: 18,24 + 614: 19,24 + 615: 17,24 + 616: 16,24 + 617: 15,24 + 618: 14,24 + 619: 13,24 + 620: 12,24 + 621: 11,24 + 622: 10,24 + 623: 9,24 + 624: 8,24 + 646: 4,30 + 670: 2,36 + 671: 3,36 + 672: 4,36 + 693: 16,28 + 694: 15,28 + 695: 13,28 + 696: 12,28 + 700: 14,28 + 718: 12,36 + 719: 13,36 + 720: 14,36 + 721: 15,36 + 724: 14,39 + 725: 15,39 + 754: 20,36 + 755: 19,36 + 762: 21,39 + 763: 20,39 + 812: 12,42 + 813: 13,42 + 814: 14,42 + 815: 15,42 + 843: 8,37 + 848: 6,42 + 849: 5,42 + 850: 4,42 + 851: 3,42 + 852: 2,42 + 853: 1,42 + 854: 0,42 + - node: + color: '#80C71FB2' + id: BrickTileWhiteLineS + decals: + 870: -3,42 + 871: -2,42 + 872: -1,42 + 875: -2,38 + 896: -2,31 + - node: + color: '#8932B8B2' + id: BrickTileWhiteLineS + decals: + 2066: 35,54 + 2067: 34,54 + - node: + color: '#A46106B2' + id: BrickTileWhiteLineS + decals: + 1035: 22,46 + 1036: 21,46 + 1046: 26,50 + 1047: 25,50 + 1048: 24,50 + 1049: 23,50 + 1050: 22,50 + 1118: 13,50 + 1124: 13,46 + 1125: 14,46 + 1126: 15,46 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteLineS + decals: + 180: 33,28 + 181: 34,28 + 182: 35,28 + 209: 33,24 + 210: 34,24 + 246: 46,30 + 271: 50,33 + 299: 39,24 + 300: 40,24 + 301: 41,24 + 302: 42,24 + 333: 30,35 + 334: 31,35 + 335: 32,35 + 336: 33,35 + 337: 34,35 + 338: 35,35 + 339: 36,35 + 340: 37,35 + 341: 38,35 + 389: 46,24 + 424: 46,38 + 431: 50,39 + 440: 51,30 + 441: 50,30 + 459: 29,24 + 460: 28,24 + - node: + color: '#EFB341B2' + id: BrickTileWhiteLineS + decals: + 22: 22,14 + 23: 23,14 + 24: 24,14 + 25: 25,14 + 26: 26,14 + 50: 22,8 + 57: 26,8 + 82: 31,12 + 911: 21,42 + 919: 22,42 + - node: + color: '#F9801DB2' + id: BrickTileWhiteLineS + decals: + 377: 38,39 + 378: 34,39 + 379: 30,39 + 380: 30,32 + 381: 34,32 + 382: 38,32 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 263: 3,23 + 1456: 46,54 + 1457: 45,54 + 1458: 44,54 + 1474: 52,56 + 1593: 51,59 + 1594: 52,59 + 1595: 53,59 + 2015: 44,60 - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Caution + color: '#00B400B2' + id: BrickTileWhiteLineW decals: - 278: 8,23 - 279: 8,21 - 280: 8,30 - 281: 8,32 + 1386: 43,51 + 1387: 48,47 + 1407: 53,47 + 1411: 55,51 + 1412: 50,51 + 1501: 41,75 + 1502: 41,74 + 1545: 45,68 + 1546: 45,69 - node: - color: '#FFFFFFFF' - id: Caution + color: '#334E6DB2' + id: BrickTileWhiteLineW decals: - 282: 8,34 - 283: 6,34 + 1485: 49,68 + 1554: 42,68 + 1555: 42,69 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineW + decals: + 537: 25,23 + 538: 25,24 + 539: 25,25 + 540: 25,26 + 541: 25,27 + 545: 22,29 + 551: 3,26 + 626: 7,25 + 627: 7,26 + 628: 7,27 + 629: 7,28 + 630: 7,29 + 631: 7,30 + 632: 7,31 + 633: 7,32 + 634: 7,34 + 635: 7,33 + 643: 22,25 + 647: 3,32 + 669: 1,39 + 697: 11,29 + 717: 11,38 + 757: 18,37 + 758: 18,38 + 791: 22,33 + 800: 19,29 + 811: 11,43 + 844: 7,38 + 845: 7,39 + 846: 7,40 + 847: 7,41 + 855: -3,42 + 856: -3,43 + - node: + color: '#80C71FB2' + id: BrickTileWhiteLineW + decals: + 873: -3,39 + 890: -3,35 + 891: -3,34 + 892: -3,33 + 893: -3,32 + - node: + color: '#A46106B2' + id: BrickTileWhiteLineW + decals: + 1038: 18,47 + 1039: 18,48 + 1040: 18,49 + 1041: 18,50 + 1042: 18,51 + 1123: 12,47 + 1146: 25,45 + 1147: 25,47 + 1148: 25,46 + - node: + color: '#DE3A3AB2' + id: BrickTileWhiteLineW + decals: + 179: 32,29 + 197: 29,29 + 205: 38,29 + 207: 32,25 + 240: 34,21 + 247: 45,32 + 281: 41,39 + 282: 41,38 + 283: 41,37 + 284: 41,36 + 285: 41,35 + 286: 41,34 + 287: 41,33 + 288: 41,32 + 289: 41,31 + 290: 41,30 + 291: 41,29 + 292: 41,28 + 293: 41,27 + 297: 38,25 + 332: 29,36 + 387: 45,27 + 388: 45,25 + 399: 49,25 + 426: 45,39 + 434: 49,39 + 1159: 30,49 + 1160: 34,49 + - node: + color: '#EFB341B2' + id: BrickTileWhiteLineW + decals: + 20: 21,15 + 35: 21,16 + 51: 21,10 + 53: 25,11 + 54: 25,10 + 55: 25,9 + 81: 29,15 + 172: 29,21 - node: color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 1421: 43,47 + 1422: 53,51 + 1427: 48,51 + 1460: 43,55 + 1461: 43,56 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 2005: 43,60 + 2006: 43,61 + 2007: 44,61 + 2008: 44,60 + 2009: 45,60 + 2010: 45,61 + - node: + color: '#DE3A3ACC' id: Delivery decals: - 284: 9,30 - 285: 9,32 - 286: 9,23 - 287: 8,35 - 288: 6,35 + 1193: 31,46 + 1194: 35,46 + 1195: 37,49 + 1196: 33,49 + 1197: 35,45 + 1198: 38,49 + 1199: 31,45 + - node: + color: '#EFB341C5' + id: Delivery + decals: + 2051: 52,63 + 2052: 52,64 + 2053: 24,40 + 2054: 24,39 + 2055: 64,44 + 2056: 65,44 + 2057: 66,44 + - node: + color: '#EFB341CC' + id: Delivery + decals: + 1200: 25,31 + 1201: 27,31 + 1202: 25,41 + 1203: 27,41 + 1204: 38,44 + 1205: 38,42 + 1206: 42,44 + 1207: 42,42 + 1208: 41,46 + 1209: 39,46 + 1210: 59,43 + - node: + color: '#F9801DCC' + id: Delivery + decals: + 344: 38,34 + 345: 34,34 + 346: 34,38 + 347: 38,38 + 348: 30,38 + 349: 30,34 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 133: 25,9 + 134: 23,16 + 135: 22,14 + 136: 22,19 + 137: 31,13 + 138: 29,15 + 150: 21,10 + 151: 23,10 + 152: 21,15 + 153: 23,17 + 466: 43,24 + 467: 41,28 + 468: 43,32 + 469: 43,35 + 470: 41,40 + 471: 41,28 + 480: 45,25 + 481: 47,26 + 482: 46,28 + 487: 50,25 + 488: 47,32 + 489: 46,33 + 490: 46,30 + 496: 50,31 + 502: 33,28 + 503: 39,30 + 515: 33,24 + 516: 34,26 + 517: 32,24 + 528: 30,37 + 529: 35,35 + 530: 34,37 + 531: 38,37 + 532: 30,35 + 533: 34,35 + 534: 43,36 + 535: 41,36 + 536: 46,32 + 932: 17,32 + 933: 8,35 + 934: 7,30 + 935: 12,26 + 936: 19,24 + 937: 7,25 + 938: 12,29 + 939: 16,30 + 940: 16,28 + 953: 18,38 + 954: 20,39 + 955: 19,36 + 960: 2,36 + 961: 5,38 + 962: 2,39 + 968: 4,33 + 969: 4,26 + 970: 5,26 + 971: 4,24 + 978: 23,25 + 987: 14,43 + 988: 16,43 + 989: 13,44 + 1006: 2,42 + 1007: -2,43 + 1008: 7,44 + 1009: 8,41 + 1010: 7,37 + 1011: 9,37 + 1022: -1,34 + 1023: -2,31 + 1024: -2,39 + 1025: -3,34 + 1026: -3,32 + 1031: 23,43 + 1032: 21,43 + 1100: 20,47 + 1101: 22,52 + 1102: 26,50 + 1103: 18,51 + 1104: 21,48 + 1105: 21,52 + 1106: 24,52 + 1153: 16,46 + 1154: 13,48 + 1155: 12,46 + 1156: 14,50 + 1884: 55,34 + 1885: 54,29 + 1886: 53,27 + 1887: 51,37 + 1888: 55,38 + 1889: 54,40 + 1890: 53,24 + 1891: 49,20 + 1892: 47,21 + 1893: 43,22 + 1894: 41,20 + 1915: 34,15 + 1916: 34,18 + 1917: 38,17 + 1918: 38,16 + 1919: 39,18 + 1920: 33,9 + 1970: 18,21 + 1971: 22,22 + 1972: 20,22 + 1973: 10,22 + 1974: 5,21 + 1975: 2,21 + 1977: -1,21 + 1978: -1,25 + 1979: 1,27 + 1980: 1,25 + 1988: -3,27 + 1989: -6,32 + 1990: -5,37 + 1991: -6,41 + 2004: -6,32 + 2039: 0,47 + 2040: -2,51 + 2041: 7,46 + 2042: 6,49 + 2043: 10,48 + 2044: 8,49 + 2045: -2,47 + 2046: 9,49 + 2047: 1,46 + 2048: 2,47 + 2049: 6,47 + 2050: 2,46 + 2087: 35,54 + 2088: 36,56 + 2089: 37,55 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 1609: 28,24 + 1610: 23,28 + 1611: 26,30 + 1612: 25,25 + 1613: 27,21 + 1614: 27,25 + 1624: 27,33 + 1625: 25,36 + 1626: 27,38 + 1627: 25,40 + 1628: 26,36 + 1629: 26,32 + 1630: 24,36 + 1640: 37,43 + 1641: 30,44 + 1642: 29,42 + 1643: 25,44 + 1644: 27,47 + 1645: 26,48 + 1646: 28,42 + 1655: 40,42 + 1656: 40,45 + 1674: 39,55 + 1675: 41,51 + 1676: 39,47 + 1677: 41,58 + 1678: 41,65 + 1679: 40,63 + 1680: 49,65 + 1681: 47,63 + 1682: 41,55 + 1691: 47,67 + 1692: 46,70 + 1693: 45,72 + 1694: 42,75 + 1695: 44,75 + 1696: 41,72 + 1697: 45,76 + 1704: 43,70 + 1705: 43,67 + 1706: 42,68 + 1707: 42,69 + 1721: 46,60 + 1722: 51,59 + 1723: 45,59 + 1724: 52,61 + 1725: 52,60 + 1726: 48,56 + 1727: 49,54 + 1728: 45,55 + 1739: 51,57 + 1740: 53,56 + 1752: 49,42 + 1753: 55,44 + 1754: 57,42 + 1755: 47,44 + 1756: 44,42 + 1757: 45,44 + 1758: 47,42 + 1759: 51,44 + 1805: 73,42 + 1806: 67,44 + 1807: 64,42 + 1808: 60,44 + 1809: 73,44 + 1828: 35,64 + 1829: 36,63 + 1830: 34,57 + 1833: 36,60 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 441: 8,11 - 446: -1,3 - 447: -3,-3 - 460: -1,14 - 466: 17,15 + 124: 26,11 + 125: 23,16 + 126: 23,19 + 127: 21,14 + 139: 31,17 + 463: 43,28 + 464: 41,33 + 465: 43,40 + 511: 35,30 + 512: 34,24 + 513: 32,26 + 514: 36,25 + 519: 34,22 + 520: 41,24 + 521: 35,35 + 522: 37,37 + 523: 30,37 + 974: 4,26 + 1002: 7,39 + 1003: 6,43 + 1004: -1,42 + 1005: 0,44 + 1096: 18,49 + 1097: 22,47 + 1098: 22,51 + 1099: 21,48 + 1863: 48,21 + 1864: 43,22 + 1865: 41,20 + 1866: 44,22 + 1883: 54,34 + 1926: 33,9 + 1927: 34,17 + 1928: 34,18 + 1929: 38,17 + 1930: 39,18 + 1954: 1,25 + 1955: 1,27 + 1956: -1,25 + 1957: -1,23 + 1958: 9,22 + 1959: 2,20 + 1960: 3,21 + 1961: 4,21 + 1962: 2,21 + 1963: 17,21 + 1964: 20,22 + 1965: 22,22 + 1986: -3,27 + 1987: -2,27 + 1999: -5,37 + 2000: -7,36 + 2026: 7,46 + 2027: 7,46 + 2028: 10,48 + 2029: 7,50 + 2030: 6,49 + 2031: -2,47 + 2032: 0,47 + 2033: -2,51 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1653: 39,43 + 1654: 41,45 + 1717: 43,59 + 1718: 48,60 + 1719: 49,59 + 1720: 53,60 + 1738: 52,56 + 1751: 48,42 + 1824: 34,57 + 1826: 36,63 + 1827: 36,63 + 1840: 36,54 + 1841: 37,56 + 1842: 33,55 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 154: 22,17 + 155: 26,14 + 156: 22,16 + 476: 42,28 + 477: 38,24 + 478: 41,26 + 479: 47,25 + 504: 35,29 + 505: 30,28 + 506: 29,30 + 920: 16,26 + 921: 7,24 + 922: 9,29 + 923: 7,32 + 924: 12,34 + 925: 16,32 + 926: 12,29 + 927: 14,28 + 928: 16,30 + 929: 19,29 + 930: 19,34 + 931: 22,33 + 981: 13,39 + 982: 15,36 + 983: 15,42 + 984: 11,43 + 985: 15,44 + 986: 12,42 + 1151: 13,46 + 1874: 47,21 + 1875: 52,22 + 1876: 54,29 + 1877: 55,34 + 1878: 55,34 + 1879: 51,37 + 1895: 48,36 + 1896: 48,36 + 1907: 34,17 + 1908: 37,17 + 1909: 39,18 + 1976: 4,21 + 2024: 10,48 + 2025: 8,46 + 2085: 36,55 + 2086: 34,55 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1615: 25,32 + 1616: 27,36 + 1617: 26,40 + 1618: 25,36 + 1619: 27,35 + 1662: 41,57 + 1663: 39,60 + 1664: 44,63 + 1665: 42,65 + 1670: 43,63 + 1671: 39,64 + 1672: 39,58 + 1673: 39,53 + 1702: 41,72 + 1703: 44,74 + 1737: 53,57 + 1810: 73,44 + 1811: 68,42 + 1812: 63,44 - node: color: '#FFFFFFFF' id: DirtLight decals: - 435: -5,10 - 436: 2,12 - 437: 6,10 - 438: 0,9 - 442: 8,2 - 443: 7,7 - 444: -1,5 - 445: 2,3 - 448: 1,-2 - 453: 7,28 - 454: 8,17 - 455: 7,24 - 456: 8,33 - 457: 6,31 - 458: 2,20 - 459: 3,14 - 461: -5,15 - 462: -1,18 - 463: 11,15 + 128: 26,14 + 129: 22,19 + 130: 31,18 + 131: 31,12 + 132: 29,15 + 140: 31,15 + 141: 25,8 + 142: 27,10 + 143: 25,11 + 144: 27,15 + 145: 22,14 + 146: 23,10 + 147: 21,10 + 483: 46,25 + 484: 50,26 + 485: 49,25 + 486: 49,26 + 491: 45,32 + 492: 47,33 + 493: 47,32 + 497: 51,31 + 498: 45,34 + 499: 45,34 + 507: 30,29 + 508: 29,28 + 509: 34,28 + 510: 32,28 + 524: 31,35 + 525: 33,37 + 526: 39,36 + 527: 29,36 + 941: 7,27 + 942: 7,29 + 943: 8,24 + 944: 10,34 + 945: 18,34 + 946: 18,32 + 947: 12,32 + 948: 22,37 + 949: 19,38 + 950: 22,39 + 951: 18,40 + 952: 19,40 + 956: 4,36 + 957: 2,40 + 958: 4,39 + 959: 2,37 + 975: 5,25 + 976: 23,26 + 977: 22,24 + 990: 13,42 + 991: 14,42 + 992: 9,39 + 993: 2,42 + 994: 8,44 + 995: 7,41 + 996: 9,41 + 1012: -2,31 + 1013: -3,34 + 1014: -2,36 + 1021: -2,39 + 1029: 22,42 + 1030: 22,43 + 1107: 24,51 + 1108: 22,50 + 1109: 21,47 + 1110: 21,49 + 1111: 23,53 + 1112: 19,53 + 1113: 19,56 + 1114: 23,56 + 1853: 51,37 + 1854: 55,34 + 1855: 54,34 + 1860: 50,22 + 1861: 51,20 + 1862: 47,21 + 1871: 53,27 + 1872: 49,20 + 1873: 49,20 + 1903: 38,16 + 1904: 37,17 + 1905: 34,17 + 1906: 34,15 + 1914: 36,13 + 1924: 32,9 + 1925: 33,9 + 1945: 3,21 + 1946: 5,21 + 1947: 6,21 + 1948: 6,21 + 1949: -1,21 + 1950: -1,24 + 1951: -1,24 + 1952: -1,24 + 1953: 1,26 + 1966: 12,20 + 1967: 12,17 + 1981: -4,28 + 1982: -2,27 + 1983: -4,27 + 2001: -6,32 + 2002: -6,41 + 2003: -6,40 + 2034: 0,48 + 2082: 36,56 + 2083: 34,54 + 2084: 37,55 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 1600: 27,22 + 1601: 25,26 + 1602: 27,28 + 1603: 27,19 + 1604: 27,20 + 1605: 26,18 + 1620: 26,36 + 1621: 25,38 + 1622: 26,40 + 1623: 25,33 + 1631: 24,37 + 1632: 29,44 + 1633: 25,45 + 1634: 27,48 + 1683: 41,53 + 1684: 40,51 + 1685: 46,67 + 1686: 45,70 + 1687: 47,69 + 1741: 44,44 + 1742: 54,44 + 1743: 54,42 + 1744: 46,42 + 1745: 48,44 + 1796: 71,44 + 1797: 66,42 + 1798: 74,42 + 1817: 34,60 + 1818: 34,57 + 1822: 34,57 + - node: + color: '#A46106A7' + id: DirtMedium + decals: + 1034: 16,45 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 439: -1,12 - 440: 6,4 - 449: 2,-3 - 450: 6,21 - 451: 8,22 - 452: 6,29 - 464: 13,15 - 465: 16,17 + 148: 22,8 + 149: 22,12 + 472: 38,25 + 473: 43,24 + 474: 41,25 + 475: 41,31 + 494: 49,31 + 495: 52,30 + 500: 39,28 + 501: 33,30 + 518: 34,21 + 963: 4,37 + 964: 5,40 + 965: 5,33 + 966: 3,32 + 967: 5,30 + 972: 5,24 + 973: 4,28 + 979: 12,36 + 980: 16,39 + 997: -3,42 + 998: 2,44 + 999: 4,42 + 1000: 9,42 + 1001: 7,37 + 1015: -1,34 + 1016: -3,32 + 1017: -1,32 + 1018: -2,38 + 1019: -3,39 + 1020: -2,40 + 1027: 22,44 + 1028: 21,43 + 1033: 21,44 + 1093: 18,47 + 1094: 24,50 + 1095: 20,52 + 1149: 15,46 + 1150: 12,48 + 1152: 13,48 + 1849: 55,38 + 1850: 55,38 + 1851: 57,39 + 1852: 54,40 + 1856: 54,29 + 1857: 54,34 + 1858: 53,27 + 1859: 53,23 + 1867: 50,22 + 1868: 50,22 + 1869: 53,24 + 1870: 53,24 + 1880: 57,39 + 1881: 57,39 + 1882: 51,37 + 1897: 48,36 + 1898: 36,14 + 1899: 34,15 + 1900: 34,18 + 1901: 38,17 + 1902: 39,18 + 1910: 37,17 + 1911: 36,17 + 1912: 36,14 + 1913: 36,13 + 1921: 33,9 + 1922: 33,9 + 1923: 32,9 + 1933: 21,22 + 1934: 18,21 + 1935: 22,22 + 1936: 12,20 + 1937: 10,22 + 1938: 5,21 + 1939: -1,24 + 1940: 1,27 + 1941: -2,27 + 1942: -1,21 + 1943: 2,21 + 1944: 9,22 + 1968: 12,17 + 1969: 17,21 + 1984: -4,27 + 1985: -4,28 + 1992: -6,40 + 1993: -6,40 + 1994: -5,37 + 1995: -7,36 + 1996: -6,32 + 1997: -6,32 + 1998: -6,32 + 2017: -2,51 + 2018: 0,48 + 2019: -2,47 + 2020: 6,48 + 2021: 6,48 + 2022: 7,50 + 2023: 8,49 + 2035: 6,48 + 2036: 7,50 + 2037: 10,49 + 2038: 8,46 - node: + cleanable: True color: '#FFFFFFFF' - id: MiniTileSteelCornerNe + id: DirtMedium decals: - 227: 4,15 - 289: 8,15 - 374: 8,33 + 1596: 29,26 + 1597: 22,29 + 1598: 26,30 + 1599: 25,22 + 1606: 25,21 + 1607: 25,29 + 1608: 25,26 + 1635: 26,42 + 1636: 25,48 + 1637: 31,42 + 1638: 35,44 + 1639: 36,42 + 1647: 32,44 + 1648: 33,42 + 1649: 27,44 + 1650: 37,44 + 1651: 39,45 + 1652: 41,42 + 1657: 41,48 + 1658: 39,52 + 1659: 41,56 + 1660: 41,50 + 1661: 39,48 + 1666: 41,61 + 1667: 47,65 + 1668: 51,63 + 1669: 51,65 + 1688: 47,70 + 1689: 45,68 + 1690: 47,67 + 1698: 43,72 + 1699: 43,75 + 1700: 41,76 + 1701: 46,72 + 1708: 42,69 + 1709: 43,68 + 1710: 42,67 + 1711: 43,70 + 1712: 40,68 + 1713: 51,61 + 1714: 45,59 + 1715: 49,61 + 1716: 50,59 + 1729: 44,57 + 1730: 45,54 + 1731: 43,56 + 1732: 45,55 + 1733: 48,54 + 1734: 48,57 + 1735: 49,54 + 1736: 51,56 + 1746: 51,42 + 1747: 50,44 + 1748: 43,42 + 1749: 58,44 + 1750: 56,42 + 1799: 62,44 + 1800: 60,42 + 1801: 67,44 + 1802: 66,42 + 1803: 75,42 + 1804: 76,44 + 1813: 34,61 + 1814: 36,60 + 1815: 36,63 + 1816: 35,64 + 1821: 38,57 + 1823: 34,57 + 1834: 35,66 + 1835: 33,61 + 1836: 35,60 + 1837: 34,60 + 1838: 37,63 + 1839: 34,58 - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerNw + color: '#00FFFF66' + id: WarnCornerGreyscaleNW decals: - 228: -2,15 - 290: 6,15 - 315: -1,5 - 337: -6,12 - 373: 6,33 - 386: -4,-3 + 6: 15,12 - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerSe - decals: - 235: 4,14 - 304: 8,2 - 353: 8,17 - 384: -2,-5 - 557: 4,9 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerSw - decals: - 234: -2,14 - 308: 4,2 - 313: -1,3 - 335: -6,10 - 352: 6,17 - 383: -4,-5 - 558: -2,9 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelEndE - decals: - 388: 2,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelEndN - decals: - 242: 2,22 - 399: 1,1 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelEndS - decals: - 241: 2,16 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerNe - decals: - 404: 1,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerNw - decals: - 323: 6,5 - 351: 6,12 - 403: 1,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerSe - decals: - 330: 4,10 - 396: -2,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerSw - decals: - 322: 4,3 - 329: 6,10 - 334: -2,10 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineE - decals: - 243: 2,21 - 244: 2,20 - 245: 2,19 - 246: 2,18 - 247: 2,17 - 292: 8,14 - 293: 8,13 - 294: 8,12 - 295: 8,11 - 296: 8,10 - 297: 8,9 - 298: 8,8 - 299: 8,7 - 300: 8,6 - 301: 8,5 - 302: 8,4 - 303: 8,3 - 355: 8,18 - 356: 8,19 - 357: 8,20 - 376: 8,29 - 377: 8,28 - 378: 8,27 - 379: 8,25 - 380: 8,25 - 381: 8,24 - 382: 8,26 - 387: -2,-4 - 397: 1,-2 - 398: 1,-1 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - decals: - 229: -1,15 - 230: 0,15 - 231: 1,15 - 232: 2,15 - 233: 3,15 - 291: 7,15 - 316: 0,5 - 317: 1,5 - 318: 3,5 - 319: 2,5 - 320: 4,5 - 321: 5,5 - 338: -5,12 - 339: -4,12 - 340: -3,12 - 341: -1,12 - 342: -2,12 - 343: 1,12 - 344: 0,12 - 345: 2,12 - 346: 3,12 - 347: 5,12 - 348: 4,12 - 375: 7,33 - 392: 0,-3 - 393: -1,-3 - 394: -2,-3 - 395: -3,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineS - decals: - 236: -1,14 - 237: 0,14 - 238: 1,14 - 239: 2,14 - 240: 3,14 - 305: 7,2 - 306: 6,2 - 307: 5,2 - 309: 3,3 - 310: 2,3 - 311: 1,3 - 312: 0,3 - 328: 5,10 - 331: -3,10 - 332: -4,10 - 333: -5,10 - 354: 7,17 - 385: -3,-5 - 389: 1,-3 - 390: 0,-3 - 391: -1,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineW - decals: - 248: 2,17 - 249: 2,18 - 250: 2,19 - 251: 2,20 - 252: 2,21 - 314: -1,4 - 324: 6,6 - 325: 6,7 - 326: 6,8 - 327: 6,9 - 336: -6,11 - 349: 6,13 - 350: 6,14 - 358: 6,18 - 359: 6,19 - 360: 6,20 - 361: 6,21 - 362: 6,22 - 363: 6,23 - 364: 6,24 - 365: 6,25 - 366: 6,26 - 367: 6,27 - 368: 6,28 - 369: 6,29 - 370: 6,30 - 371: 6,31 - 372: 6,32 - 400: 1,-2 - 401: 1,-1 - 402: 1,0 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteCornerNe - decals: - 107: -20,5 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNe - decals: - 1: -8,6 - 12: -3,5 - 27: -11,5 - - node: - color: '#EFB341FF' - id: MiniTileWhiteCornerNe - decals: - 169: -10,13 - 173: -8,12 - 184: -11,9 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteCornerNw - decals: - 108: -22,5 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNw - decals: - 0: -9,6 - 26: -18,5 - - node: - color: '#EFB341FF' - id: MiniTileWhiteCornerNw - decals: - 168: -11,13 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteCornerSe - decals: - 109: -20,3 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSe - decals: - 10: -3,3 - 18: -11,3 - - node: - color: '#EFB341FF' - id: MiniTileWhiteCornerSe - decals: - 170: -8,11 - 183: -11,8 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteCornerSw - decals: - 110: -22,3 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSw - decals: - 4: -9,3 - 19: -18,3 - - node: - color: '#EFB341FF' - id: MiniTileWhiteCornerSw - decals: - 171: -11,11 - 181: -13,8 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteEndE - decals: - 112: -21,2 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteEndN - decals: - 36: -14,1 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteEndS - decals: - 37: -14,-1 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteEndW - decals: - 111: -22,2 - - node: - color: '#EFB341FF' - id: MiniTileWhiteEndW - decals: - 180: -14,9 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteInnerNe - decals: - 17: -8,5 - - node: - color: '#EFB341FF' - id: MiniTileWhiteInnerNe - decals: - 175: -10,12 - - node: - color: '#EFB341FF' - id: MiniTileWhiteInnerSw - decals: - 187: -13,9 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteLineE - decals: - 114: -20,4 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineE - decals: - 11: -3,4 - 34: -11,4 - 38: -14,0 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteLineN - decals: - 113: -21,5 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - decals: - 13: -4,5 - 14: -5,5 - 15: -6,5 - 16: -7,5 - 28: -17,5 - 29: -16,5 - 30: -15,5 - 31: -14,5 - 32: -13,5 - 33: -12,5 - - node: - color: '#EFB341FF' - id: MiniTileWhiteLineN - decals: - 174: -9,12 - 185: -12,9 - 186: -13,9 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteLineS - decals: - 115: -21,3 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineS - decals: - 5: -8,3 - 6: -7,3 - 7: -6,3 - 8: -5,3 - 9: -4,3 - 20: -17,3 - 21: -16,3 - 22: -15,3 - 23: -14,3 - 24: -12,3 - 25: -13,3 - - node: - color: '#EFB341FF' - id: MiniTileWhiteLineS - decals: - 176: -9,11 - 177: -10,11 - 182: -12,8 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteLineW - decals: - 116: -22,4 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineW - decals: - 2: -9,5 - 3: -9,4 - 35: -18,4 - 39: -14,0 - - node: - color: '#EFB341FF' - id: MiniTileWhiteLineW - decals: - 172: -11,12 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 147: -18,10 - 148: -16,10 - 149: -18,8 - - node: - color: '#52B4E9FF' + color: '#00FFFF66' id: WarnCornerGreyscaleSW decals: - 70: -4,0 + 19: 17,9 - node: - color: '#FFFFFFFF' + color: '#00B400CC' id: WarnCornerNE decals: - 425: 12,16 + 1527: 46,72 - node: - color: '#FFFFFFFF' + color: '#EFB341CC' + id: WarnCornerNE + decals: + 160: 24,16 + 173: 29,21 + - node: + color: '#00B400CC' id: WarnCornerNW decals: - 426: 11,16 + 1533: 40,72 - node: - color: '#FFFFFFFF' + color: '#00B400CC' + id: WarnCornerSE + decals: + 1525: 39,73 + - node: + color: '#DE3A3ACC' + id: WarnCornerSE + decals: + 241: 34,21 + - node: + color: '#00B400CC' id: WarnCornerSW decals: - 190: -13,8 + 1526: 47,73 - node: - color: '#52B4E996' + color: '#334E6DB2' id: WarnCornerSmallGreyscaleNE decals: - 540: -13,-4 + 1494: 50,67 - node: - color: '#52B4E996' + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleNE + decals: + 705: 16,29 + 713: 11,29 + 744: 14,39 + 749: 13,36 + 782: 20,39 + 807: 19,29 + 829: 15,43 + 833: 11,43 + - node: + color: '#00FFFF66' id: WarnCornerSmallGreyscaleNW decals: - 539: -11,-4 + 13: 15,11 + 18: 16,12 - node: - color: '#52B4E9FF' + color: '#52B4E9CC' id: WarnCornerSmallGreyscaleNW decals: - 69: -8,0 + 662: 4,32 + 753: 12,38 + 787: 19,38 + 832: 13,43 - node: - color: '#52B4E996' + color: '#00FFFF66' id: WarnCornerSmallGreyscaleSE decals: - 568: -12,-4 + 17: 15,11 - node: - color: '#52B4E9FF' + color: '#52B4E9CC' id: WarnCornerSmallGreyscaleSE decals: - 90: -16,1 - 91: -17,1 + 706: 16,29 + 783: 20,37 + 808: 19,29 + 828: 15,43 - node: - color: '#52B4E9FF' + color: '#8932B8CC' + id: WarnCornerSmallGreyscaleSE + decals: + 2077: 35,55 + - node: + color: '#00FFFF66' id: WarnCornerSmallGreyscaleSW decals: - 73: -4,1 - 88: -18,1 - 89: -17,1 + 16: 17,11 - node: - color: '#FFFFFFFF' + color: '#334E6DCC' + id: WarnCornerSmallGreyscaleSW + decals: + 1562: 40,68 + - node: + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleSW + decals: + 569: 4,26 + 663: 4,32 + 682: 2,39 + 712: 12,29 + 752: 12,38 + - node: + color: '#00B400CC' id: WarnCornerSmallNE decals: - 275: 8,29 - 276: 8,20 - 411: 16,15 - 428: 12,15 + 1440: 45,46 + 1536: 42,75 + 1537: 44,72 - node: - color: '#FFFFFFFF' + color: '#A46106CC' + id: WarnCornerSmallNE + decals: + 1062: 22,47 + 1069: 24,50 + 1137: 14,47 + - node: + color: '#DE3A3ACC' + id: WarnCornerSmallNE + decals: + 193: 35,29 + 230: 32,25 + 231: 34,25 + 268: 46,33 + 414: 46,26 + - node: + color: '#EFB341CC' + id: WarnCornerSmallNE + decals: + 41: 23,16 + 71: 26,10 + 122: 31,15 + 917: 22,43 + - node: + color: '#00B400CC' id: WarnCornerSmallNW decals: - 410: 16,15 - 427: 11,15 + 1534: 42,72 + 1535: 44,75 - node: - color: '#FFFFFFFF' + color: '#80C71FCC' + id: WarnCornerSmallNW + decals: + 886: -2,39 + - node: + color: '#DE3A3ACC' + id: WarnCornerSmallNW + decals: + 192: 33,29 + 228: 36,25 + 229: 34,25 + 265: 46,32 + 413: 46,25 + - node: + color: '#EFB341CC' + id: WarnCornerSmallNW + decals: + 43: 22,16 + 121: 31,15 + - node: + color: '#00B400CC' id: WarnCornerSmallSE decals: - 274: 8,33 - 277: 8,24 - 493: 10,11 + 1529: 44,74 - node: - color: '#FFFFFFFF' + color: '#A46106CC' + id: WarnCornerSmallSE + decals: + 1063: 22,47 + - node: + color: '#DE3A3ACC' + id: WarnCornerSmallSE + decals: + 219: 34,25 + 267: 46,31 + - node: + color: '#EFB341CC' + id: WarnCornerSmallSE + decals: + 70: 26,10 + 123: 31,15 + - node: + color: '#00B400CC' id: WarnCornerSmallSW decals: - 192: -13,9 + 1531: 42,74 - node: - color: '#52B4E9FF' + color: '#DE3A3ACC' + id: WarnCornerSmallSW + decals: + 266: 46,32 + 411: 46,27 + 412: 46,25 + - node: + color: '#EFB341CC' + id: WarnCornerSmallSW + decals: + 120: 31,15 + - node: + color: '#DE3A3ACC' + id: WarnEndS + decals: + 1187: 35,47 + 1188: 31,47 + - node: + color: '#00B400CC' id: WarnLineE decals: - 101: -21,-1 - 102: -21,0 - 103: -21,1 + 1437: 45,47 + 1438: 45,48 + 1523: 44,73 + 1524: 42,76 - node: - color: '#FFFFFFFF' + color: '#80C71FCC' id: WarnLineE decals: - 156: -10,15 - 157: -10,16 - 158: -10,17 - 207: -5,15 - 208: -5,16 - 209: -5,17 - 210: -5,18 - 211: -1,17 - 212: -1,18 - 213: -1,19 - 214: -1,20 - 256: 3,17 - 257: 3,19 - 258: 3,21 - 265: 8,30 - 266: 8,31 - 267: 8,32 - 268: 8,21 - 269: 8,22 - 270: 8,23 - 407: 16,16 - 408: 16,17 - 492: 10,10 - 553: -5,19 - 554: -5,20 - 555: -1,21 - 556: -1,22 + 881: -2,38 + 882: -2,39 + 883: -2,40 - node: - color: '#52B4E996' + color: '#A46106CC' + id: WarnLineE + decals: + 1058: 22,48 + 1059: 22,46 + 1064: 24,52 + 1065: 24,51 + 1136: 14,48 + - node: + color: '#DE3A3ACC' + id: WarnLineE + decals: + 189: 35,30 + 218: 34,24 + 224: 32,26 + 225: 34,26 + 242: 34,22 + 259: 46,34 + 260: 46,30 + 403: 46,28 + 404: 46,27 + 1179: 31,51 + 1180: 31,50 + 1181: 31,48 + 1182: 35,51 + 1183: 35,50 + 1189: 35,48 + - node: + color: '#EFB341CC' + id: WarnLineE + decals: + 38: 23,19 + 39: 23,18 + 40: 23,17 + 64: 26,12 + 65: 26,11 + 66: 26,9 + 67: 26,8 + 114: 31,16 + 115: 31,17 + 116: 31,18 + 117: 31,14 + 118: 31,13 + 119: 31,12 + 158: 26,16 + 174: 29,20 + 916: 22,44 + 1252: 37,42 + 1253: 37,43 + 1254: 37,44 + 1304: 58,42 + 1305: 58,43 + 1306: 58,44 + 1313: 41,42 + 1314: 41,43 + 1315: 41,44 + - node: + cleanable: True + color: '#EFB341CC' + id: WarnLineE + decals: + 1787: 76,44 + 1788: 76,43 + 1789: 76,42 + - node: + color: '#334E6DB2' id: WarnLineGreyscaleE decals: - 537: -13,-3 - 567: -12,-5 + 1492: 50,68 - node: - color: '#52B4E9FF' + color: '#52B4E9CC' id: WarnLineGreyscaleE decals: - 76: -5,7 - 77: -5,8 - 82: -17,-1 - 83: -17,0 + 564: 4,28 + 565: 4,27 + 701: 16,30 + 702: 16,28 + 709: 11,30 + 743: 14,40 + 748: 13,37 + 780: 20,36 + 781: 20,40 + 794: 22,32 + 795: 22,33 + 796: 22,34 + 803: 19,30 + 804: 19,28 + 823: 15,44 + 824: 15,42 + 831: 11,44 - node: - color: '#52B4E996' + color: '#8932B8CC' + id: WarnLineGreyscaleE + decals: + 2076: 35,54 + - node: + color: '#D4D4D4B2' + id: WarnLineGreyscaleE + decals: + 1491: 50,69 + - node: + color: '#00FFFF66' id: WarnLineGreyscaleN decals: - 515: -10,-4 - 516: -9,-4 - 517: -8,-4 - 518: -7,-4 - 519: -6,-4 - 536: -12,-4 + 9: 14,11 + 10: 13,11 + 11: 12,11 + 12: 11,11 - node: - color: '#52B4E9FF' + color: '#334E6DB2' id: WarnLineGreyscaleN decals: - 58: -11,0 - 59: -12,0 - 60: -13,0 - 67: -9,0 + 1493: 51,67 - node: - color: '#52B4E996' + color: '#52B4E9CC' + id: WarnLineGreyscaleN + decals: + 660: 3,32 + 704: 17,29 + 711: 12,29 + 739: 11,38 + 741: 16,39 + 742: 15,39 + 745: 14,36 + 746: 15,36 + 747: 16,36 + 776: 22,39 + 777: 21,39 + 786: 18,38 + 805: 20,29 + 825: 16,43 + 826: 12,43 + - node: + color: '#00FFFF66' id: WarnLineGreyscaleS decals: - 520: -6,-4 - 521: -7,-4 - 522: -8,-4 - 523: -9,-4 - 524: -10,-4 - 566: -11,-4 + 14: 16,11 - node: - color: '#52B4E9FF' + color: '#334E6DCC' id: WarnLineGreyscaleS decals: - 61: -11,0 - 62: -12,0 - 63: -13,0 - 64: -8,0 - 65: -7,0 - 66: -9,0 - 71: -3,0 - 72: -5,1 - 86: -18,1 - 87: -16,1 + 1558: 39,68 - node: - color: '#A020F0FF' + color: '#52B4E9CC' id: WarnLineGreyscaleS decals: - 509: 10,3 - 510: 11,3 - 511: 12,3 + 566: 3,26 + 661: 3,32 + 681: 1,39 + 703: 17,29 + 710: 11,29 + 740: 11,38 + 778: 22,37 + 779: 21,37 + 806: 20,29 + 827: 16,43 - node: - color: '#52B4E996' + color: '#8932B8CC' + id: WarnLineGreyscaleS + decals: + 2074: 37,55 + 2075: 36,55 + - node: + color: '#00FFFF66' id: WarnLineGreyscaleW decals: - 538: -11,-3 + 4: 16,16 + 5: 16,13 + 7: 16,14 + 8: 16,15 + 15: 17,10 - node: - color: '#52B4E9FF' + color: '#334E6DCC' id: WarnLineGreyscaleW decals: - 68: -8,1 - 74: -5,7 - 75: -5,8 - 84: -17,-1 - 85: -17,0 + 1561: 40,67 - node: - color: '#FFFFFFFF' + color: '#52B4E9CC' + id: WarnLineGreyscaleW + decals: + 562: 4,28 + 563: 4,27 + 567: 4,24 + 568: 4,25 + 656: 4,30 + 657: 4,31 + 658: 4,33 + 659: 4,34 + 679: 2,36 + 680: 2,38 + 683: 2,37 + 707: 12,28 + 708: 13,30 + 737: 12,36 + 738: 12,40 + 750: 12,39 + 751: 12,37 + 784: 19,40 + 785: 19,39 + 830: 13,44 + - node: + color: '#8932B8CC' + id: WarnLineGreyscaleW + decals: + 2072: 34,54 + 2073: 34,55 + - node: + color: '#00B400CC' id: WarnLineN decals: - 131: -1,9 - 132: 0,9 - 133: 1,9 - 134: 2,9 - 135: 3,9 - 188: -11,8 - 189: -12,8 - 191: -14,9 - 478: 14,7 - 479: 13,7 - 480: 12,7 - 481: 11,7 - 482: 10,7 - 488: 14,11 - 489: 13,11 - 490: 12,11 - 491: 11,11 - 559: -2,9 - 560: 4,9 + 1528: 45,74 + 1530: 41,74 - node: - color: '#52B4E996' + color: '#A46106CC' + id: WarnLineN + decals: + 1060: 23,47 + 1087: 20,51 + 1088: 19,51 + - node: + color: '#DE3A3ACC' + id: WarnLineN + decals: + 216: 36,25 + 217: 35,25 + 261: 47,31 + 264: 45,32 + 409: 45,25 + 410: 45,27 + 415: 49,25 + 417: 50,25 + - node: + color: '#EFB341CC' + id: WarnLineN + decals: + 69: 27,10 + 111: 30,15 + 112: 29,15 + 113: 32,15 + 1255: 27,42 + 1256: 26,42 + 1257: 25,42 + 1264: 25,32 + 1265: 26,32 + 1266: 27,32 + 1371: 39,47 + 1372: 40,47 + 1373: 41,47 + - node: + cleanable: True + color: '#EFB341CC' + id: WarnLineN + decals: + 1790: 70,42 + 1791: 69,42 + 1792: 68,42 + - node: + color: '#00B400CC' id: WarnLineS decals: - 117: -22,3 - 118: -22,4 - 119: -22,5 + 1521: 42,73 + 1522: 44,76 - node: - color: '#52B4E9FF' + color: '#80C71FCC' id: WarnLineS decals: - 98: -22,-1 - 99: -22,0 - 100: -22,1 + 885: -2,40 - node: - color: '#FFFFFFFF' + color: '#A46106CC' id: WarnLineS decals: - 153: -11,15 - 154: -11,16 - 155: -11,17 - 202: -5,14 - 203: -5,15 - 204: -5,16 - 205: -5,17 - 206: -5,18 - 215: -1,17 - 216: -1,18 - 217: -1,19 - 218: -1,20 - 405: 16,16 - 406: 16,17 - 549: -5,19 - 550: -5,20 - 551: -1,21 - 552: -1,22 + 1132: 13,50 + 1133: 13,51 - node: - color: '#FFFFFFFF' + color: '#DE3A3AB2' + id: WarnLineS + decals: + 1374: 39,48 + 1375: 39,49 + 1376: 39,50 + - node: + color: '#DE3A3ACC' + id: WarnLineS + decals: + 188: 33,30 + 226: 34,26 + 227: 36,26 + 255: 46,30 + 256: 46,31 + 257: 46,33 + 258: 46,34 + 405: 46,26 + 406: 46,24 + 1184: 31,48 + 1185: 31,50 + 1186: 31,51 + 1190: 35,48 + 1191: 35,50 + 1192: 35,51 + - node: + color: '#EFB341CC' + id: WarnLineS + decals: + 44: 22,17 + 45: 22,18 + 47: 22,19 + 105: 31,16 + 106: 31,17 + 107: 31,18 + 108: 31,14 + 109: 31,13 + 110: 31,12 + 161: 26,16 + 912: 21,42 + 913: 21,43 + 914: 21,44 + 1307: 43,42 + 1308: 43,43 + 1309: 43,44 + 1310: 39,42 + 1311: 39,43 + 1312: 39,44 + - node: + cleanable: True + color: '#EFB341CC' + id: WarnLineS + decals: + 1793: 60,42 + 1794: 60,43 + 1795: 60,44 + - node: + color: '#00B400CC' id: WarnLineW decals: - 136: -8,8 - 137: -9,8 - 150: -18,7 - 151: -17,7 - 152: -16,7 - 178: -8,12 - 179: -9,12 - 271: 8,34 - 272: 7,34 - 273: 6,34 - 409: 15,15 - 412: 17,15 - 423: 10,15 - 424: 13,15 - 475: 14,7 - 476: 13,7 - 477: 12,7 - 483: 14,11 - 484: 13,11 - 485: 12,11 - 486: 11,11 - 487: 10,11 + 1433: 51,51 + 1434: 50,51 + 1435: 56,51 + 1436: 55,51 + 1439: 46,46 + 1518: 41,72 + 1519: 45,72 + 1520: 43,75 - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe + color: '#80C71FCC' + id: WarnLineW decals: - 432: 17,13 + 884: -3,39 - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe + color: '#A46106CC' + id: WarnLineW decals: - 431: 17,12 + 1061: 23,47 + 1066: 27,50 + 1067: 26,50 + 1068: 25,50 + 1076: 19,52 + 1077: 20,52 + 1078: 21,52 + 1079: 22,52 + 1080: 23,52 + 1089: 20,47 + 1090: 19,47 + 1134: 16,47 + 1135: 15,47 - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw + color: '#DE3A3ACC' + id: WarnLineW decals: - 430: 16,12 + 190: 36,29 + 191: 32,29 + 222: 33,25 + 223: 35,25 + 262: 47,33 + 263: 45,32 + 275: 49,33 + 276: 50,33 + 277: 51,33 + 407: 47,26 + 408: 45,25 + 1246: 30,44 + 1247: 31,44 + 1248: 32,44 + 1249: 34,44 + 1250: 35,44 + 1251: 36,44 - node: - color: '#FFFFFFFF' - id: WoodTrimThinEndN + color: '#EFB341CC' + id: WarnLineW decals: - 429: 16,14 + 42: 21,16 + 68: 27,10 + 102: 30,15 + 103: 29,15 + 104: 32,15 + 157: 27,15 + 915: 23,43 + 1258: 25,40 + 1259: 26,40 + 1260: 27,40 + 1261: 27,30 + 1262: 26,30 + 1263: 25,30 + 1316: 39,45 + 1317: 40,45 + 1318: 41,45 - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe + cleanable: True + color: '#EFB341CC' + id: WarnLineW decals: - 434: 16,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 433: 16,13 - type: DecalGrid - - version: 2 + 1784: 68,44 + 1785: 70,44 + 1786: 69,44 + - type: GridAtmosphere + version: 2 data: tiles: 0,0: - 0: 65535 + 0: 15 1,0: - 0: 65535 + 0: 15 2,0: - 0: 65525 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 + 0: 1 2,3: - 0: 65535 - 3,0: - 0: 13298 - 3,1: - 0: 65523 + 0: 52428 + 1: 3 3,2: - 0: 65535 + 0: 65416 3,3: 0: 65535 - 0,-2: - 0: 65297 - 0,-1: + 4,2: 0: 65535 - 1,-1: - 0: 48015 - -4,0: + 4,3: 0: 65535 - -4,1: + 5,1: + 0: 61440 + 1: 559 + 5,2: 0: 65535 - -4,2: + 5,3: 0: 65535 - -4,3: - 0: 45055 - -3,0: + 6,1: + 0: 61440 + 1: 1103 + 6,2: + 0: 32631 + 2: 32904 + 6,3: + 0: 65527 + 2: 8 + 7,1: + 0: 4096 + 1: 34959 + 7,2: 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 - -4,-1: - 0: 65518 - -3,-1: - 0: 65535 - -2,-1: - 0: 65535 - -2,-2: - 0: 65416 - -1,-2: - 0: 65280 - -1,-1: - 0: 65535 - -4,4: - 0: 20394 - -3,4: - 0: 12287 - -2,4: - 0: 61439 - -1,4: - 0: 65535 - -1,5: - 0: 61183 - 0,4: + 7,3: 0: 65535 0,5: 0: 65535 0,6: - 0: 61694 - 1,4: 0: 65535 + 0,7: + 0: 30719 + 3: 34816 + 1,4: + 0: 61440 + 1: 287 1,5: 0: 65535 1,6: - 0: 65279 + 0: 65535 1,7: - 0: 61422 - 2,4: - 0: 16383 + 0: 65535 2,5: - 0: 13107 + 0: 65535 2,6: - 0: 13107 + 0: 65535 2,7: - 0: 13107 + 0: 65535 + 2,4: + 0: 34956 + 1: 3 3,4: - 0: 4095 - -6,0: 0: 65535 - -6,1: - 0: 36863 - -6,2: - 0: 3976 - -5,0: + 3,5: 0: 65535 - -5,1: + 3,6: + 0: 65535 + 3,7: 0: 65535 - -5,2: - 0: 61439 - -5,3: - 0: 12030 - 1,8: - 0: 61422 - 2,8: - 0: 13107 - -6,-1: - 0: 65314 - -5,-1: - 0: 65348 - 4,2: - 0: 61680 - 4,3: - 0: 63351 4,4: - 0: 3959 - 0,-3: - 0: 7936 - 1,-3: - 0: 12544 - 1,-2: - 0: 34958 - 2,-1: - 0: 17487 - 3,-1: - 0: 8879 - -4,-3: - 0: 12032 - -4,-2: - 0: 60962 - -3,-3: - 0: 20224 - -3,-2: - 0: 65348 - -2,-3: - 0: 36608 - -1,-3: - 0: 3840 - -4,5: - 0: 62788 - -3,5: - 0: 61986 - -2,5: - 0: 62190 - -2,6: - 0: 1578 - -1,6: - 0: 58083 - -1,7: - 0: 140 - 0,7: - 0: 12048 - -7,0: - 0: 7953 - -7,1: - 0: 7953 - -7,2: - 0: 19555 - -7,3: - 0: 34948 - -6,3: - 0: 4336 - 0,8: - 0: 3618 - -7,-1: - 0: 7959 - -7,-2: - 0: 51200 - -6,-2: - 0: 12032 - -5,-2: - 0: 18244 - -5,-3: - 0: 51200 - 4,0: - 0: 35956 - 4,1: - 0: 240 - 5,0: - 0: 4096 - 5,1: - 0: 12561 - 5,2: - 0: 63734 - 5,3: - 0: 63624 + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 5,4: - 0: 3976 - 4,-1: - 0: 25360 - -6,4: - 0: 35939 - -6,5: - 0: 8 - -5,5: - 0: 2247 - -5,4: - 0: 11810 + 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: 65535 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 65535 + 7,7: + 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: 30583 + 1: 8 + 10,5: + 0: 65535 + 10,6: + 0: 65535 + 10,7: + 0: 65535 + 11,5: + 0: 65535 + 11,6: + 0: 57343 + 4: 8192 + 11,7: + 0: 56831 + 3: 8704 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 9,3: + 0: 62259 + 10,3: + 0: 28672 + 1: 287 + 0,8: + 0: 63359 + 3: 2176 + 0,9: + 0: 65535 + 0,10: + 0: 65535 + 0,11: + 0: 65535 + 1,8: + 0: 65535 + 1,9: + 0: 65503 + 2: 32 + 1,10: + 0: 65535 + 1,11: + 0: 65535 + 2,8: + 0: 65535 + 2,9: + 0: 65535 + 2,10: + 0: 65535 + 2,11: + 0: 65535 + 3,8: + 0: 65535 + 3,9: + 0: 65535 + 3,10: + 0: 65535 + 3,11: + 0: 65535 + 4,8: + 0: 65535 + 4,9: + 4: 1 + 0: 65534 + 4,10: + 0: 65535 + 4,11: + 0: 65535 + 5,8: + 0: 65535 + 5,9: + 0: 65535 + 5,10: + 0: 65535 + 5,11: + 0: 65535 + 6,8: + 0: 65535 + 6,9: + 0: 65535 + 6,10: + 0: 65535 + 6,11: + 0: 65535 + 7,8: + 0: 65535 + 7,9: + 0: 65535 + 7,10: + 0: 65535 + 7,11: + 0: 65535 + 8,8: + 0: 65535 + 8,9: + 0: 65535 + 8,10: + 0: 65535 + 8,11: + 0: 65535 + 9,8: + 0: 65535 + 9,9: + 0: 65535 + 9,10: + 0: 65535 + 9,11: + 0: 65535 + 10,8: + 0: 65535 + 10,9: + 0: 65535 + 10,10: + 0: 65535 + 10,11: + 0: 65535 + 11,8: + 0: 64991 + 3: 544 + 11,9: + 0: 65535 + 11,10: + 0: 65535 + 11,11: + 0: 65535 + -2,8: + 0: 65262 + 1: 16 + -2,9: + 0: 61439 + -2,10: + 0: 61166 + 1: 4368 + -1,8: + 0: 65535 + -1,9: + 0: 65535 + -1,10: + 0: 65535 + -1,11: + 0: 61183 + -2,6: + 0: 60928 + 1: 238 + -2,7: + 0: 60622 + 1: 1 + -1,6: + 0: 65484 + 1: 51 + -1,7: + 0: 65535 + -1,5: + 0: 52428 + 1: 12288 + 4,12: + 0: 65535 + 4,13: + 0: 65535 + 5,12: + 0: 65535 + 5,13: + 0: 65535 + 6,12: + 0: 65535 + 6,13: + 0: 65535 + 7,12: + 0: 65535 + 7,13: + 0: 65535 + 12,4: + 0: 61440 + 1: 1103 + 12,5: + 0: 65535 + 12,6: + 0: 65531 + 2: 4 + 12,7: + 0: 65535 + 13,4: + 0: 4096 + 1: 2275 + 13,5: + 0: 30583 + 1: 32768 + 13,6: + 0: 63351 + 13,7: + 0: 65535 + 14,6: + 0: 4096 + 1: 25698 + 14,7: + 0: 4369 + 12,8: + 0: 65535 + 12,9: + 0: 65535 + 12,10: + 0: 65535 + 12,11: + 0: 65535 + 13,8: + 0: 65535 + 13,9: + 0: 65535 + 13,10: + 0: 65535 + 13,11: + 0: 65535 + 14,8: + 0: 4369 + 14,9: + 0: 65535 + 14,10: + 0: 65535 + 14,11: + 0: 13311 + 8,12: + 0: 65535 + 8,13: + 0: 57343 + 4: 8192 + 9,12: + 0: 65535 + 9,13: + 0: 65535 + 10,12: + 0: 65535 + 10,13: + 0: 65535 + 11,12: + 0: 65531 + 4: 4 + 11,13: + 0: 65535 + 0,12: + 0: 65535 + 0,13: + 0: 65535 + 1,12: + 0: 65535 + 1,13: + 0: 65535 + 2,12: + 0: 65535 + 2,13: + 0: 65535 + 3,12: + 0: 61183 + 4: 4352 + 3,13: + 0: 65535 + 4,1: + 0: 63232 + 1: 127 + 4,14: + 0: 12 + 5,14: + 0: 15 + 6,14: + 0: 1 + 1: 8 + 15,10: + 0: 65520 + 15,11: + 0: 255 + 8,14: + 0: 61167 + 8,15: + 0: 65535 + 9,14: + 0: 65535 + 9,15: + 0: 65535 + 10,14: + 0: 65535 + 10,15: + 0: 65535 + 11,14: + 0: 65535 + 11,15: + 0: 65535 + 12,12: + 0: 65535 + 12,13: + 0: 65531 + 2: 4 + 12,14: + 0: 65535 + 12,15: + 0: 65535 + 13,12: + 0: 65535 + 13,13: + 0: 30711 + 2: 8 + 13,14: + 0: 30583 + 1: 8 + 13,15: + 0: 14199 + 1: 8 + 14,12: + 0: 13107 + 14,13: + 0: 51 + 1: 8704 + -1,12: + 0: 61166 + 1: 256 + -1,13: + 0: 14 + 1: 61984 + 8,16: + 0: 61166 + 1: 16 + 8,17: + 0: 2286 + 1: 36880 + 9,16: + 0: 32767 + 2: 32768 + 9,17: + 0: 53247 + 9,18: + 0: 3276 + 1: 784 + 10,16: + 0: 65535 + 10,17: + 0: 65535 + 10,18: + 0: 65535 + 10,19: + 0: 255 + 11,16: + 0: 65535 + 11,17: + 0: 65535 + 11,18: + 0: 32767 + 11,19: + 0: 119 + 12,16: + 0: 65535 + 12,17: + 0: 65535 + 12,18: + 0: 273 + 1: 3652 + 13,16: + 0: 65535 + 13,17: + 0: 16383 + 1: 16384 + 14,16: + 0: 30583 + 1: 2048 + 14,17: + 0: 1911 + 1: 10240 + 16,10: + 0: 65528 + 16,11: + 0: 35071 + 16,9: + 0: 32768 + 17,9: + 0: 61440 + 17,10: + 0: 65535 + 17,11: + 0: 65535 + 18,10: + 0: 65520 + 18,11: + 0: 255 + 19,10: + 0: 65520 + 19,11: + 0: 255 + 2,2: + 0: 52224 + 1: 136 + 1,1: + 1: 32768 + 1,2: + 1: 34952 + 1,3: + 1: 34952 + 2,1: + 1: 61440 + 3,1: + 1: 4910 + 0,4: + 1: 8766 + 11,4: + 1: 8751 + 8,1: + 1: 17648 + 9,1: + 1: 17520 + 9,2: + 1: 244 + 10,2: + 1: 4368 + 11,3: + 1: 8739 + -3,8: + 1: 8932 + -3,9: + 1: 11810 + -3,10: + 1: 61154 + -3,11: + 1: 3618 + -2,11: + 1: 18244 + -3,5: + 1: 49152 + -3,6: + 1: 17476 + -3,7: + 1: 17484 + -2,5: + 1: 63624 + -2,4: + 1: 34944 + -1,4: + 1: 17648 + 7,14: + 1: 8751 + 7,15: + 1: 8750 + 14,4: + 1: 12544 + 14,5: + 1: 12834 + 14,14: + 1: 8739 + 14,15: + 1: 17635 + 15,15: + 1: 8752 + -2,12: + 1: 19524 + -2,13: + 1: 50244 + 8,18: + 1: 249 + 13,18: + 1: 1988 + 14,18: + 1: 242 + 15,16: + 1: 8994 + 15,17: + 1: 8994 + 15,18: + 1: 50 + 7,16: + 1: 18146 + 7,17: + 1: 50372 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1338,17520 +3756,44561 @@ entities: - 0 - 0 - 0 + - 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 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14984 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14957 + moles: + - 18.472576 + - 69.49208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - uid: 2522 + - type: Joint + joints: + docking138610: !type:WeldJoint + bodyB: 6565 + bodyA: 2 + id: docking138610 + localAnchorB: -6,0.5 + localAnchorA: 80,44.5 + damping: 1808.8378 + stiffness: 16236.09 + docking138611: !type:WeldJoint + bodyB: 6565 + bodyA: 2 + id: docking138611 + localAnchorB: -6,-1.5 + localAnchorA: 80,42.5 + damping: 1808.8378 + stiffness: 16236.09 + - uid: 6565 components: - type: MetaData + name: 'NTSFAS MK-568/M #583' - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids + pos: 84.817566,42.989822 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: XQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} - type: OccluderTree - - type: LoadedMap + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#EFB341B2' + id: Bot + decals: + 0: 1,-9 + 1: 2,-9 + 2: 2,-7 + 3: 1,-7 + 5: -2,-9 + - node: + color: '#334E6DCC' + id: BotGreyscale + decals: + 27: -1,8 + 28: -1,9 + 29: 0,9 + 30: 1,9 + 31: 1,8 + 32: 2,6 + 33: 1,6 + 34: -1,6 + 35: -2,6 + 122: 1,-4 + 123: 2,-4 + 124: 3,-4 + - node: + color: '#52B4E9B2' + id: BotGreyscale + decals: + 55: -3,4 + 56: -1,4 + 57: -1,2 + 58: -3,2 + 59: -2,1 + - node: + color: '#EFB341B2' + id: Box + decals: + 4: -2,-7 + 19: -1,-7 + - node: + color: '#334E6DCC' + id: BoxGreyscale + decals: + 80: 2,0 + 81: 1,0 + 82: 1,-2 + 83: 2,-2 + 84: -1,-2 + 85: -2,-2 + - node: + color: '#334E6DCC' + id: BrickTileWhiteCornerNe + decals: + 20: 2,9 + 102: -4,0 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerNe + decals: + 75: 3,4 + - node: + color: '#334E6DCC' + id: BrickTileWhiteCornerNw + decals: + 26: -2,9 + 108: 4,0 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerNw + decals: + 74: 2,4 + - node: + color: '#334E6DCC' + id: BrickTileWhiteCornerSe + decals: + 104: -4,-2 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerSe + decals: + 77: 3,2 + - node: + color: '#334E6DCC' + id: BrickTileWhiteCornerSw + decals: + 110: 4,-2 + 117: 0,-5 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerSw + decals: + 78: 2,2 + - node: + color: '#334E6DCC' + id: BrickTileWhiteEndN + decals: + 112: 0,4 + 116: 0,-4 + - node: + color: '#334E6DCC' + id: BrickTileWhiteEndS + decals: + 113: 0,2 + - node: + color: '#334E6DCC' + id: BrickTileWhiteInnerNe + decals: + 121: 0,-5 + - node: + color: '#334E6DCC' + id: BrickTileWhiteLineE + decals: + 21: 2,8 + 22: 2,7 + 86: 2,-1 + 103: -4,-1 + 114: 0,3 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineE + decals: + 61: -1,3 + - node: + color: '#EFB341B2' + id: BrickTileWhiteLineE + decals: + 7: 2,-8 + - node: + color: '#F9801DB2' + id: BrickTileWhiteLineE + decals: + 76: 3,3 + - node: + color: '#334E6DCC' + id: BrickTileWhiteLineN + decals: + 88: 0,0 + 106: -5,0 + 107: 5,0 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineN + decals: + 60: -2,4 + - node: + color: '#EFB341B2' + id: BrickTileWhiteLineN + decals: + 6: 0,-7 + - node: + color: '#334E6DCC' + id: BrickTileWhiteLineS + decals: + 23: 0,6 + 91: 0,-2 + 105: -5,-2 + 111: 5,-2 + 118: 1,-5 + 119: 2,-5 + 120: 3,-5 + - node: + color: '#EFB341B2' + id: BrickTileWhiteLineS + decals: + 9: -1,-9 + 10: 0,-9 + - node: + color: '#334E6DCC' + id: BrickTileWhiteLineW + decals: + 24: -2,7 + 25: -2,8 + 87: -2,-1 + 109: 4,-1 + 115: 0,3 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineW + decals: + 62: -3,3 + - node: + color: '#EFB341B2' + id: BrickTileWhiteLineW + decals: + 8: -2,-8 + - node: + color: '#F9801DB2' + id: BrickTileWhiteLineW + decals: + 79: 2,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 157: -4,-1 + 158: 0,0 + 159: 5,-2 + 160: 5,0 + 161: 3,-5 + 162: 0,-4 + 175: -2,3 + 176: 3,2 + 177: 2,3 + 178: 3,4 + 179: 0,3 + 195: 2,7 + 196: -2,8 + 197: 0,6 + 198: 0,-7 + 199: 2,-8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 139: -5,-2 + 140: -5,-1 + 141: 0,0 + 142: 5,-2 + 143: 5,0 + 144: 4,-1 + 145: 0,-4 + 146: 3,-5 + 147: 0,-5 + 163: 0,2 + 164: 0,4 + 165: -2,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 148: 2,-5 + 149: 0,-4 + 150: -5,-2 + 151: -1,-1 + 152: 0,0 + 153: 4,-1 + 154: 5,0 + 155: 5,-2 + 156: -5,0 + 204: 0,-7 + 205: -1,-9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 166: 3,2 + 167: 2,3 + 168: 3,4 + 185: 2,7 + 186: -2,8 + 187: 0,7 + 188: 2,9 + 193: -2,7 + 194: 2,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 134: -4,-1 + 135: 0,0 + 136: 2,-1 + 137: 1,-2 + 138: 5,-1 + 169: 3,3 + 170: 2,3 + 171: 3,4 + 172: -3,3 + 173: 0,2 + 174: 0,4 + 180: 0,6 + 181: -2,7 + 182: 2,8 + 183: 2,7 + 184: 0,7 + 189: 1,7 + 190: -1,9 + 191: -1,7 + 192: 0,6 + 200: -2,-8 + 201: 0,-7 + 202: 2,-8 + 203: 0,-9 + - node: + color: '#334E6DCC' + id: WarnCornerSmallGreyscaleNE + decals: + 53: -2,7 + 54: 0,7 + 101: 0,-1 + - node: + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleNE + decals: + 73: -2,3 + - node: + color: '#334E6DCC' + id: WarnCornerSmallGreyscaleNW + decals: + 51: 2,7 + 52: 0,7 + - node: + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleNW + decals: + 72: -2,3 + - node: + color: '#334E6DCC' + id: WarnCornerSmallGreyscaleSE + decals: + 42: 0,7 + 93: 0,-1 + - node: + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleSE + decals: + 66: -2,3 + - node: + color: '#334E6DCC' + id: WarnCornerSmallGreyscaleSW + decals: + 43: 0,7 + 97: 0,-1 + - node: + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleSW + decals: + 67: -2,3 + - node: + color: '#334E6DCC' + id: WarnEndGreyscaleN + decals: + 44: 0,8 + - node: + color: '#52B4E9CC' + id: WarnEndGreyscaleS + decals: + 63: -2,2 + - node: + color: '#EFB341CC' + id: WarnLineE + decals: + 15: 0,-7 + 18: 0,-9 + - node: + color: '#334E6DCC' + id: WarnLineGreyscaleE + decals: + 41: 0,6 + 47: -2,8 + 48: -2,9 + 92: 0,-2 + 100: 0,0 + 131: 5,-2 + 132: 5,-1 + 133: 5,0 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleE + decals: + 70: -2,4 + - node: + color: '#334E6DCC' + id: WarnLineGreyscaleN + decals: + 45: -1,7 + 46: 1,7 + 98: 2,-1 + 99: 1,-1 + 125: 1,-5 + 126: 2,-5 + 127: 3,-5 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleN + decals: + 68: -3,3 + 69: -1,3 + - node: + color: '#334E6DCC' + id: WarnLineGreyscaleS + decals: + 36: 2,7 + 37: 1,7 + 38: -1,7 + 39: -2,7 + 89: 2,-1 + 90: 1,-1 + 94: -2,-1 + 95: -1,-1 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleS + decals: + 64: -3,3 + 65: -1,3 + - node: + color: '#334E6DCC' + id: WarnLineGreyscaleW + decals: + 40: 0,6 + 49: 2,8 + 50: 2,9 + 96: 0,-2 + 128: -5,-2 + 129: -5,-1 + 130: -5,0 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleW + decals: + 71: -2,4 + - node: + color: '#EFB341CC' + id: WarnLineN + decals: + 13: -2,-8 + 14: 2,-8 + - node: + color: '#EFB341CC' + id: WarnLineS + decals: + 16: 0,-7 + 17: -1,-9 + - node: + color: '#EFB341CC' + id: WarnLineW + decals: + 11: -2,-8 + 12: 2,-8 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 4031 + 1: 64 + 1,0: + 0: 14199 + 1,1: + 0: 307 + 2: 4096 + 1,2: + 2: 1 + 0: 272 + 0,-3: + 2: 768 + 0: 64512 + 0,-2: + 0: 65535 + 1,-2: + 2: 16 + 0: 13088 + 1,-1: + 0: 30579 + -2,-1: + 0: 52424 + -2,-2: + 0: 34944 + -1,-2: + 2: 16 + 0: 65518 + -1,-3: + 0: 58880 + 2: 2048 + -2,0: + 0: 36044 + -2,1: + 0: 136 + -1,1: + 0: 61439 + 2: 4096 + -1,2: + 2: 1 + 0: 4030 + 1: 64 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 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 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Joint + joints: + docking138610: !type:WeldJoint + bodyB: 6565 + bodyA: 2 + id: docking138610 + localAnchorB: -6,0.5 + localAnchorA: 80,44.5 + damping: 1808.8378 + stiffness: 16236.09 + docking138611: !type:WeldJoint + bodyB: 6565 + bodyA: 2 + id: docking138611 + localAnchorB: -6,-1.5 + localAnchorA: 80,42.5 + damping: 1808.8378 + stiffness: 16236.09 +- proto: ActionToggleInternals + entities: + - uid: 7067 + components: + - type: Transform + parent: 4870 + - type: InstantAction + container: 4870 - proto: AdvMopItem entities: - - uid: 3 + - uid: 4580 components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4577 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: AirAlarm entities: - - uid: 15 + - uid: 4107 components: - - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 913 - - 914 - - 912 - - 901 - - 911 - - 902 - type: DeviceNetwork - - devices: - - 1374 - - 1356 - - 1376 - - 1345 - - 1350 - - 1377 - - 1349 - - 1375 - - 1360 - - 1384 - - 1401 - - 1364 - - 1402 - - 1365 - - 913 - - 914 - - 912 - - 901 - - 911 - - 902 - type: DeviceList - - uid: 16 + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 2196 + - 2276 + - 2197 + - 2248 + - 4017 + - 4016 + - 4018 + - 4019 + - 4025 + - 2275 + - 2195 + - 2274 + - 2194 + - 2193 + - 2273 + - 4063 + - 4064 + - 2198 + - 2277 + - 6057 + - type: AtmosDevice + joinedGrid: 2 + - uid: 4111 components: - - pos: -14.5,6.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 903 - - 917 - type: DeviceNetwork - - devices: - - 1355 - - 1378 - - 1381 - - 1346 - - 1353 - - 1380 - - 1379 - - 1354 - - 1382 - - 1351 - - 1383 - - 1352 - - 913 - - 915 - - 916 - - 917 - - 918 - - 903 - type: DeviceList - - uid: 17 + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 2192 + - 2272 + - 4025 + - type: AtmosDevice + joinedGrid: 2 + - uid: 4383 components: - - pos: 1.5,16.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 1336 - - 1391 - - 1335 - - 1392 - - 1394 - - 1333 - - 1393 - - 1334 - - 1395 - - 1332 - type: DeviceNetwork - - devices: - - 926 - - 927 - - 928 - - 929 - - 907 - - 1336 - - 1391 - - 1335 - - 1392 - - 1394 - - 1333 - - 1393 - - 1334 - - 1395 - - 1332 - type: DeviceList - - uid: 18 + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 2284 + - 2243 + - 2244 + - 2285 + - 4347 + - 4348 + - 4346 + - 4345 + - 2242 + - 2280 + - 2238 + - 2298 + - 4340 + - 4343 + - 6056 + - 2293 + - 2232 + - 4331 + - 4338 + - type: AtmosDevice + joinedGrid: 2 + - uid: 4384 components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceNetwork - - devices: - - 1329 - - 1367 - - 1396 - - 1361 - - 1366 - - 1328 - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceList - - uid: 19 + - type: Transform + pos: 32.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 2247 + - 2292 + - 4337 + - 4336 + - 4335 + - 4334 + - 4333 + - 2287 + - 2230 + - 2286 + - 2229 + - 2288 + - 2228 + - 2226 + - 2289 + - 2227 + - 2290 + - 2231 + - 2291 + - type: AtmosDevice + joinedGrid: 2 + - uid: 4385 components: - - rot: 1.5707963267948966 rad - pos: 5.5,9.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 937 - - 935 - type: DeviceNetwork - - devices: - - 1368 - - 1330 - - 1331 - - 1369 - - 1387 - - 1342 - - 1370 - - 1343 - - 1373 - - 1344 - - 905 - - 906 - - 925 - - 921 - - 920 - - 919 - - 922 - - 923 - - 924 - - 935 - - 937 - type: DeviceList - - uid: 20 + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 2281 + - 2239 + - 4344 + - 4343 + - 6056 + - 2282 + - 2240 + - 2241 + - 4300 + - type: AtmosDevice + joinedGrid: 2 + - uid: 4386 components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceNetwork - - devices: - - 1359 - - 1372 - - 1358 - - 1371 - - 1386 - - 1347 - - 1399 - - 1362 - - 1385 - - 1348 - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceList -- proto: AirlockAtmosphericsGlassLocked + - type: Transform + pos: 46.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 2237 + - 2297 + - 4342 + - 4341 + - 2283 + - 2236 + - 4340 + - 2296 + - 2235 + - type: AtmosDevice + joinedGrid: 2 + - uid: 4387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 2245 + - 2279 + - 4355 + - 6059 + - 6058 + - type: AtmosDevice + joinedGrid: 2 + - uid: 4388 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 2233 + - 2295 + - 2234 + - 2294 + - 4339 + - 4338 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 2207 + - 2335 + - 4997 + - 4996 + - 2334 + - 2208 + - 4998 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5001 + components: + - type: Transform + pos: 12.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 2338 + - 2209 + - 4998 + - 4999 + - 2210 + - 2337 + - 2336 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5002 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 2249 + - 2350 + - 2222 + - 2346 + - 2343 + - 2221 + - 2345 + - 2223 + - 4799 + - 4800 + - 4790 + - 4810 + - 4792 + - 4795 + - 4793 + - 4796 + - 4785 + - 4786 + - 4791 + - 2349 + - 2218 + - 2351 + - 2217 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 2212 + - 2341 + - 4797 + - 4798 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5004 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 2352 + - 2224 + - 4806 + - 4805 + - 4799 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5005 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 2340 + - 2211 + - 4807 + - 4801 + - 4798 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5006 + components: + - type: Transform + pos: 0.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 2220 + - 2339 + - 4802 + - 4810 + - 4797 + - 4801 + - 4804 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5007 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 2213 + - 2342 + - 4792 + - 4794 + - 2214 + - 2344 + - 4802 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 2219 + - 2353 + - 4803 + - 4804 + - 4808 + - 4809 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 2215 + - 2348 + - 4791 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5010 + components: + - type: Transform + pos: 20.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 2333 + - 2225 + - 4872 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 2331 + - 2256 + - 5099 + - 5100 + - 5102 + - 5101 + - 2332 + - 2257 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,52.5 + parent: 2 + - type: DeviceList + devices: + - 2255 + - 2315 + - 5213 + - 2254 + - 2313 + - 2314 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,48.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 5212 + - 5219 + - 5216 + - 2309 + - 2253 + - 2310 + - 2252 + - 2312 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5552 + components: + - type: Transform + pos: 71.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 2205 + - 2305 + - 5121 + - 2206 + - 2306 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5553 + components: + - type: Transform + pos: 52.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 2204 + - 2304 + - 5121 + - 5218 + - 5212 + - 5117 + - 5118 + - 2303 + - 2203 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5554 + components: + - type: Transform + pos: 30.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 2201 + - 2301 + - 5113 + - 5114 + - 4872 + - 4997 + - 4996 + - 5101 + - 5100 + - 5115 + - 5116 + - 2302 + - 2202 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 5111 + - 5112 + - 2200 + - 2300 + - 5113 + - 5114 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 2199 + - 2299 + - 4348 + - 4788 + - 4787 + - 4017 + - 6057 + - 5111 + - 5112 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5557 + components: + - type: Transform + pos: 41.5,66.5 + parent: 2 + - type: DeviceList + devices: + - 5119 + - 5120 + - 5213 + - 2259 + - 2317 + - 2260 + - 2323 + - 2322 + - 2261 + - 5360 + - 5433 + - 5676 + - 5099 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5558 + components: + - type: Transform + pos: 46.5,62.5 + parent: 2 + - type: DeviceList + devices: + - 2318 + - 2266 + - 5667 + - 2265 + - 2320 + - 5675 + - 2319 + - 2267 + - 2264 + - 2321 + - 5676 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,67.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,71.5 + parent: 2 + - type: DeviceList + devices: + - 2326 + - 2268 + - 2327 + - 2269 + - 5434 + - 5433 + - 5435 + - 6055 + - 5436 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 2216 + - 2347 + - 4795 + - 4793 + - 4796 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6061 + components: + - type: Transform + pos: 50.5,70.5 + parent: 2 + - type: DeviceList + devices: + - 2324 + - 2263 + - 2325 + - 2262 + - 5360 + - 5359 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 6565 + - type: DeviceList + devices: + - 6832 + - 6824 + - 6834 + - 6823 + - 6822 + - 6828 + - 6751 + - 6750 + - 6821 + - 6829 + - 6752 + - 6753 + - 6820 + - 6830 + - 6749 + - 6831 + - 6819 + - type: AtmosDevice + joinedGrid: 6565 + - uid: 6567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 6565 + - type: DeviceList + devices: + - 6833 + - 6826 + - 6825 + - 6827 + - 6750 + - 6754 + - type: AtmosDevice + joinedGrid: 6565 +- proto: AirCanister entities: - - uid: 21 + - uid: 5993 components: - - rot: 1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform -- proto: AirlockChemistry + - type: Transform + pos: 22.5,22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5994 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6568 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 6565 + - type: AtmosDevice + joinedGrid: 6565 +- proto: AirlockArmoryLocked entities: - - uid: 22 + - uid: 4360 components: - - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 1 - type: Transform -- proto: AirlockCommandGlassLocked + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 +- proto: AirlockAtmosphericsLocked entities: - - uid: 23 + - uid: 824 components: - - pos: -2.5,14.5 - parent: 1 - type: Transform - - uid: 24 + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 6569 components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - uid: 25 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 26 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - type: Transform -- proto: AirlockCommandLocked + - type: Transform + pos: -0.5,-4.5 + parent: 6565 +- proto: AirlockCargoGlassLocked entities: - - uid: 27 + - uid: 5022 components: - - pos: 5.5,14.5 - parent: 1 - type: Transform - - uid: 28 + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,49.5 + parent: 2 +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 5122 components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - uid: 29 + - type: Transform + pos: 27.5,41.5 + parent: 2 + - uid: 5123 components: - - pos: 3.5,21.5 - parent: 1 - type: Transform - - uid: 30 + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 5124 components: - - pos: 3.5,19.5 - parent: 1 - type: Transform - - uid: 31 + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 5125 components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - uid: 32 + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 5126 components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - uid: 33 + - type: Transform + pos: 38.5,42.5 + parent: 2 + - uid: 5127 components: - - rot: 3.141592653589793 rad - pos: 16.5,14.5 - parent: 1 - type: Transform + - type: Transform + pos: 38.5,44.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: 39.5,46.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: 42.5,44.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: 42.5,42.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,66.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,71.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: 51.5,62.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: 48.5,58.5 + parent: 2 +- proto: AirlockCentralCommandLocked + entities: + - uid: 5220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,45.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,45.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,51.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,49.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,49.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,49.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,46.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,50.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,50.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 5305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 34 + - uid: 4097 components: - - pos: -10.5,10.5 - parent: 1 - type: Transform + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 35 + - uid: 4095 components: - - rot: 1.5707963267948966 rad - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 36 + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 4096 components: - - pos: -9.5,14.5 - parent: 1 - type: Transform - - uid: 37 + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 5794 components: - - pos: -10.5,14.5 - parent: 1 - type: Transform + - type: Transform + pos: 36.5,67.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: 57.5,39.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: 40.5,17.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 6565 - proto: AirlockEVAGlassLocked entities: - - uid: 38 + - uid: 4874 components: - - rot: -1.5707963267948966 rad - pos: 10.5,9.5 - parent: 1 - type: Transform -- proto: AirlockGlassShuttle + - type: Transform + pos: 24.5,43.5 + parent: 2 +- proto: AirlockExternalAtmosphericsLocked entities: - - uid: 39 + - uid: 3986 components: - - rot: 1.5707963267948966 rad - pos: 9.5,30.5 - parent: 1 - type: Transform - - uid: 40 + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 3987 components: - - rot: 1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - type: Transform - - uid: 41 + - type: Transform + pos: 17.5,6.5 + parent: 2 +- proto: AirlockExternalCargoLocked + entities: + - uid: 4909 components: - - rot: 3.141592653589793 rad - pos: 8.5,35.5 - parent: 1 - type: Transform - - uid: 42 + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,53.5 + parent: 2 + - uid: 4910 components: - - rot: 1.5707963267948966 rad - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 43 + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,53.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 5546 components: - - rot: 3.141592653589793 rad - pos: 6.5,35.5 - parent: 1 - type: Transform - - uid: 44 + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,45.5 + parent: 2 + - uid: 5547 components: - - rot: 1.5707963267948966 rad - pos: 9.5,21.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,45.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,44.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,42.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,41.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,41.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,42.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,42.5 + parent: 2 +- proto: AirlockExternalGlassShuttleCargo + entities: + - uid: 4907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,56.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,56.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 5383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,44.5 + parent: 2 + - type: Docking + dockJointId: docking138610 + dockedWith: 6574 + - uid: 5538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,42.5 + parent: 2 + - type: Docking + dockJointId: docking138611 + dockedWith: 6573 + - uid: 5542 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: 68.5,39.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,47.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,47.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 6565 + - uid: 6572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 6565 + - uid: 6573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 6565 + - type: Docking + dockJointId: docking138611 + dockedWith: 5538 + - uid: 6574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 6565 + - type: Docking + dockJointId: docking138610 + dockedWith: 5383 +- proto: AirlockFreezer + entities: + - uid: 4362 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,50.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: 53.5,55.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: 51.5,55.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + pos: 52.5,58.5 + parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 45 + - uid: 4585 components: - - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform -- proto: AirlockMaintCommandLocked + - type: Transform + pos: 38.5,55.5 + parent: 2 +- proto: AirlockMaintCargoLocked entities: - - uid: 46 + - uid: 4995 components: - - pos: 4.5,1.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,47.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 4094 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 3657 + components: + - type: Transform + pos: 36.5,57.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 4126 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,65.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,26.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - - uid: 47 + - uid: 4826 components: - - pos: -8.5,7.5 - parent: 1 - type: Transform + - type: Transform + pos: 8.5,45.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 4367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,29.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,23.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,36.5 + parent: 2 - proto: AirlockMedicalGlassLocked entities: - - uid: 48 + - uid: 4815 components: - - rot: 3.141592653589793 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 49 + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 4816 components: - - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 1 - type: Transform - - uid: 50 + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 4819 components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 51 + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 4820 components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 52 + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 4821 components: - - pos: -9.5,4.5 - parent: 1 - type: Transform - - uid: 53 + - type: Transform + pos: 4.5,35.5 + parent: 2 + - uid: 4825 components: - - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 1 - type: Transform + - type: Transform + pos: 10.5,43.5 + parent: 2 + - uid: 4847 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 - proto: AirlockMedicalLocked entities: - - uid: 54 + - uid: 4817 components: - - rot: 1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 4993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,47.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,49.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 4349 + components: + - type: Transform + pos: 40.5,36.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 4357 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 44.5,39.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: 48.5,38.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,31.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,33.5 + parent: 2 - proto: AirlockVirologyLocked entities: - - uid: 55 + - uid: 4828 components: - - pos: -18.5,4.5 - parent: 1 - type: Transform + - type: Transform + pos: -1.5,41.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: -1.5,37.5 + parent: 2 - proto: AlwaysPoweredWallLight entities: - - uid: 60 + - uid: 5106 components: - - rot: 3.141592653589793 rad - pos: -13.5,-4.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,50.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,48.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,51.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,47.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,46.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,50.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,47.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,51.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,46.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,51.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: 45.5,52.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 +- proto: AmmoTechFab + entities: + - uid: 4295 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 +- proto: AntiPoisonMedipen + entities: + - uid: 4624 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4625 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4626 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4627 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4629 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: APCBasic entities: - - uid: 61 + - uid: 3105 components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 62 + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,19.5 + parent: 2 + - uid: 3106 components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 63 + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 3107 components: - - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 1 - type: Transform + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,10.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,23.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,26.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,35.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,32.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: 43.5,45.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,47.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,47.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,51.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: 31.5,52.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: 14.5,49.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: 28.5,45.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,23.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,33.5 + parent: 2 + - uid: 3133 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,38.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,43.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,38.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,33.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,39.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,55.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 47.5,58.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: 52.5,62.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + pos: 55.5,69.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,69.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: 46.5,74.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,62.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: 69.5,45.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,20.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,15.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,51.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,37.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,65.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 6565 + - uid: 6576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 6565 +- proto: AppraisalTool + entities: + - uid: 7068 + components: + - type: Transform + parent: 4979 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ATM + entities: + - uid: 6013 + components: + - type: Transform + pos: 44.5,66.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: 29.5,45.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 64 + - uid: 3984 components: - - pos: 8.5,35.5 - parent: 1 - type: Transform - - uid: 65 + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 3985 components: - - pos: 9.5,32.5 - parent: 1 - type: Transform - - uid: 66 + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 4888 components: - - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 67 + - type: Transform + pos: 22.5,53.5 + parent: 2 + - uid: 4889 components: - - pos: 9.5,21.5 - parent: 1 - type: Transform - - uid: 68 + - type: Transform + pos: 22.5,56.5 + parent: 2 + - uid: 4890 components: - - pos: 6.5,35.5 - parent: 1 - type: Transform - - uid: 69 + - type: Transform + pos: 20.5,56.5 + parent: 2 + - uid: 4891 components: - - pos: 9.5,30.5 - parent: 1 - type: Transform + - type: Transform + pos: 20.5,53.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,47.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,47.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,44.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,42.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,39.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,39.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,42.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,42.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,26.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: -5.5,0.5 + parent: 6565 + - uid: 6578 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 6565 + - uid: 6579 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 6565 + - uid: 6580 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 6565 + - uid: 6581 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 6565 + - uid: 6582 + components: + - type: Transform + pos: 6.5,0.5 + parent: 6565 +- proto: AtmosFixBlockerMarker + entities: + - uid: 6583 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 6565 + - uid: 6584 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 6565 + - uid: 6585 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 6565 + - uid: 6586 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 6565 + - uid: 6587 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 6565 + - uid: 6588 + components: + - type: Transform + pos: -3.5,7.5 + parent: 6565 + - uid: 6589 + components: + - type: Transform + pos: -3.5,8.5 + parent: 6565 + - uid: 6590 + components: + - type: Transform + pos: 4.5,7.5 + parent: 6565 + - uid: 6591 + components: + - type: Transform + pos: 4.5,8.5 + parent: 6565 +- proto: Autolathe + entities: + - uid: 7079 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 4167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,20.5 + parent: 2 - proto: Bed entities: - - uid: 70 + - uid: 4066 components: - - pos: -22.5,0.5 - parent: 1 - type: Transform - - uid: 71 + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 4067 components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - uid: 72 + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 4068 components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - uid: 73 + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 4069 components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - uid: 74 + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 4246 components: - - pos: -22.5,1.5 - parent: 1 - type: Transform - - uid: 75 + - type: Transform + pos: 35.5,39.5 + parent: 2 + - uid: 4247 components: - - pos: -22.5,-0.5 - parent: 1 - type: Transform - - uid: 76 + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 4248 components: - - pos: -5.5,18.5 - parent: 1 - type: Transform - - uid: 77 + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 4249 components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - uid: 78 + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 4251 components: - - pos: -3.5,18.5 - parent: 1 - type: Transform - - uid: 79 + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 4256 components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 80 + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 4483 components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 81 + - type: Transform + pos: 49.5,26.5 + parent: 2 + - uid: 4524 components: - - pos: -3.5,17.5 - parent: 1 - type: Transform - - uid: 82 + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 4526 components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - uid: 83 + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 4527 components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 84 + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 4528 components: - - pos: 17.5,12.5 - parent: 1 - type: Transform - - uid: 1822 + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 4741 components: - - pos: -3.5,19.5 - parent: 1 - type: Transform - - uid: 1871 + - type: Transform + pos: -2.5,31.5 + parent: 2 + - uid: 4742 components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 2088 + - type: Transform + pos: -2.5,33.5 + parent: 2 + - uid: 4743 components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - uid: 2415 + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 4977 components: - - pos: -5.5,20.5 - parent: 1 - type: Transform -- proto: BedsheetCaptain + - type: Transform + pos: 14.5,51.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: 51.5,50.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + pos: 56.5,50.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: 40.5,67.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + pos: 3.5,2.5 + parent: 6565 + - uid: 6593 + components: + - type: Transform + pos: 3.5,4.5 + parent: 6565 +- proto: BedsheetBlue entities: - - uid: 85 + - uid: 4542 components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 1 - type: Transform + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: 40.5,67.5 + parent: 2 +- proto: BedsheetCentcom + entities: + - uid: 5194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,50.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,50.5 + parent: 2 + - uid: 5196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,46.5 + parent: 2 - proto: BedsheetGreen entities: - - uid: 86 + - uid: 4744 components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - uid: 87 + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,35.5 + parent: 2 + - uid: 4745 components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - uid: 88 + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,33.5 + parent: 2 + - uid: 4746 components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - uid: 89 - components: - - pos: -22.5,-0.5 - parent: 1 - type: Transform - - uid: 90 - components: - - pos: -22.5,0.5 - parent: 1 - type: Transform - - uid: 91 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,31.5 + parent: 2 - proto: BedsheetMedical entities: - - uid: 92 + - uid: 4606 components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 93 + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 4661 components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - uid: 94 + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 4662 components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 95 + - type: Transform + pos: 11.5,30.5 + parent: 2 + - uid: 4675 components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 100 + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,30.5 + parent: 2 + - uid: 4676 components: - - pos: -3.5,18.5 - parent: 1 - type: Transform - - uid: 101 + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 + - uid: 6594 components: - - pos: -3.5,17.5 - parent: 1 - type: Transform - - uid: 102 + - type: Transform + pos: -2.5,2.5 + parent: 6565 + - uid: 6595 components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - uid: 103 - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform + - type: Transform + pos: -0.5,2.5 + parent: 6565 - proto: BedsheetOrange entities: - - uid: 2420 + - uid: 4070 components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 2421 + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 4071 components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 2422 + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 4072 components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - uid: 2423 + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 4073 components: - - pos: -3.5,15.5 - parent: 1 - type: Transform + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: 35.5,39.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + pos: 3.5,4.5 + parent: 6565 + - uid: 6597 + components: + - type: Transform + pos: 3.5,2.5 + parent: 6565 +- proto: BedsheetQM + entities: + - uid: 4978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,51.5 + parent: 2 - proto: BedsheetRed entities: - - uid: 96 + - uid: 4484 components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 97 + - type: Transform + pos: 49.5,26.5 + parent: 2 +- proto: BenchSofaCorpLeft + entities: + - uid: 5466 components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 98 + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,67.5 + parent: 2 +- proto: BenchSofaCorpRight + entities: + - uid: 5465 components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - uid: 99 - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,68.5 + parent: 2 - proto: BenchSteelLeft entities: - - uid: 104 + - uid: 4401 components: - - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 105 + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,32.5 + parent: 2 + - uid: 4875 components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 106 + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 4879 components: - - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 107 + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 2 + - uid: 5342 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - uid: 108 + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,55.5 + parent: 2 + - uid: 5469 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 109 + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,69.5 + parent: 2 + - uid: 5666 components: - - pos: 0.5,12.5 - parent: 1 - type: Transform - - uid: 110 + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,63.5 + parent: 2 + - uid: 5679 components: - - rot: 1.5707963267948966 rad - pos: 6.5,29.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,42.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,36.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: 47.5,61.5 + parent: 2 - proto: BenchSteelMiddle entities: - - uid: 111 + - uid: 4408 components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 112 + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - uid: 4876 components: - - pos: 1.5,12.5 - parent: 1 - type: Transform - - uid: 113 + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 5680 components: - - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,42.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,63.5 + parent: 2 - proto: BenchSteelRight entities: - - uid: 114 + - uid: 4402 components: - - pos: -12.5,5.5 - parent: 1 - type: Transform - - uid: 115 + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - uid: 4877 components: - - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 116 + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 4878 components: - - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 117 + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,24.5 + parent: 2 + - uid: 4880 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 118 + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,24.5 + parent: 2 + - uid: 5343 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - uid: 119 + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,54.5 + parent: 2 + - uid: 5470 components: - - pos: 2.5,12.5 - parent: 1 - type: Transform - - uid: 120 + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,68.5 + parent: 2 + - uid: 5677 components: - - rot: 1.5707963267948966 rad - pos: 6.5,31.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,63.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,42.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,37.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: 48.5,61.5 + parent: 2 +- proto: BenchSteelWhiteLeft + entities: + - uid: 4771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,24.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: 4.5,44.5 + parent: 2 +- proto: BenchSteelWhiteMiddle + entities: + - uid: 4770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: 5.5,44.5 + parent: 2 +- proto: BenchSteelWhiteRight + entities: + - uid: 4769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + pos: 6.5,44.5 + parent: 2 - proto: BiomassReclaimer entities: - - uid: 121 + - uid: 4690 components: - - pos: -8.5,1.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,37.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 5103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,45.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,45.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,49.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,75.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,76.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5482 + components: + - type: Transform + pos: 46.5,76.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5483 + components: + - type: Transform + pos: 46.5,75.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5484 + components: + - type: Transform + pos: 48.5,73.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5485 + components: + - type: Transform + pos: 48.5,72.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5486 + components: + - type: Transform + pos: 38.5,73.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 + - uid: 5487 + components: + - type: Transform + pos: 38.5,72.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6541 - proto: BluespaceBeaker entities: - - uid: 123 + - uid: 4517 components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4507 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 124 + - uid: 4520 components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4507 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 125 + - uid: 4521 components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4507 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 2434 + - uid: 4522 components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics - - uid: 2435 + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4523 components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics - - uid: 2436 - components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics - - uid: 2437 - components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics - - uid: 2519 - components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics - - uid: 2521 - components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics -- proto: BoxBeaker + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BorgCharger entities: - - uid: 126 + - uid: 6499 components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 127 + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 6506 components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 128 + - type: Transform + pos: 41.5,40.5 + parent: 2 + - uid: 6507 components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage + - type: Transform + pos: 9.5,44.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + pos: 51.5,65.5 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 4683 + components: + - type: Transform + pos: 13.353763,40.644436 + parent: 2 - proto: BoxBottle entities: - - uid: 129 + - uid: 4511 components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4507 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 130 + - uid: 4513 components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4507 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 131 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxFlare +- proto: BoxEncryptionKeyPassenger entities: - - uid: 2431 + - uid: 5367 components: - - pos: 11.672989,10.511342 - parent: 1 - type: Transform - - uid: 2432 - components: - - pos: 11.672989,10.511342 - parent: 1 - type: Transform - - uid: 2433 - components: - - pos: 11.672989,10.511342 - parent: 1 - type: Transform - - uid: 2449 - components: - - pos: 11.672989,10.511342 - parent: 1 - type: Transform + - type: Transform + pos: 49.6981,68.45863 + parent: 2 - proto: BoxFlashbang entities: - - uid: 2430 + - uid: 5089 components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform - - uid: 2505 + - type: Transform + pos: 34.322414,48.469593 + parent: 2 + - uid: 5090 components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform - - uid: 2515 - components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform + - type: Transform + pos: 34.666164,48.469593 + parent: 2 - proto: BoxFolderBlack entities: - - uid: 147 + - uid: 4327 components: - - pos: -13.687119,-3.4444265 - parent: 1 - type: Transform + - type: Transform + pos: 49.348274,40.651863 + parent: 2 + - uid: 5422 + components: + - type: Transform + pos: 41.634377,74.87787 + parent: 2 - proto: BoxFolderBlue entities: - - uid: 148 + - uid: 5421 components: - - pos: -13.562119,-3.6163015 - parent: 1 - type: Transform + - type: Transform + pos: 41.634377,75.31537 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 5155 + components: + - type: Transform + pos: 49.312183,47.88976 + parent: 2 + - uid: 5420 + components: + - type: Transform + pos: 41.36875,75.12787 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 4326 + components: + - type: Transform + pos: 49.692024,40.76124 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: 45.55625,75.45599 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 4447 + components: + - type: Transform + pos: 22.713396,46.747772 + parent: 2 + - uid: 4974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.432704,47.434692 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: 45.384377,75.65912 + parent: 2 - proto: BoxHandcuff entities: - - uid: 146 + - uid: 4198 components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform - - uid: 2494 + - type: Transform + pos: 50.384254,34.533558 + parent: 2 + - uid: 5094 components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform - - uid: 2501 - components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform + - type: Transform + pos: 34.46481,48.344593 + parent: 2 - proto: BoxInflatable entities: - - uid: 152 + - uid: 4001 components: - - pos: -13.603695,8.84306 - parent: 1 - type: Transform - - uid: 153 + - type: Transform + pos: 15.364505,14.966022 + parent: 2 +- proto: BoxMagazinePistolSubMachineGun + entities: + - uid: 5074 components: - - pos: -13.447445,8.733685 - parent: 1 - type: Transform - - uid: 154 + - type: Transform + pos: 32.489964,47.57308 + parent: 2 + - uid: 5075 components: - - pos: -16.105898,7.8279896 - parent: 1 - type: Transform - - uid: 155 + - type: Transform + pos: 32.489964,47.463703 + parent: 2 + - uid: 5076 components: - - pos: -16.105898,7.7342396 - parent: 1 - type: Transform -- proto: BoxMagazinePistolSubMachineGunTopMounted + - type: Transform + pos: 32.489964,47.32308 + parent: 2 +- proto: BoxMagazineRifle + entities: + - uid: 4171 + components: + - type: Transform + pos: 32.511345,50.624866 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: 32.511345,50.531116 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: 32.511345,50.42174 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: 32.50843,51.63325 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: 32.50843,51.5395 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: 32.50843,51.430126 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 4755 + components: + - type: Transform + pos: -2.6807842,38.594917 + parent: 2 +- proto: BoxMRE + entities: + - uid: 4264 + components: + - type: Transform + pos: 39.508175,40.59003 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: 35.49255,40.59003 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: 31.49255,40.605656 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: 29.476925,32.605656 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: 33.476925,32.59003 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: 37.476925,32.59003 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: 2.483675,2.6393766 + parent: 6565 +- proto: BoxZiptie + entities: + - uid: 4200 + components: + - type: Transform + pos: 50.603004,34.533558 + parent: 2 +- proto: BrigTimer + entities: + - uid: 4222 + components: + - type: Transform + pos: 29.5,38.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 +- proto: BruteAutoInjector + entities: + - uid: 4636 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4637 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4638 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4639 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4640 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Bucket + entities: + - uid: 4555 + components: + - type: Transform + pos: 37.768063,56.56517 + parent: 2 +- proto: BurnAutoInjector + entities: + - uid: 4621 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4622 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4623 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4628 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4634 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 143 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 36.5,58.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: 69.5,45.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: 28.5,45.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 26.5,44.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 26.5,45.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 26.5,46.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 26.5,47.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 31.5,43.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: 33.5,43.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: 37.5,43.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: 39.5,43.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 43.5,45.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 43.5,44.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 43.5,43.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: 42.5,43.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: 41.5,43.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: 55.5,43.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: 56.5,43.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: 57.5,43.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: 46.5,43.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: 47.5,43.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 49.5,43.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 51.5,43.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 52.5,43.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: 53.5,43.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: 69.5,43.5 + parent: 2 + - uid: 3283 + components: + - type: Transform + pos: 68.5,43.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + pos: 67.5,43.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: 63.5,43.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: 62.5,43.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: 70.5,43.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: 72.5,43.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: 73.5,43.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: 74.5,43.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: 75.5,43.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: 76.5,43.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: 70.5,42.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: 70.5,41.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: 70.5,40.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: 68.5,41.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: 68.5,40.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: 68.5,45.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: 68.5,46.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: 70.5,46.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: 76.5,44.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: 77.5,44.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: 76.5,42.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: 77.5,42.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: 78.5,42.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 52.5,47.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: 54.5,47.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: 55.5,47.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: 55.5,48.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: 55.5,49.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: 55.5,50.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: 55.5,51.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: 54.5,50.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 55.5,46.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 47.5,47.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: 48.5,47.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: 50.5,46.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: 50.5,45.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: 50.5,49.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: 50.5,50.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 50.5,51.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 49.5,50.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 47.5,51.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: 43.5,51.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 42.5,51.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: 45.5,50.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: 45.5,49.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 45.5,48.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 45.5,47.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: 38.5,62.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: 40.5,63.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 40.5,64.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: 41.5,64.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: 42.5,64.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: 43.5,64.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: 44.5,64.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: 45.5,64.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: 46.5,64.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: 47.5,64.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: 48.5,64.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: 49.5,64.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: 50.5,64.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: 51.5,64.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: 40.5,49.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: 40.5,47.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: 40.5,60.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: 40.5,59.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: 40.5,58.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: 40.5,57.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: 40.5,56.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: 40.5,55.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: 40.5,54.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: 40.5,52.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: 35.5,51.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: 35.5,49.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: 36.5,49.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: 37.5,49.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: 35.5,48.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: 35.5,47.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: 34.5,49.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: 31.5,52.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: 31.5,51.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: 31.5,49.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: 31.5,48.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: 31.5,47.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: 32.5,49.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: 30.5,49.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: 55.5,69.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: 55.5,68.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: 55.5,67.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: 54.5,67.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: 53.5,67.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: 52.5,67.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: 51.5,67.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: 50.5,67.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: 50.5,66.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: 51.5,68.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: 51.5,69.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: 55.5,66.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: 46.5,74.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: 46.5,73.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: 46.5,72.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: 46.5,71.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: 46.5,70.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: 46.5,69.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: 46.5,68.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: 46.5,67.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: 46.5,66.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: 45.5,73.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: 44.5,73.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: 43.5,73.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: 43.5,74.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + pos: 43.5,75.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: 43.5,76.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: 42.5,73.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: 41.5,73.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 40.5,73.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + pos: 40.5,72.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + pos: 41.5,69.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: 42.5,69.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: 43.5,69.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: 43.5,68.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: 43.5,67.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: 41.5,68.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: 40.5,68.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: 39.5,68.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: 39.5,69.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: 52.5,62.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: 52.5,61.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: 52.5,60.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 51.5,60.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 50.5,60.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: 49.5,60.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: 48.5,60.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: 47.5,60.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: 46.5,60.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: 45.5,60.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: 44.5,60.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: 53.5,60.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: 52.5,55.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: 52.5,56.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: 52.5,57.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: 51.5,55.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: 53.5,55.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: 47.5,58.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: 47.5,57.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: 47.5,56.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: 47.5,55.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: 48.5,55.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: 46.5,55.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: 45.5,55.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: 44.5,55.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: 44.5,56.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: 44.5,57.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: 49.5,55.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: 47.5,54.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: 19.5,42.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: 21.5,52.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: 21.5,50.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: 22.5,51.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: 23.5,51.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: 24.5,51.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: 25.5,51.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: 26.5,51.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: 27.5,51.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: 21.5,49.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: 21.5,48.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: 21.5,47.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: 20.5,47.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: 19.5,47.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: 18.5,47.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: 20.5,51.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: 19.5,51.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: 18.5,51.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: 19.5,52.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: 19.5,53.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: 19.5,54.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: 19.5,55.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: 19.5,56.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: 23.5,52.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 23.5,53.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: 23.5,54.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: 23.5,55.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: 23.5,56.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: 22.5,47.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: 23.5,47.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: 24.5,47.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: 14.5,49.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: 14.5,48.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: 14.5,47.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: 15.5,47.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: 16.5,47.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + pos: 13.5,49.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: 13.5,50.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: 14.5,51.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: 15.5,51.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: 16.5,51.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: 13.5,51.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: 20.5,36.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: 21.5,36.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: 20.5,40.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: 22.5,34.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: 4.5,43.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: 6.5,43.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: 7.5,43.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: 2.5,43.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: 0.5,43.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: -0.5,43.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: -1.5,43.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: 8.5,44.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: 17.5,43.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 16.5,43.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: 15.5,43.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: 13.5,44.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: 12.5,43.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + pos: -1.5,38.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: -1.5,37.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: -1.5,36.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: -0.5,33.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: 20.5,25.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: 34.5,30.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: 46.5,28.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: 49.5,26.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: 50.5,26.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: 48.5,30.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: 42.5,36.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: 42.5,37.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: 42.5,38.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: 42.5,39.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: 36.5,37.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: 30.5,36.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: 30.5,37.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: 30.5,38.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: 38.5,37.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: 38.5,39.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: 34.5,38.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: 34.5,39.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: 39.5,36.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: 40.5,36.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: 48.5,39.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: 47.5,39.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: 46.5,39.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + pos: 45.5,39.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: 51.5,40.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 3793 + components: + - type: Transform + pos: 8.5,47.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: -0.5,28.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 8.5,51.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 9.5,47.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: 7.5,47.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: 6.5,47.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: 3.5,47.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 2.5,47.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: 1.5,47.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: -0.5,49.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: 10.5,47.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: 11.5,47.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: 58.5,37.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: 57.5,39.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: 54.5,39.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: 53.5,39.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + pos: 53.5,33.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: 54.5,28.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + pos: 40.5,17.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: 36.5,57.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: 33.5,65.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + pos: 35.5,65.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: 34.5,65.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: 36.5,65.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: 36.5,64.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: 36.5,63.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: 36.5,62.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: 36.5,61.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: 36.5,60.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: 37.5,60.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + pos: 37.5,59.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: 37.5,56.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: 37.5,55.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 36.5,56.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: 35.5,56.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 34.5,56.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: 34.5,55.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: 34.5,54.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: 35.5,61.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: 36.5,66.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + pos: 36.5,67.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: 36.5,68.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: 37.5,68.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: 37.5,69.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: 35.5,68.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: 42.5,68.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: 41.5,68.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + pos: 40.5,68.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: 39.5,68.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: 39.5,69.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: 39.5,70.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: -5.5,25.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 6565 + - uid: 6600 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 6565 + - uid: 6601 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 6565 + - uid: 6602 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 6565 + - uid: 6603 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 6565 + - uid: 6604 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 6565 + - uid: 6605 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 6565 + - uid: 6606 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 6565 + - uid: 6607 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 6565 + - uid: 6608 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 6565 + - uid: 6609 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 6565 + - uid: 6610 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 6565 + - uid: 6611 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 6565 + - uid: 6612 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 6565 + - uid: 6613 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 6565 + - uid: 6614 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 6565 + - uid: 6615 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 6565 + - uid: 6616 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 6565 + - uid: 6617 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 6565 + - uid: 6618 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 6565 + - uid: 6619 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 6565 + - uid: 6620 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 6565 + - uid: 6621 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 6565 + - uid: 6622 + components: + - type: Transform + pos: -2.5,7.5 + parent: 6565 + - uid: 6623 + components: + - type: Transform + pos: -1.5,7.5 + parent: 6565 + - uid: 6624 + components: + - type: Transform + pos: -0.5,7.5 + parent: 6565 + - uid: 6625 + components: + - type: Transform + pos: 0.5,7.5 + parent: 6565 + - uid: 6626 + components: + - type: Transform + pos: 0.5,6.5 + parent: 6565 + - uid: 6627 + components: + - type: Transform + pos: 0.5,5.5 + parent: 6565 + - uid: 6628 + components: + - type: Transform + pos: 0.5,4.5 + parent: 6565 + - uid: 6629 + components: + - type: Transform + pos: 0.5,3.5 + parent: 6565 + - uid: 6630 + components: + - type: Transform + pos: 0.5,2.5 + parent: 6565 + - uid: 6631 + components: + - type: Transform + pos: 0.5,1.5 + parent: 6565 + - uid: 6632 + components: + - type: Transform + pos: 0.5,0.5 + parent: 6565 + - uid: 6633 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 6565 + - uid: 6634 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 6565 + - uid: 6635 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 6565 + - uid: 6636 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 6565 + - uid: 6637 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 6565 + - uid: 6638 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 6565 + - uid: 6639 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 6565 + - uid: 6640 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 6565 + - uid: 6641 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 6565 + - uid: 6642 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 6565 + - uid: 6643 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 6565 + - uid: 6644 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 6565 + - uid: 6645 + components: + - type: Transform + pos: 1.5,7.5 + parent: 6565 + - uid: 6646 + components: + - type: Transform + pos: 2.5,7.5 + parent: 6565 + - uid: 6647 + components: + - type: Transform + pos: 3.5,7.5 + parent: 6565 + - uid: 6648 + components: + - type: Transform + pos: 5.5,0.5 + parent: 6565 + - uid: 6649 + components: + - type: Transform + pos: 5.5,1.5 + parent: 6565 + - uid: 6650 + components: + - type: Transform + pos: 5.5,2.5 + parent: 6565 + - uid: 6651 + components: + - type: Transform + pos: -4.5,0.5 + parent: 6565 + - uid: 6652 + components: + - type: Transform + pos: -4.5,1.5 + parent: 6565 + - uid: 6653 + components: + - type: Transform + pos: -4.5,2.5 + parent: 6565 + - uid: 6654 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 6565 + - uid: 6655 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 6565 + - uid: 6656 + components: + - type: Transform + pos: -0.5,3.5 + parent: 6565 + - uid: 6657 + components: + - type: Transform + pos: -1.5,3.5 + parent: 6565 + - uid: 6658 + components: + - type: Transform + pos: -2.5,3.5 + parent: 6565 + - uid: 6659 + components: + - type: Transform + pos: 1.5,3.5 + parent: 6565 + - uid: 6660 + components: + - type: Transform + pos: 2.5,3.5 + parent: 6565 + - uid: 6661 + components: + - type: Transform + pos: 3.5,3.5 + parent: 6565 + - uid: 6662 + components: + - type: Transform + pos: 0.5,8.5 + parent: 6565 + - uid: 6663 + components: + - type: Transform + pos: 0.5,9.5 + parent: 6565 + - uid: 7085 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + pos: -6.5,42.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + pos: -7.5,42.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 +- proto: CableHV entities: - uid: 156 components: - - pos: 14.503235,6.6935053 - parent: 1 - type: Transform - - uid: 157 + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 898 components: - - pos: 14.51886,6.5841303 - parent: 1 - type: Transform - - uid: 158 + - type: Transform + pos: 40.5,43.5 + parent: 2 + - uid: 1181 components: - - pos: 14.503235,6.3966303 - parent: 1 - type: Transform -- proto: BoxMagazineRifleHighVelocity - entities: - - uid: 159 + - type: Transform + pos: 46.5,66.5 + parent: 2 + - uid: 2358 components: - - pos: 14.503235,6.6778803 - parent: 1 - type: Transform - - uid: 160 + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 2363 components: - - pos: 14.503235,6.5372553 - parent: 1 - type: Transform - - uid: 161 + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 2366 components: - - pos: 14.503235,6.4122553 - parent: 1 - type: Transform -- proto: BoxMouthSwab - entities: - - uid: 162 + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 2367 components: - - pos: -2.836203,5.617304 - parent: 1 - type: Transform - - uid: 163 + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 2368 components: - - pos: -20.631887,5.7038546 - parent: 1 - type: Transform - - uid: 164 + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 2369 components: - - pos: -20.522512,5.6257296 - parent: 1 - type: Transform -- proto: BoxMRE - entities: - - uid: 165 + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 2370 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 166 + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 2371 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 167 + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 2372 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 168 + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 2373 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 169 + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 2374 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 170 + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 2375 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 171 + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 2376 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 172 + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 2377 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 173 + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 2378 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 174 + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 2379 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 175 + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 2380 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 176 + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 2381 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 177 + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 2382 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 178 + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 2383 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 179 + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 2390 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 180 + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 2391 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 181 + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 2392 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 182 + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 2393 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 183 + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 2394 components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 1670 + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 2395 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2426 + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 2396 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2429 + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 2397 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2496 + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 2399 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2497 + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 2400 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2498 + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 2401 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2504 + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 2402 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2512 + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 2403 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2514 + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 2404 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2518 + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 2405 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2520 + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 2406 components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform -- proto: BoxNitrileGloves - entities: - - uid: 185 + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 2407 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 186 + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 2408 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 187 + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 2409 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxSyringe - entities: - - uid: 188 + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 2410 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 189 + - type: Transform + pos: 31.5,29.5 + parent: 2 + - uid: 2411 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 190 + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 2412 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxZiptie - entities: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 - uid: 2425 components: - - pos: 11.192221,8.68534 - parent: 1 - type: Transform + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 40.5,17.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 20.5,25.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 26.5,44.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: 26.5,45.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 26.5,46.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 26.5,47.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 26.5,48.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 26.5,49.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: 26.5,50.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 26.5,51.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 - uid: 2499 components: - - pos: 11.192221,8.68534 - parent: 1 - type: Transform + - type: Transform + pos: 26.5,42.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 25.5,51.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 24.5,51.5 + parent: 2 - uid: 2502 components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform -- proto: CableApcExtension - entities: - - uid: 220 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 221 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 222 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - - uid: 223 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 224 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 225 - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 226 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 227 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 228 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 229 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 230 - components: - - pos: 9.5,3.5 - parent: 1 - type: Transform - - uid: 231 - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 232 - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform - - uid: 233 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform - - uid: 234 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 235 - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 236 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 237 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 238 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 239 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 240 - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform - - uid: 241 - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 242 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 243 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 244 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 245 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 246 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 247 - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 248 - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 249 - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform - - uid: 250 - components: - - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 251 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 252 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 253 - components: - - pos: 7.5,10.5 - parent: 1 - type: Transform - - uid: 254 - components: - - pos: 7.5,11.5 - parent: 1 - type: Transform - - uid: 255 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform - - uid: 256 - components: - - pos: 7.5,13.5 - parent: 1 - type: Transform - - uid: 257 - components: - - pos: 7.5,14.5 - parent: 1 - type: Transform - - uid: 258 - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform - - uid: 259 - components: - - pos: 7.5,16.5 - parent: 1 - type: Transform - - uid: 260 - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform - - uid: 261 - components: - - pos: 7.5,18.5 - parent: 1 - type: Transform - - uid: 262 - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform - - uid: 263 - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform - - uid: 264 - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform - - uid: 265 - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform - - uid: 266 - components: - - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 267 - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform - - uid: 268 - components: - - pos: 7.5,25.5 - parent: 1 - type: Transform - - uid: 269 - components: - - pos: 7.5,26.5 - parent: 1 - type: Transform - - uid: 270 - components: - - pos: 7.5,27.5 - parent: 1 - type: Transform - - uid: 271 - components: - - pos: 7.5,28.5 - parent: 1 - type: Transform - - uid: 272 - components: - - pos: 7.5,29.5 - parent: 1 - type: Transform - - uid: 273 - components: - - pos: 7.5,30.5 - parent: 1 - type: Transform - - uid: 274 - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform - - uid: 275 - components: - - pos: 7.5,32.5 - parent: 1 - type: Transform - - uid: 276 - components: - - pos: 7.5,33.5 - parent: 1 - type: Transform - - uid: 277 - components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - - uid: 278 - components: - - pos: 9.5,7.5 - parent: 1 - type: Transform - - uid: 279 - components: - - pos: 10.5,7.5 - parent: 1 - type: Transform - - uid: 280 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 281 - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform - - uid: 282 - components: - - pos: 13.5,7.5 - parent: 1 - type: Transform - - uid: 283 - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform - - uid: 284 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 285 - components: - - pos: 10.5,10.5 - parent: 1 - type: Transform - - uid: 286 - components: - - pos: 10.5,11.5 - parent: 1 - type: Transform - - uid: 287 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 288 - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 289 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - uid: 290 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 291 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform - - uid: 292 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 293 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 294 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 295 - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 296 - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 297 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 298 - components: - - pos: -7.5,8.5 - parent: 1 - type: Transform - - uid: 299 - components: - - pos: -7.5,7.5 - parent: 1 - type: Transform - - uid: 300 - components: - - pos: -7.5,6.5 - parent: 1 - type: Transform - - uid: 301 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - uid: 302 - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform - - uid: 303 - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform - - uid: 304 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform - - uid: 305 - components: - - pos: -4.5,4.5 - parent: 1 - type: Transform - - uid: 306 - components: - - pos: -3.5,4.5 - parent: 1 - type: Transform - - uid: 307 - components: - - pos: -8.5,0.5 - parent: 1 - type: Transform - - uid: 308 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 309 - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 310 - components: - - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 311 - components: - - pos: -7.5,0.5 - parent: 1 - type: Transform - - uid: 312 - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 313 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 314 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 315 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 316 - components: - - pos: -6.5,0.5 - parent: 1 - type: Transform - - uid: 317 - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 318 - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - uid: 319 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 320 - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 321 - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform - - uid: 322 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 323 - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform - - uid: 324 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - - uid: 325 - components: - - pos: -6.5,8.5 - parent: 1 - type: Transform - - uid: 326 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 327 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 328 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 329 - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 330 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 331 - components: - - pos: -8.5,6.5 - parent: 1 - type: Transform - - uid: 332 - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform - - uid: 333 - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform - - uid: 334 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - uid: 335 - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 336 - components: - - pos: -12.5,4.5 - parent: 1 - type: Transform - - uid: 337 - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform - - uid: 338 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 339 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 340 - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform - - uid: 341 - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform - - uid: 342 - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 343 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 344 - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 345 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 346 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 347 - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - uid: 348 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 349 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 350 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 351 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform - - uid: 352 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 353 - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform - - uid: 354 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - uid: 355 - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform - - uid: 356 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 357 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - - uid: 358 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 359 - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform - - uid: 360 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - uid: 361 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 362 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - uid: 363 - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - - uid: 364 - components: - - pos: 10.5,6.5 - parent: 1 - type: Transform - - uid: 365 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 366 - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform - - uid: 367 - components: - - pos: 13.5,10.5 - parent: 1 - type: Transform - - uid: 368 - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - uid: 369 - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 370 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 371 - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 372 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - uid: 373 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 374 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 375 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 376 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 377 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 378 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 379 - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 380 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 381 - components: - - pos: -12.5,9.5 - parent: 1 - type: Transform - - uid: 382 - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform - - uid: 383 - components: - - pos: -13.5,9.5 - parent: 1 - type: Transform - - uid: 384 - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - uid: 385 - components: - - pos: -16.5,9.5 - parent: 1 - type: Transform - - uid: 386 - components: - - pos: -16.5,8.5 - parent: 1 - type: Transform - - uid: 387 - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform - - uid: 388 - components: - - pos: -17.5,9.5 - parent: 1 - type: Transform - - uid: 389 - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform - - uid: 390 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 391 - components: - - pos: -12.5,8.5 - parent: 1 - type: Transform - - uid: 392 - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 393 - components: - - pos: -10.5,13.5 - parent: 1 - type: Transform - - uid: 394 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 395 - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform - - uid: 396 - components: - - pos: 5.5,14.5 - parent: 1 - type: Transform - - uid: 397 - components: - - pos: -6.5,14.5 - parent: 1 - type: Transform - - uid: 398 - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform - - uid: 399 - components: - - pos: 4.5,14.5 - parent: 1 - type: Transform - - uid: 400 - components: - - pos: 3.5,14.5 - parent: 1 - type: Transform - - uid: 401 - components: - - pos: 2.5,14.5 - parent: 1 - type: Transform - - uid: 402 - components: - - pos: 1.5,14.5 - parent: 1 - type: Transform - - uid: 403 - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform - - uid: 404 - components: - - pos: -0.5,14.5 - parent: 1 - type: Transform - - uid: 405 - components: - - pos: -1.5,14.5 - parent: 1 - type: Transform - - uid: 406 - components: - - pos: -2.5,14.5 - parent: 1 - type: Transform - - uid: 407 - components: - - pos: -3.5,14.5 - parent: 1 - type: Transform - - uid: 408 - components: - - pos: -4.5,14.5 - parent: 1 - type: Transform - - uid: 409 - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform - - uid: 410 - components: - - pos: -4.5,16.5 - parent: 1 - type: Transform - - uid: 411 - components: - - pos: -4.5,17.5 - parent: 1 - type: Transform - - uid: 412 - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform - - uid: 413 - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform - - uid: 414 - components: - - pos: -3.5,18.5 - parent: 1 - type: Transform - - uid: 415 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 416 - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - uid: 417 - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - uid: 418 - components: - - pos: -0.5,15.5 - parent: 1 - type: Transform - - uid: 419 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - uid: 420 - components: - - pos: -0.5,17.5 - parent: 1 - type: Transform - - uid: 421 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - uid: 422 - components: - - pos: -0.5,19.5 - parent: 1 - type: Transform - - uid: 423 - components: - - pos: -0.5,20.5 - parent: 1 - type: Transform - - uid: 424 - components: - - pos: -1.5,20.5 - parent: 1 - type: Transform - - uid: 425 - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - uid: 426 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 427 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - uid: 428 - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform - - uid: 429 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - uid: 430 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform - - uid: 431 - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform - - uid: 432 - components: - - pos: 2.5,19.5 - parent: 1 - type: Transform - - uid: 433 - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform - - uid: 434 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 435 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - uid: 436 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 437 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - uid: 438 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 439 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 440 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform - - uid: 441 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - uid: 442 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 443 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 444 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - uid: 445 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 446 - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform - - uid: 447 - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 448 - components: - - pos: -7.5,14.5 - parent: 1 - type: Transform - - uid: 449 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 450 - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform - - uid: 451 - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 452 - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform - - uid: 453 - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform - - uid: 454 - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform - - uid: 455 - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform - - uid: 456 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - uid: 457 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform - - uid: 458 - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform - - uid: 459 - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform - - uid: 460 - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform - - uid: 461 - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - uid: 462 - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform - - uid: 463 - components: - - pos: -21.5,4.5 - parent: 1 - type: Transform - - uid: 464 - components: - - pos: -22.5,4.5 - parent: 1 - type: Transform - - uid: 465 - components: - - pos: -22.5,3.5 - parent: 1 - type: Transform - - uid: 466 - components: - - pos: -22.5,2.5 - parent: 1 - type: Transform - - uid: 467 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform - - uid: 468 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 469 - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform - - uid: 470 - components: - - pos: -20.5,3.5 - parent: 1 - type: Transform - - uid: 471 - components: - - pos: -20.5,2.5 - parent: 1 - type: Transform - - uid: 472 - components: - - pos: -20.5,1.5 - parent: 1 - type: Transform - - uid: 473 - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 474 - components: - - pos: -18.5,3.5 - parent: 1 - type: Transform - - uid: 475 - components: - - pos: -18.5,2.5 - parent: 1 - type: Transform - - uid: 476 - components: - - pos: -18.5,1.5 - parent: 1 - type: Transform - - uid: 477 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 478 - components: - - pos: -16.5,3.5 - parent: 1 - type: Transform - - uid: 479 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 480 - components: - - pos: -16.5,1.5 - parent: 1 - type: Transform - - uid: 481 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 482 - components: - - pos: 9.5,14.5 - parent: 1 - type: Transform - - uid: 483 - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 484 - components: - - pos: 11.5,14.5 - parent: 1 - type: Transform - - uid: 485 - components: - - pos: 12.5,14.5 - parent: 1 - type: Transform - - uid: 486 - components: - - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 487 - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - uid: 488 - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - uid: 489 - components: - - pos: 15.5,15.5 - parent: 1 - type: Transform - - uid: 490 - components: - - pos: 16.5,15.5 - parent: 1 - type: Transform - - uid: 491 - components: - - pos: 16.5,14.5 - parent: 1 - type: Transform - - uid: 492 - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform - - uid: 493 - components: - - pos: 16.5,12.5 - parent: 1 - type: Transform - - uid: 494 - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform - - uid: 495 - components: - - pos: 16.5,16.5 - parent: 1 - type: Transform - - uid: 496 - components: - - pos: 16.5,17.5 - parent: 1 - type: Transform - - uid: 497 - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform - - uid: 498 - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform - - uid: 499 - components: - - pos: 10.5,16.5 - parent: 1 - type: Transform - - uid: 500 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 501 - components: - - pos: 13.5,16.5 - parent: 1 - type: Transform - - uid: 502 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 503 - components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform - - uid: 504 - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform - - uid: 505 - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform - - uid: 506 - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform - - uid: 507 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 508 - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 509 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 510 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 511 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 512 - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - - uid: 513 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 514 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 515 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 516 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 517 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 518 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 519 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 520 - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 521 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 522 - components: - - pos: -13.5,-4.5 - parent: 1 - type: Transform - - uid: 523 - components: - - pos: -16.5,11.5 - parent: 1 - type: Transform - - uid: 524 - components: - - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 525 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform -- proto: CableApcStack - entities: - - uid: 526 - components: - - pos: -11.461973,7.4275074 - parent: 1 - type: Transform - - uid: 527 - components: - - pos: -11.461973,7.4275074 - parent: 1 - type: Transform -- proto: CableHV - entities: - - uid: 528 - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform - - uid: 529 - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform - - uid: 530 - components: - - pos: -13.5,11.5 - parent: 1 - type: Transform - - uid: 531 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - uid: 532 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 533 - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 534 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 535 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 536 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 537 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 538 - components: - - pos: -9.5,11.5 - parent: 1 - type: Transform - - uid: 539 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 540 - components: - - pos: -9.5,13.5 - parent: 1 - type: Transform - - uid: 541 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 542 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 543 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - uid: 544 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 545 - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 546 - components: - - pos: -7.5,11.5 - parent: 1 - type: Transform - - uid: 547 - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 548 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 549 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 550 - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 551 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 552 - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 553 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 554 - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 555 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 556 - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 557 - components: - - pos: 3.5,11.5 - parent: 1 - type: Transform - - uid: 558 - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 559 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 560 - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 561 - components: - - pos: 7.5,11.5 - parent: 1 - type: Transform - - uid: 562 - components: - - pos: 7.5,10.5 - parent: 1 - type: Transform - - uid: 563 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 564 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 565 - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform - - uid: 566 - components: - - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 567 - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 568 - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 569 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 570 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 571 - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 572 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 573 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 574 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 575 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 576 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform -- proto: CableHVStack - entities: - - uid: 577 - components: - - pos: -11.461973,7.4431324 - parent: 1 - type: Transform - - uid: 578 - components: - - pos: -11.461973,7.4431324 - parent: 1 - type: Transform + - type: Transform + pos: 23.5,51.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 22.5,51.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 20.5,51.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 19.5,51.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 19.5,50.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 19.5,49.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: 19.5,48.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: 19.5,47.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 18.5,47.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 17.5,47.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 16.5,47.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 15.5,47.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 14.5,47.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 12.5,47.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 11.5,47.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: 10.5,47.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: 9.5,47.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 31.5,43.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 33.5,43.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 37.5,43.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 39.5,43.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 40.5,44.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 40.5,47.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 40.5,49.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 40.5,52.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 40.5,54.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 40.5,55.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 40.5,56.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 40.5,57.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 40.5,58.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 40.5,59.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 40.5,60.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 40.5,63.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 40.5,64.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 40.5,65.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 39.5,65.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 38.5,65.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 37.5,65.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 36.5,65.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 36.5,65.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 36.5,66.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 36.5,67.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 36.5,68.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: 36.5,69.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 41.5,64.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: 42.5,64.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 43.5,64.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: 44.5,64.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: 45.5,64.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 46.5,64.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 47.5,64.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 48.5,64.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 49.5,64.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 50.5,64.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 50.5,65.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: 50.5,66.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: 50.5,67.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 50.5,68.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 50.5,69.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 49.5,69.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 55.5,43.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 41.5,43.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 42.5,43.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 43.5,43.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: 46.5,43.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 47.5,43.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 49.5,43.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 51.5,43.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 52.5,43.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 53.5,43.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 57.5,39.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: 58.5,40.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 10.5,51.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: 46.5,65.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: 46.5,67.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: 46.5,68.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: 46.5,69.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: 46.5,70.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: 46.5,71.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: 46.5,72.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: 47.5,72.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 6565 + - uid: 6665 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 6565 + - uid: 6666 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 6565 + - uid: 6667 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 6565 + - uid: 6668 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 6565 + - uid: 6669 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 6565 + - uid: 6670 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 6565 + - uid: 6671 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 6565 + - uid: 6672 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 6565 - proto: CableMV entities: - - uid: 579 + - uid: 2625 components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 580 + - type: Transform + pos: 36.5,69.5 + parent: 2 + - uid: 2626 components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 581 + - type: Transform + pos: 36.5,68.5 + parent: 2 + - uid: 2627 components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 582 + - type: Transform + pos: 36.5,67.5 + parent: 2 + - uid: 2628 components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 583 + - type: Transform + pos: 36.5,66.5 + parent: 2 + - uid: 2629 components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 584 + - type: Transform + pos: 36.5,65.5 + parent: 2 + - uid: 2630 components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 585 + - type: Transform + pos: 37.5,65.5 + parent: 2 + - uid: 2631 components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 586 + - type: Transform + pos: 38.5,65.5 + parent: 2 + - uid: 2632 components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 587 + - type: Transform + pos: 39.5,65.5 + parent: 2 + - uid: 2633 components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- proto: CableMVStack - entities: - - uid: 588 + - type: Transform + pos: 40.5,65.5 + parent: 2 + - uid: 2634 components: - - pos: -11.461973,7.4431324 - parent: 1 - type: Transform - - uid: 589 + - type: Transform + pos: 40.5,64.5 + parent: 2 + - uid: 2635 components: - - pos: -11.461973,7.4431324 - parent: 1 - type: Transform + - type: Transform + pos: 41.5,64.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: 42.5,64.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: 43.5,64.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 44.5,64.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: 45.5,64.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: 46.5,64.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: 46.5,65.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: 46.5,66.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: 46.5,67.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: 46.5,68.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: 46.5,69.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: 46.5,70.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: 46.5,71.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: 46.5,72.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 46.5,73.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: 46.5,74.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: 45.5,72.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: 44.5,72.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: 43.5,72.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: 43.5,71.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: 43.5,70.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: 43.5,69.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: 42.5,69.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: 41.5,69.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: 49.5,69.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: 50.5,69.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: 50.5,68.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: 50.5,67.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: 51.5,67.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: 52.5,67.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: 53.5,67.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: 54.5,67.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: 55.5,67.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: 55.5,68.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: 55.5,69.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: 47.5,64.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: 48.5,64.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: 49.5,64.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: 50.5,64.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: 51.5,64.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: 51.5,63.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: 51.5,62.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: 51.5,61.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 51.5,60.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 52.5,62.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: 52.5,60.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: 52.5,59.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: 52.5,58.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: 52.5,57.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 52.5,56.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 52.5,55.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: 50.5,60.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: 49.5,60.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: 48.5,60.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: 48.5,59.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 48.5,58.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 47.5,58.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: 40.5,63.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: 40.5,60.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: 40.5,59.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: 40.5,58.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: 40.5,57.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: 40.5,56.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: 40.5,55.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 40.5,54.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 40.5,52.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 41.5,51.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: 42.5,51.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: 43.5,51.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: 47.5,51.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 40.5,49.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 39.5,49.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 38.5,49.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: 37.5,49.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: 36.5,49.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: 35.5,49.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: 35.5,51.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: 34.5,49.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: 33.5,49.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: 32.5,49.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: 31.5,49.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: 31.5,51.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: 31.5,52.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: 58.5,40.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: 57.5,39.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: 57.5,43.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: 55.5,43.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 55.5,44.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: 46.5,43.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: 53.5,43.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: 52.5,43.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: 51.5,43.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: 69.5,43.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: 56.5,43.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: 55.5,46.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: 55.5,47.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 54.5,47.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: 52.5,47.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: 50.5,44.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: 50.5,45.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: 50.5,46.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 48.5,47.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: 47.5,47.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: 62.5,43.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: 63.5,43.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: 67.5,43.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: 68.5,43.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: 69.5,45.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: 49.5,43.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: 47.5,43.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: 46.5,43.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: 43.5,43.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: 43.5,44.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: 43.5,45.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: 42.5,43.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: 41.5,43.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 40.5,43.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: 39.5,43.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: 37.5,43.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 33.5,43.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: 31.5,43.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: 26.5,42.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: 28.5,45.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 40.5,17.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: 46.5,28.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 42.5,36.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 41.5,36.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: 40.5,36.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 39.5,36.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 36.5,37.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 42.5,37.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 42.5,38.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 42.5,39.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 43.5,39.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 44.5,39.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: 45.5,39.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: 46.5,39.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: 47.5,39.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 48.5,39.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 34.5,30.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: 9.5,43.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: 10.5,43.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: 11.5,43.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: 12.5,43.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: 15.5,43.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: 16.5,43.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: 17.5,43.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: 7.5,43.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: 6.5,43.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: 4.5,43.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + pos: 2.5,43.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: 0.5,43.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: -0.5,43.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: -1.5,43.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: -1.5,40.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 3063 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 10.5,51.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: 9.5,47.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: 10.5,47.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: 11.5,47.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: 12.5,47.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: 14.5,47.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: 14.5,48.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 14.5,49.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 15.5,47.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 16.5,47.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 17.5,47.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: 18.5,47.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 19.5,47.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: 20.5,47.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: 21.5,47.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 21.5,48.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 21.5,49.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: 21.5,50.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 21.5,52.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 38.5,62.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 8.5,51.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 58.5,37.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: 35.5,65.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: 33.5,65.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + pos: 34.5,65.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 6565 + - uid: 6674 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 6565 + - uid: 6675 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 6565 + - uid: 6676 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 6565 + - uid: 6677 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 6565 + - uid: 6678 + components: + - type: Transform + pos: 0.5,6.5 + parent: 6565 + - uid: 6679 + components: + - type: Transform + pos: 0.5,7.5 + parent: 6565 + - uid: 6680 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 6565 + - uid: 6681 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 6565 + - uid: 6682 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 6565 + - uid: 6683 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 6565 + - uid: 6684 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 6565 + - uid: 6685 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 6565 + - uid: 6686 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 6565 + - uid: 6687 + components: + - type: Transform + pos: 0.5,0.5 + parent: 6565 + - uid: 6688 + components: + - type: Transform + pos: 0.5,1.5 + parent: 6565 + - uid: 6689 + components: + - type: Transform + pos: 0.5,2.5 + parent: 6565 + - uid: 6690 + components: + - type: Transform + pos: 0.5,3.5 + parent: 6565 + - uid: 6691 + components: + - type: Transform + pos: 0.5,4.5 + parent: 6565 + - uid: 6692 + components: + - type: Transform + pos: 0.5,5.5 + parent: 6565 + - uid: 6693 + components: + - type: Transform + pos: -0.5,7.5 + parent: 6565 + - uid: 6694 + components: + - type: Transform + pos: -1.5,7.5 + parent: 6565 + - uid: 6695 + components: + - type: Transform + pos: -2.5,7.5 + parent: 6565 - proto: CableTerminal entities: - - uid: 590 + - uid: 2387 components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 591 + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 2 + - uid: 2388 components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 592 + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 2389 components: - - pos: -11.5,12.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,17.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 6565 +- proto: CarbonDioxideCanister + entities: + - uid: 5861 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5991 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: Carpet + entities: + - uid: 4485 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 4759 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: 49.5,48.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: 48.5,48.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: 48.5,47.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: 50.5,51.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: 51.5,51.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 44.5,52.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: 45.5,52.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: 46.5,52.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: 45.5,48.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: 45.5,47.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: 55.5,51.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + pos: 56.5,51.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + pos: 53.5,48.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: 54.5,48.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: 54.5,47.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 55.5,48.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 55.5,47.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 4981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,51.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,50.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,47.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,47.5 + parent: 2 - proto: CarpetSBlue entities: - - uid: 593 + - uid: 4525 components: - - pos: 17.5,13.5 - parent: 1 - type: Transform - - uid: 594 + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 4572 components: - - pos: 17.5,12.5 - parent: 1 - type: Transform + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: 40.5,68.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: 39.5,68.5 + parent: 2 - proto: Catwalk entities: - - uid: 595 + - uid: 1022 components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 596 + - type: Transform + pos: 36.5,59.5 + parent: 2 + - uid: 1038 components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 597 + - type: Transform + pos: 36.5,58.5 + parent: 2 + - uid: 1897 components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 598 + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 3967 components: - - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 1 - type: Transform - - uid: 599 + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 2 + - uid: 3968 components: - - rot: 3.141592653589793 rad - pos: -8.5,8.5 - parent: 1 - type: Transform - - uid: 600 + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,15.5 + parent: 2 + - uid: 3969 components: - - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: 42.5,38.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: 30.5,36.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: 42.5,37.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: 42.5,39.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + pos: 7.5,43.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: 4.5,43.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: 0.5,43.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: -0.5,43.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: 18.5,43.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: 22.5,55.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: 22.5,54.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: 20.5,55.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: 20.5,54.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,67.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,67.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,67.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,67.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: 46.5,69.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + pos: 46.5,68.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + pos: 43.5,74.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: 43.5,73.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,44.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,42.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,46.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,46.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,40.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,40.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,43.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,43.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,43.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,43.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,43.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,43.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,43.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,43.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,43.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,43.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,43.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,43.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,43.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,43.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,43.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,43.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,43.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,43.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,43.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,43.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,43.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,43.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,43.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,43.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,44.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,43.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,43.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,43.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,43.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,43.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,43.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,43.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,43.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,43.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,45.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,46.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,47.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,39.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,38.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,37.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,35.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,34.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,33.5 + parent: 2 + - uid: 5604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,29.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,28.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,27.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,25.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,25.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,25.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,24.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,23.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,29.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,29.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,20.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,19.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,48.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,49.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,50.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,52.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,53.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,54.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,56.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,57.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,58.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,60.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,61.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,62.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,64.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,64.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,64.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,64.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,64.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,64.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,64.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,64.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,64.5 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,60.5 + parent: 2 + - uid: 5749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,60.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,60.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,60.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,60.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,60.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,66.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,65.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,64.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,62.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,60.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,59.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,62.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,62.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,62.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,66.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,65.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,64.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,68.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,68.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + pos: 54.5,39.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + pos: 53.5,39.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: 49.5,45.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - uid: 5822 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + pos: 55.5,33.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 5827 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + pos: 54.5,28.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 5841 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: 45.5,22.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 5874 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 5926 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 5941 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 5942 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 5956 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,47.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,48.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,49.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,47.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,47.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,46.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,46.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,46.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,46.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,48.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,49.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,50.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,50.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,46.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,47.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,42.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: -5.5,25.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 6565 + - uid: 6698 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 6565 + - uid: 6699 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 6565 + - uid: 6700 + components: + - type: Transform + pos: -5.5,2.5 + parent: 6565 + - uid: 6701 + components: + - type: Transform + pos: 6.5,2.5 + parent: 6565 + - uid: 7088 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + pos: -9.5,43.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 +- proto: CentcomPDA + entities: + - uid: 4544 + components: + - type: Transform + parent: 4529 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5250 + components: + - type: Transform + parent: 5233 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5267 + components: + - type: Transform + parent: 5251 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Chair entities: - - uid: 601 + - uid: 4319 components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 602 + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,40.5 + parent: 2 + - uid: 4320 components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - uid: 605 + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,39.5 + parent: 2 + - uid: 4729 components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 606 + - type: Transform + pos: 15.5,44.5 + parent: 2 + - uid: 4730 components: - - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 1 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 607 + - type: Transform + pos: 14.5,44.5 + parent: 2 + - uid: 5320 components: - - rot: 3.141592653589793 rad - pos: 11.5,16.5 - parent: 1 - type: Transform - - uid: 608 + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,57.5 + parent: 2 + - uid: 5327 components: - - rot: 3.141592653589793 rad - pos: 12.5,16.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,56.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,57.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,56.5 + parent: 2 - proto: ChairOfficeLight entities: - - uid: 609 + - uid: 4321 components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 610 + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,40.5 + parent: 2 + - uid: 4322 components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,40.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,39.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,25.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,26.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5212374,28.023928 + parent: 2 + - uid: 4714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,47.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.635829,48.122192 + parent: 2 + - uid: 5145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.60906,48.217884 + parent: 2 + - uid: 5146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.64031,48.20226 + parent: 2 + - uid: 5147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.54656,52.13976 + parent: 2 + - uid: 5415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,75.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,75.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.013897,72.62881 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: -0.9694505,7.546262 + parent: 6565 + - uid: 6703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 6565 +- proto: ChairPilotSeat + entities: + - uid: 6704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 6565 + - uid: 6705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 6565 + - uid: 6706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 6565 + - uid: 6707 + components: + - type: Transform + pos: 2.5,0.5 + parent: 6565 + - uid: 6708 + components: + - type: Transform + pos: 1.5,0.5 + parent: 6565 + - uid: 6709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 6565 + - uid: 6710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 6565 + - uid: 6711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 6565 + - uid: 6712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 6565 +- proto: ChairWood + entities: + - uid: 4992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,47.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.495033,48.092884 + parent: 2 + - uid: 5186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.526283,48.07726 + parent: 2 + - uid: 5187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.63566,52.07726 + parent: 2 - proto: chem_master entities: - - uid: 611 + - uid: 4499 components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: -0.5,4.5 + parent: 6565 - proto: ChemDispenser entities: - - uid: 612 + - uid: 4497 components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: -2.5,4.5 + parent: 6565 - proto: ChemistryHotplate entities: - - uid: 613 + - uid: 4501 components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - placedEntities: - - 2521 - - 2519 - - 2434 - - 2435 - - 2436 - - 2437 - type: SolutionHeater - - isPlaceable: False - type: PlaceableSurface - - uid: 614 + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 4753 components: - - pos: -2.5,-4.5 - parent: 1 - type: Transform + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: 44.5,54.5 + parent: 2 - proto: ChessBoard entities: - - uid: 615 + - uid: 4763 components: - - pos: -19.452597,1.411099 - parent: 1 - type: Transform -- proto: CigCartonBlack + - type: Transform + pos: -0.4745512,36.50293 + parent: 2 +- proto: CircuitImprinter entities: - - uid: 616 + - uid: 7080 components: - - pos: 11.556568,14.666323 - parent: 1 - type: Transform + - type: Transform + pos: 32.5,12.5 + parent: 2 - proto: CloningPod entities: - - uid: 617 + - uid: 4728 components: - - pos: -6.5,-0.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,42.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 5684 + components: + - type: Transform + pos: 24.5,39.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: 52.5,64.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + pos: 66.5,44.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 5683 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 + - uid: 6051 + components: + - type: Transform + pos: 52.5,63.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 - proto: ClosetJanitor entities: - - uid: 2 + - uid: 4577 components: - - pos: 10.5,4.5 - parent: 1 - type: Transform - - containers: + - type: Transform + pos: 33.5,55.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 11 - - 12 - - 6 - - 14 - - 9 - - 13 - - 10 - - 7 - - 4 - - 3 - - 8 - - 5 + - 4579 + - 4578 + - 4580 + - 4581 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - type: ContainerContainer - proto: ClosetL3Filled entities: - - uid: 618 + - uid: 4719 components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform - - uid: 619 + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 4720 components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform -- proto: ClosetL3JanitorFilled - entities: - - uid: 620 - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform + - type: Transform + pos: 23.5,34.5 + parent: 2 - proto: ClosetL3VirologyFilled entities: - - uid: 621 + - uid: 4758 components: - - pos: -19.5,3.5 - parent: 1 - type: Transform + - type: Transform + pos: -2.5,40.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 5759 + components: + - type: Transform + pos: 34.5,66.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: 56.5,38.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 4718 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 5799 + components: + - type: Transform + pos: 37.5,69.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 +- proto: ClosetWallBlue + entities: + - uid: 6715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 6565 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6717 + - 6720 + - 6719 + - 6716 + - 6718 + - uid: 6726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 6565 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6730 + - 6727 + - 6729 + - 6731 + - 6728 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 4028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,11.5 + parent: 2 - proto: ClosetWallFireFilledRandom entities: - - uid: 622 + - uid: 4027 components: - - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 1 - type: Transform - - uid: 623 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 624 + - uid: 370 components: - - pos: -15.512499,1.8656251 - parent: 1 - type: Transform - - uid: 625 + - type: Transform + parent: 231 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 553 components: - - pos: -15.512499,1.7250001 - parent: 1 - type: Transform -- proto: ClothingBeltChiefEngineerFilled + - type: Transform + parent: 371 + - type: Physics + canCollide: False + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null + - type: InsideEntityStorage + - uid: 956 + components: + - type: Transform + parent: 838 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4045 + components: + - type: Transform + parent: 1236 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4682 + components: + - type: Transform + pos: 14.525637,40.75381 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 18.626575,37.78443 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: 18.48595,37.65943 + parent: 2 +- proto: ClothingBeltMedicalRig entities: - - uid: 627 + - uid: 282 components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 639 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2479 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2484 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingBeltJanitorFilled - entities: - - uid: 4 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingBeltMedicalFilled - entities: - - uid: 650 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 660 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2459 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2468 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingBeltSecurityFilled - entities: - - uid: 670 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 683 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 688 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 703 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 706 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingEyesGlassesMeson - entities: - - uid: 637 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 640 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2475 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2488 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 675 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 685 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 693 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 231 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 697 components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 371 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 707 + - uid: 1133 components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 838 + - type: Physics + canCollide: False - type: InsideEntityStorage -- proto: ClothingEyesHudMedical + - uid: 2624 + components: + - type: Transform + parent: 1236 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltSecurityFilled entities: - - uid: 191 + - uid: 5439 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5437 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 192 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 193 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 194 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 195 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 651 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 661 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2452 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2461 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHandsGlovesColorOrange +- proto: ClothingBeltSecurityWebbing entities: - - uid: 5 + - uid: 4076 components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4075 + - type: Physics + canCollide: False - type: InsideEntityStorage -- proto: ClothingHandsGlovesColorYellow + - uid: 4088 + components: + - type: Transform + parent: 4087 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4103 + components: + - type: Transform + parent: 4102 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4158 + components: + - type: Transform + parent: 4156 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5447 + components: + - type: Transform + parent: 5437 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltSheathFilled entities: - - uid: 629 + - uid: 4533 components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4529 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 641 + - uid: 5236 components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5233 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 2471 + - uid: 5263 components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5251 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 2489 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 4867 components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics + - type: Transform + pos: 22.49796,42.655308 + parent: 2 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 4539 + components: + - type: Transform + parent: 4529 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5247 + components: + - type: Transform + parent: 5233 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5265 + components: + - type: Transform + parent: 5251 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesNightVisionGoggles + entities: + - uid: 4082 + components: + - type: Transform + parent: 4075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4100 + components: + - type: Transform + parent: 4087 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4113 + components: + - type: Transform + parent: 4102 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4163 + components: + - type: Transform + parent: 4156 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5443 + components: + - type: Transform + parent: 5437 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5642 + components: + - type: Transform + parent: 4074 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5645 + components: + - type: Transform + parent: 4079 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5648 + components: + - type: Transform + parent: 4084 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5651 + components: + - type: Transform + parent: 4089 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesCombat entities: - - uid: 677 + - uid: 4077 components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4075 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 679 + - uid: 4090 components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4087 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 694 + - uid: 4110 components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4102 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 698 + - uid: 4159 components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4156 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 708 + - uid: 5441 components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHandsGlovesLatex - entities: - - uid: 721 - components: - - pos: -10.494837,-2.619924 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 652 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 662 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2455 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2469 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5437 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatCentcom entities: - - uid: 722 + - uid: 4530 components: - - pos: 12.577686,14.634814 - parent: 1 - type: Transform -- proto: ClothingHeadHatSurgcapBlue + - type: Transform + parent: 4529 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5235 + components: + - type: Transform + parent: 5233 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5266 + components: + - type: Transform + parent: 5251 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatCentcomcap entities: - - uid: 196 + - uid: 4536 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4529 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 197 + - uid: 5234 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5233 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 198 + - uid: 5255 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5251 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 199 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 200 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTEngineer +- proto: ClothingHeadHelmetRiot entities: - - uid: 630 + - uid: 4186 components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 642 + - type: Transform + pos: 36.342113,50.72584 + parent: 2 + - uid: 4197 components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2473 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2487 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTJanitor + - type: Transform + pos: 36.623363,50.72584 + parent: 2 +- proto: ClothingHeadsetAltCentCom entities: - - uid: 6 + - uid: 195 components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4979 + - type: Physics + canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTLeader + - uid: 4165 + components: + - type: Transform + parent: 4297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4534 + components: + - type: Transform + parent: 4529 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5248 + components: + - type: Transform + parent: 5233 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5264 + components: + - type: Transform + parent: 5251 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreathMedical entities: - - uid: 709 + - uid: 4707 components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTMedic + - type: Transform + pos: 18.595325,36.59693 + parent: 2 +- proto: ClothingMaskGasCentcom entities: - - uid: 653 + - uid: 4545 components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4529 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 663 + - uid: 5237 components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5233 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 2454 + - uid: 5254 components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5251 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 2463 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTSecurity - entities: - - uid: 673 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 681 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 692 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 704 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingMaskBreath - entities: - - uid: 723 - components: - - pos: -15.621874,1.4281251 - parent: 1 - type: Transform - proto: ClothingMaskGasERT entities: - - uid: 7 + - uid: 4581 components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4577 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 631 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 643 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 654 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 664 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 676 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 686 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 695 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 699 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 710 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2453 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2464 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2476 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2485 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingMaskSterile +- proto: ClothingNeckCloakCapFormal entities: - - uid: 201 + - uid: 7052 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5437 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 202 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 203 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 204 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 205 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 724 - components: - - pos: -10.479212,-2.369924 - parent: 1 - type: Transform -- proto: ClothingNeckStethoscope +- proto: ClothingNeckCloakCentcom entities: - - uid: 206 + - uid: 4541 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4529 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 207 + - uid: 5246 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5233 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 208 + - uid: 5252 components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5251 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 209 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 210 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 655 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 665 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2458 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2467 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterArmorBulletproof +- proto: ClothingNeckCloakNanotrasen entities: - - uid: 8 + - uid: 7051 components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5437 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 632 +- proto: ClothingNeckCloakQm + entities: + - uid: 7070 components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4979 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 644 +- proto: ClothingNeckMantleQM + entities: + - uid: 7071 components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4979 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 656 +- proto: ClothingOuterArmorBasic + entities: + - uid: 4537 components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 4529 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 666 + - uid: 5249 components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5233 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 674 + - uid: 5258 components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5251 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 680 +- proto: ClothingOuterArmorRiot + entities: + - uid: 4298 components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics + - type: Transform + pos: 36.342113,50.491467 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: 36.63899,50.491467 + parent: 2 +- proto: ClothingOuterWinterCentcom + entities: + - uid: 4535 + components: + - type: Transform + parent: 4529 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 689 + - uid: 5243 components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 5233 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5260 + components: + - type: Transform + parent: 5251 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsJack + entities: + - uid: 4538 + components: + - type: Transform + parent: 4529 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5239 + components: + - type: Transform + parent: 5233 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5268 + components: + - type: Transform + parent: 5251 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsMag + entities: + - uid: 4862 + components: + - type: Transform + pos: 22.49796,44.624058 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: 22.49796,44.499058 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: 22.49796,44.374058 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: 49.3856,68.75551 + parent: 2 +- proto: ClothingShoesGaloshes + entities: + - uid: 4569 + components: + - type: Transform + pos: 37.236813,56.455795 + parent: 2 +- proto: ClothingUnderwearBottomBoxersQM + entities: + - uid: 7072 + components: + - type: Transform + parent: 4979 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUnderwearBottomPantiesQM + entities: + - uid: 7069 + components: + - type: Transform + parent: 4979 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUnderwearTopBraQM + entities: + - uid: 7077 + components: + - type: Transform + parent: 4979 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtCentcomFormalDress + entities: + - uid: 4546 + components: + - type: Transform + parent: 4529 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5245 + components: + - type: Transform + parent: 5233 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5262 + components: + - type: Transform + parent: 5251 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtQM + entities: + - uid: 7076 + components: + - type: Transform + parent: 4979 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtQMTurtleneck + entities: + - uid: 7075 + components: + - type: Transform + parent: 4979 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitCentcomFormal + entities: + - uid: 4532 + components: + - type: Transform + parent: 4529 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5244 + components: + - type: Transform + parent: 5233 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5257 + components: + - type: Transform + parent: 5251 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitCentcomOfficer + entities: + - uid: 4531 + components: + - type: Transform + parent: 4529 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5241 + components: + - type: Transform + parent: 5233 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5253 + components: + - type: Transform + parent: 5251 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitCentcomOfficial + entities: + - uid: 4540 + components: + - type: Transform + parent: 4529 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5242 + components: + - type: Transform + parent: 5233 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5259 + components: + - type: Transform + parent: 5251 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitQM + entities: + - uid: 7074 + components: + - type: Transform + parent: 4979 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitQMTurtleneck + entities: + - uid: 7073 + components: + - type: Transform + parent: 4979 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CombatMedipen + entities: + - uid: 5440 + components: + - type: Transform + parent: 5437 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5446 + components: + - type: Transform + parent: 5437 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: computerBodyScanner + entities: + - uid: 4663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,28.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,36.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 4904 + components: + - type: Transform + pos: 23.5,48.5 + parent: 2 +- proto: ComputerCloningConsole + entities: + - uid: 4726 + components: + - type: Transform + pos: 12.5,44.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 5385 + components: + - type: Transform + pos: 43.5,76.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: 40.5,73.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 6565 +- proto: ComputerCrewMonitoring + entities: + - uid: 4712 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 4133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,26.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: 46.5,73.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 5398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,72.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 6565 +- proto: ComputerIFF + entities: + - uid: 6739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 6565 +- proto: ComputerMassMedia + entities: + - uid: 5399 + components: + - type: Transform + pos: 41.5,73.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 4713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 25 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,72.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 4966 + components: + - type: Transform + pos: 16.5,48.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: 45.5,73.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 6565 +- proto: ComputerShuttle + entities: + - uid: 6741 + components: + - type: Transform + pos: 0.5,9.5 + parent: 6565 +- proto: ComputerShuttleCargo + entities: + - uid: 4905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,46.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: 15.5,48.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: 21.5,52.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 4134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,26.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 4916 + components: + - type: Transform + pos: 19.5,56.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4927 + - uid: 4917 + components: + - type: Transform + pos: 19.5,55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4927 + - uid: 4918 + components: + - type: Transform + pos: 19.5,54.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4927 + - uid: 4919 + components: + - type: Transform + pos: 19.5,53.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4927 + - uid: 4920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,56.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4926 + - uid: 4921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4926 + - uid: 4922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,54.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4926 + - uid: 4923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,53.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4926 + - uid: 4924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4926 + - uid: 4925 + components: + - type: Transform + pos: 19.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4927 + - uid: 6463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6471 + - uid: 6464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6471 + - uid: 6465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6471 + - uid: 6466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6471 +- proto: CrateEngineeringAMEControl + entities: + - uid: 4042 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 4039 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 4040 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 +- proto: CrateEngineeringCableBulk + entities: + - uid: 4043 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 +- proto: CrateEngineeringSolar + entities: + - uid: 4044 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 4911 + components: + - type: Transform + pos: 25.5,52.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: 27.5,51.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: 19.5,50.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: 20.5,49.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + pos: 19.5,48.5 + parent: 2 +- proto: CrateFoodCooking + entities: + - uid: 5336 + components: + - type: Transform + pos: 47.5,54.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 4702 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 +- proto: CrateMaterialGlass + entities: + - uid: 4036 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 +- proto: CrateMaterialPlastic + entities: + - uid: 4034 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 +- proto: CrateMaterialSteel + entities: + - uid: 4030 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 +- proto: CrateMedical + entities: + - uid: 4620 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1478 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4621 + - 4622 + - 4623 + - 4624 + - 4625 + - 4626 + - 4627 + - 4628 + - 4629 + - 4630 + - 4631 + - 4632 + - 4633 + - 4634 + - 4635 + - 4636 + - 4637 + - 4638 + - 4639 + - 4640 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 4567 + components: + - type: Transform + pos: 36.5,54.5 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 5356 + components: + - type: Transform + pos: 51.5,68.5 + parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 6496 + components: + - type: Transform + pos: 56.5,48.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,50.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: 51.5,48.5 + parent: 2 +- proto: Defibrillator + entities: + - uid: 270 + components: + - type: Transform + parent: 231 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 701 components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 371 + - type: Physics + canCollide: False - type: InsideEntityStorage - - uid: 711 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2451 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2462 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2472 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2483 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitERTEngineer - entities: - - uid: 725 - components: - - pos: 12.363798,10.655693 - parent: 1 - type: Transform - - uid: 726 - components: - - pos: 12.629423,10.671318 - parent: 1 - type: Transform - - uid: 729 - components: - - pos: 13.553246,10.656452 - parent: 1 - type: Transform - - uid: 730 - components: - - pos: 13.318871,10.672077 - parent: 1 - type: Transform -- proto: ClothingOuterHardsuitERTJanitor - entities: - - uid: 9 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitERTLeaderFluff - entities: - - uid: 712 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitERTMedical - entities: - - uid: 727 - components: - - pos: 12.426298,12.655693 - parent: 1 - type: Transform - - uid: 728 - components: - - pos: 12.629423,12.640068 - parent: 1 - type: Transform - - uid: 1578 - components: - - pos: 13.584496,12.625202 - parent: 1 - type: Transform - - uid: 1581 - components: - - pos: 13.396996,12.625202 - parent: 1 - type: Transform -- proto: ClothingOuterHardsuitERTSecurity - entities: - - uid: 1579 - components: - - pos: 14.350121,12.656452 - parent: 1 - type: Transform - - uid: 1582 - components: - - pos: 14.568871,12.656452 - parent: 1 - type: Transform - - uid: 1583 - components: - - pos: 14.334496,10.718952 - parent: 1 - type: Transform - - uid: 1806 - components: - - pos: 14.553246,10.718952 - parent: 1 - type: Transform -- proto: ClothingShoesBootsMagAdv - entities: - - uid: 10 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 713 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 731 - components: - - pos: 14.537621,10.328327 - parent: 1 - type: Transform - - uid: 732 - components: - - pos: 14.350121,10.312702 - parent: 1 - type: Transform - - uid: 733 - components: - - pos: 12.363798,12.249443 - parent: 1 - type: Transform - - uid: 734 - components: - - pos: 12.566923,12.249443 - parent: 1 - type: Transform - - uid: 735 - components: - - pos: 12.410673,10.265068 - parent: 1 - type: Transform - - uid: 736 - components: - - pos: 12.598173,10.265068 - parent: 1 - type: Transform - - uid: 737 - components: - - pos: 14.365746,12.250202 - parent: 1 - type: Transform - - uid: 738 - components: - - pos: 14.592072,12.255352 - parent: 1 - type: Transform - - uid: 739 - components: - - pos: 13.350121,10.265827 - parent: 1 - type: Transform - - uid: 740 - components: - - pos: 13.553246,10.265827 - parent: 1 - type: Transform - - uid: 1596 - components: - - pos: 13.350121,12.234577 - parent: 1 - type: Transform - - uid: 1597 - components: - - pos: 13.584496,12.218952 - parent: 1 - type: Transform -- proto: computerBodyScanner - entities: - - uid: 741 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 1 - type: Transform - - uid: 742 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 1 - type: Transform -- proto: ComputerCloningConsole - entities: - - uid: 743 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform -- proto: ComputerComms - entities: - - uid: 744 - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 745 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,16.5 - parent: 1 - type: Transform -- proto: ComputerId - entities: - - uid: 746 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,16.5 - parent: 1 - type: Transform -- proto: ComputerRadar - entities: - - uid: 747 - components: - - pos: 12.5,17.5 - parent: 1 - type: Transform -- proto: CrateChemistrySecure - entities: - - uid: 122 - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 132 - - 133 - - 134 - - 135 - - 136 - - 129 - - 137 - - 138 - - 139 - - 140 - - 123 - - 124 - - 125 - - 141 - - 126 - - 127 - - 128 - - 130 - - 131 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringAMEControl - entities: - - uid: 748 - components: - - pos: -7.5,16.5 - parent: 1 - type: Transform -- proto: CrateEngineeringAMEJar - entities: - - uid: 755 - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform -- proto: CrateEngineeringAMEShielding - entities: - - uid: 749 - components: - - pos: -7.5,17.5 - parent: 1 - type: Transform - - uid: 750 - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform -- proto: CrateEngineeringCableBulk - entities: - - uid: 751 - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform -- proto: CrateEngineeringGenerator - entities: - - uid: 752 - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform -- proto: CrateEngineeringShuttle - entities: - - uid: 753 - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform -- proto: CrateMedicalSecure - entities: - - uid: 184 - components: - - pos: -10.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: - - 210 - - 187 - - 209 - - 185 - - 206 - - 186 - - 207 - - 216 - - 217 - - 218 - - 208 - - 188 - - 196 - - 189 - - 197 - - 198 - - 199 - - 201 - - 202 - - 203 - - 204 - - 200 - - 205 - - 191 - - 211 - - 212 - - 213 - - 214 - - 190 - - 192 - - 193 - - 194 - - 195 - - 215 - - 219 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: Crematorium - entities: - - uid: 59 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-4.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 -- proto: CrewMonitoringServer - entities: - - uid: 757 - components: - - pos: 17.5,16.5 - parent: 1 - type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 758 - components: - - pos: -22.5,3.5 - parent: 1 - type: Transform -- proto: DisposalBend - entities: - - uid: 759 - components: - - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - uid: 760 - components: - - pos: 7.5,14.5 - parent: 1 - type: Transform - - uid: 761 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 762 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 763 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 1 - type: Transform - - uid: 764 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 765 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 766 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 2500 - components: - - pos: -21.5,6.5 - parent: 1 - type: Transform -- proto: DisposalJunction - entities: - - uid: 767 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform -- proto: DisposalPipe - entities: - - uid: 768 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1 - type: Transform - - uid: 769 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - type: Transform - - uid: 770 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,14.5 - parent: 1 - type: Transform - - uid: 771 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,14.5 - parent: 1 - type: Transform - - uid: 772 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform - - uid: 773 - components: - - pos: 7.5,13.5 - parent: 1 - type: Transform - - uid: 774 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1 - type: Transform - - uid: 775 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 776 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 777 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 778 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,11.5 - parent: 1 - type: Transform - - uid: 779 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 780 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 781 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 782 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 783 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 784 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 785 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 786 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 787 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 788 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 789 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,11.5 - parent: 1 - type: Transform - - uid: 790 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,11.5 - parent: 1 - type: Transform - - uid: 791 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,11.5 - parent: 1 - type: Transform - - uid: 792 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 793 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 794 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 1 - type: Transform - - uid: 795 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 1 - type: Transform - - uid: 796 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform - - uid: 797 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - uid: 798 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,9.5 - parent: 1 - type: Transform - - uid: 799 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 1 - type: Transform - - uid: 800 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 1 - type: Transform - - uid: 801 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 802 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 803 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform - - uid: 804 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform - - uid: 805 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 806 - components: - - rot: 3.141592653589793 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 807 - components: - - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 808 - components: - - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 809 - components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 810 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 811 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 812 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 813 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,4.5 - parent: 1 - type: Transform - - uid: 814 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,4.5 - parent: 1 - type: Transform - - uid: 815 - components: - - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 816 - components: - - rot: 3.141592653589793 rad - pos: 7.5,6.5 - parent: 1 - type: Transform - - uid: 817 - components: - - rot: 3.141592653589793 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 818 - components: - - rot: 3.141592653589793 rad - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 819 - components: - - rot: 3.141592653589793 rad - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 820 - components: - - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 1 - type: Transform - - uid: 2503 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 2517 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,6.5 - parent: 1 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 821 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform - - uid: 822 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 823 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 1 - type: Transform - - uid: 824 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-4.5 - parent: 1 - type: Transform - - uid: 2438 - components: - - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 1 - type: Transform - - uid: 2506 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 1 - type: Transform -- proto: DisposalUnit - entities: - - uid: 825 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 826 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform - - uid: 827 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - uid: 2508 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform -- proto: DisposalYJunction - entities: - - uid: 828 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,11.5 - parent: 1 - type: Transform -- proto: DrinkBeerBottleFull - entities: - - uid: 829 - components: - - pos: 0.24880648,-0.2702334 - parent: 1 - type: Transform - - uid: 830 - components: - - pos: 0.5300565,0.011016607 - parent: 1 - type: Transform -- proto: Dropper - entities: - - uid: 132 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 133 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 134 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 135 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 136 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: EmergencyHampter - entities: - - uid: 714 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 831 - components: - - desc: Какой-то мужик. - name: ua_No_Name48237 - type: MetaData - - pos: -19.549643,7.33531 - parent: 1 - type: Transform -- proto: EmergencyLight - entities: - - uid: 832 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 833 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 834 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,0.5 - parent: 1 - type: Transform - - uid: 835 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 1 - type: Transform - - uid: 836 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 837 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - uid: 838 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-0.5 - parent: 1 - type: Transform - - uid: 839 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 1 - type: Transform - - uid: 840 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 841 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 842 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 843 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - uid: 844 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - uid: 845 - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 1 - type: Transform - - uid: 846 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 847 - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 848 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 849 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 850 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 1 - type: Transform - - uid: 851 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 852 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 853 - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform - - uid: 854 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,17.5 - parent: 1 - type: Transform - - uid: 855 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,22.5 - parent: 1 - type: Transform - - uid: 856 - components: - - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 857 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 858 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 859 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 860 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - uid: 861 - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform - - uid: 862 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 863 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - uid: 864 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 865 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 866 - components: - - rot: 3.141592653589793 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 867 - components: - - rot: 3.141592653589793 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 868 - components: - - pos: 16.5,17.5 - parent: 1 - type: Transform - - uid: 869 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 870 - components: - - pos: 14.5,12.5 - parent: 1 - type: Transform - - uid: 871 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - type: Transform - - uid: 872 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 1 - type: Transform - - uid: 873 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,34.5 - parent: 1 - type: Transform - - uid: 874 - components: - - rot: 3.141592653589793 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - uid: 875 - components: - - rot: 3.141592653589793 rad - pos: 10.5,6.5 - parent: 1 - type: Transform - - uid: 876 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 1 - type: Transform - - uid: 877 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,17.5 - parent: 1 - type: Transform - - uid: 878 - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - - uid: 879 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 880 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,15.5 - parent: 1 - type: Transform - - uid: 881 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 882 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 883 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 884 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - uid: 885 - components: - - pos: -13.5,9.5 - parent: 1 - type: Transform - - uid: 886 - components: - - rot: 3.141592653589793 rad - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 887 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 1 - type: Transform - - uid: 888 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 889 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 890 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,7.5 - parent: 1 - type: Transform - - uid: 891 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - type: Transform -- proto: FaxMachineCentcom - entities: - - uid: 892 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform -- proto: FireAlarm - entities: - - uid: 893 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 913 - - 914 - - 912 - - 901 - - 911 - - 902 - type: DeviceNetwork - - devices: - - 913 - - 914 - - 912 - - 901 - - 911 - - 902 - type: DeviceList - - uid: 894 - components: - - rot: 3.141592653589793 rad - pos: -14.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 913 - - 915 - - 916 - - 917 - - 918 - type: DeviceNetwork - - devices: - - 913 - - 915 - - 916 - - 917 - - 918 - type: DeviceList - - uid: 895 - components: - - pos: -21.5,6.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 917 - - 903 - type: DeviceNetwork - - devices: - - 917 - - 903 - type: DeviceList - - uid: 896 - components: - - pos: 3.5,6.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 937 - - 935 - type: DeviceNetwork - - devices: - - 905 - - 906 - - 925 - - 921 - - 920 - - 919 - - 922 - - 923 - - 924 - - 935 - - 937 - type: DeviceList - - uid: 897 - components: - - pos: -2.5,-1.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 905 - - 906 - - 925 - type: DeviceNetwork - - devices: - - 905 - - 906 - - 925 - type: DeviceList - - uid: 898 - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 926 - - 927 - - 928 - - 929 - - 907 - type: DeviceNetwork - - devices: - - 926 - - 927 - - 928 - - 929 - - 907 - type: DeviceList - - uid: 899 - components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceNetwork - - devices: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceList - - uid: 900 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceNetwork - - devices: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceList -- proto: FirelockEdge - entities: - - uid: 901 - components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 893 - - 15 - type: DeviceNetwork - - uid: 902 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 893 - - 15 - type: DeviceNetwork - - uid: 903 - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 895 - - 16 - type: DeviceNetwork - - uid: 904 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 905 - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 897 - type: DeviceNetwork - - uid: 906 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 897 - type: DeviceNetwork - - uid: 907 - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 898 - type: DeviceNetwork - - uid: 908 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,12.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 909 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform - - uid: 910 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 1 - type: Transform -- proto: FirelockGlass - entities: - - uid: 911 - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 893 - - 15 - type: DeviceNetwork - - uid: 912 - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 893 - - 15 - type: DeviceNetwork - - uid: 913 - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 894 - - 893 - - 15 - type: DeviceNetwork - - uid: 914 - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 893 - - 15 - type: DeviceNetwork - - uid: 915 - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 894 - type: DeviceNetwork - - uid: 916 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 894 - type: DeviceNetwork - - uid: 917 - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 16 - - 894 - - 895 - type: DeviceNetwork - - uid: 918 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 894 - type: DeviceNetwork - - uid: 919 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 920 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 921 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 922 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 923 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - uid: 924 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - uid: 925 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 897 - type: DeviceNetwork - - uid: 926 - components: - - pos: 5.5,14.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 898 - type: DeviceNetwork - - uid: 927 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 898 - type: DeviceNetwork - - uid: 928 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 898 - type: DeviceNetwork - - uid: 929 - components: - - pos: -2.5,14.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 898 - type: DeviceNetwork - - uid: 930 - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 931 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 932 - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 933 - components: - - pos: -9.5,14.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 934 - components: - - pos: -10.5,14.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 935 - components: - - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 896 - - 19 - type: DeviceNetwork - - uid: 936 - components: - - rot: 3.141592653589793 rad - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 937 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 896 - - 19 - type: DeviceNetwork -- proto: FlashlightSeclite - entities: - - uid: 11 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 628 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 657 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 667 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 672 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 682 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 690 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 700 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 715 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2456 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2465 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2474 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2486 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FloorDrain - entities: - - uid: 938 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 939 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 940 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 2427 - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures -- proto: GasMinerNitrogenStation - entities: - - uid: 941 - components: - - rot: 3.141592653589793 rad - pos: -17.5,13.5 - parent: 1 - type: Transform -- proto: GasMinerOxygenStation - entities: - - uid: 942 - components: - - rot: 3.141592653589793 rad - pos: -15.5,13.5 - parent: 1 - type: Transform -- proto: GasMixerFlipped - entities: - - uid: 943 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#0000FFFF' - type: AtmosPipeColor -- proto: GasPassiveVent - entities: - - uid: 944 - components: - - pos: -17.5,12.5 - parent: 1 - type: Transform - - uid: 945 - components: - - pos: -15.5,12.5 - parent: 1 - type: Transform - - uid: 946 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,8.5 - parent: 1 - type: Transform -- proto: GasPipeBend - entities: - - uid: 947 - components: - - rot: 3.141592653589793 rad - pos: -17.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 948 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 949 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 950 - components: - - rot: 3.141592653589793 rad - pos: -5.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 951 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 952 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 953 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 954 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 955 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 956 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,34.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 957 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 958 - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 959 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 960 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 961 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 962 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 963 - components: - - pos: -13.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 964 - components: - - rot: 3.141592653589793 rad - pos: -13.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 965 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 966 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 967 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 968 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 969 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 970 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 971 - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 972 - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 973 - components: - - rot: 3.141592653589793 rad - pos: -9.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 974 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 975 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 976 - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 977 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 978 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 979 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 980 - components: - - pos: -6.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 981 - components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 982 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 983 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 984 - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 985 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 986 - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 987 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 988 - components: - - rot: 3.141592653589793 rad - pos: 6.5,28.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 989 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 990 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 991 - components: - - rot: 3.141592653589793 rad - pos: -11.5,10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 992 - components: - - rot: 3.141592653589793 rad - pos: -11.5,11.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 993 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 994 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 995 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 996 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 997 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 998 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 999 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1000 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1001 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1002 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1003 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1004 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1005 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1006 - components: - - rot: 3.141592653589793 rad - pos: 6.5,16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1007 - components: - - rot: 3.141592653589793 rad - pos: 6.5,17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1008 - components: - - pos: 6.5,24.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1009 - components: - - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1010 - components: - - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1011 - components: - - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1012 - components: - - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1013 - components: - - rot: 3.141592653589793 rad - pos: 6.5,23.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1014 - components: - - rot: 3.141592653589793 rad - pos: 6.5,25.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1015 - components: - - rot: 3.141592653589793 rad - pos: 6.5,27.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1016 - components: - - rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1017 - components: - - rot: 3.141592653589793 rad - pos: 6.5,30.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1018 - components: - - rot: 3.141592653589793 rad - pos: 6.5,31.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1019 - components: - - rot: 3.141592653589793 rad - pos: 6.5,32.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1020 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1021 - components: - - rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1022 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1023 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1024 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1025 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1026 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1027 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1028 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1029 - components: - - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1030 - components: - - rot: 3.141592653589793 rad - pos: -5.5,16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1031 - components: - - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1032 - components: - - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1033 - components: - - rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1034 - components: - - rot: 3.141592653589793 rad - pos: 6.5,7.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1035 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1036 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1037 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1038 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1039 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1040 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1041 - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1042 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1043 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1044 - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1045 - components: - - pos: 2.5,19.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1046 - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1047 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1048 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1049 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1050 - components: - - rot: 3.141592653589793 rad - pos: -1.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1051 - components: - - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1052 - components: - - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1053 - components: - - rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1054 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1055 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1056 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1057 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1058 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1059 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1060 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1061 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1062 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1063 - components: - - rot: 3.141592653589793 rad - pos: -6.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1064 - components: - - rot: 3.141592653589793 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1065 - components: - - pos: -17.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1066 - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1067 - components: - - rot: 3.141592653589793 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1068 - components: - - rot: 3.141592653589793 rad - pos: -6.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1069 - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1070 - components: - - pos: -17.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1071 - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1072 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1073 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1074 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1075 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1076 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1077 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1078 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1079 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1080 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1081 - components: - - rot: 3.141592653589793 rad - pos: 17.5,16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1082 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1083 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1084 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1085 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1086 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1087 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1088 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1089 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1090 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1091 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1092 - components: - - pos: -22.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1093 - components: - - pos: -22.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1094 - components: - - pos: -22.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1095 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1096 - components: - - rot: 3.141592653589793 rad - pos: -22.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1097 - components: - - rot: 3.141592653589793 rad - pos: -13.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1098 - components: - - rot: 3.141592653589793 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1099 - components: - - rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1100 - components: - - rot: 3.141592653589793 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1101 - components: - - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1102 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1103 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1104 - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1105 - components: - - pos: -2.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1106 - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1107 - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1108 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,8.5 - parent: 1 - type: Transform - - uid: 1109 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1110 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1111 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1112 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1113 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1114 - components: - - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1115 - components: - - rot: 3.141592653589793 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1116 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1117 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1118 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1119 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1120 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1121 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1122 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1123 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1124 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1125 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1126 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1127 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1128 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1129 - components: - - rot: 3.141592653589793 rad - pos: 8.5,9.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1130 - components: - - rot: 3.141592653589793 rad - pos: 8.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - uid: 1131 components: - - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1132 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1133 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1134 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1135 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1136 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1137 - components: - - rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1138 - components: - - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1139 - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1140 - components: - - rot: 3.141592653589793 rad - pos: 10.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1141 - components: - - rot: 3.141592653589793 rad - pos: 10.5,9.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1142 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,11.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1143 - components: - - rot: 3.141592653589793 rad - pos: 10.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1144 - components: - - rot: 3.141592653589793 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1145 - components: - - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1146 - components: - - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1147 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1148 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1149 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1150 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1151 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1152 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1153 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1154 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1155 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1156 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1157 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1158 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1159 - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1160 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1161 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1162 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1163 - components: - - pos: -12.5,1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1164 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1165 - components: - - pos: -16.5,1.5 - parent: 1 - type: Transform - - uid: 1166 - components: - - pos: -16.5,0.5 - parent: 1 - type: Transform - - uid: 1167 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1168 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1169 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1170 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1171 - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1172 - components: - - pos: -21.5,1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1173 - components: - - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1174 - components: - - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1175 - components: - - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1176 - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1177 - components: - - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1178 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1179 - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1180 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1181 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1182 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1183 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1184 - components: - - rot: 3.141592653589793 rad - pos: 12.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1185 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1186 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1187 - components: - - rot: 3.141592653589793 rad - pos: 16.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1188 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1189 - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1190 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1191 - components: - - pos: 8.5,32.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1192 - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1193 - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1194 - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1195 - components: - - pos: 8.5,28.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1196 - components: - - pos: 8.5,26.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1197 - components: - - pos: 8.5,25.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1198 - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1199 - components: - - pos: 8.5,23.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1200 - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1201 - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1202 - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1203 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1204 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1205 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1206 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1207 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1208 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1209 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1210 - components: - - pos: -0.5,17.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1211 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1212 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1213 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1214 - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1215 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1216 - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1217 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1218 - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1219 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1220 - components: - - rot: 3.141592653589793 rad - pos: -10.5,13.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1221 - components: - - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1222 - components: - - rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1223 - components: - - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1224 - components: - - rot: 3.141592653589793 rad - pos: -7.5,12.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1225 - components: - - rot: 3.141592653589793 rad - pos: -7.5,13.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1226 - components: - - rot: 3.141592653589793 rad - pos: -7.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1227 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1228 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1229 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1230 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1231 - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1232 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1233 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1234 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1235 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1236 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: Transform + parent: 838 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2620 + components: + - type: Transform + parent: 1236 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DefibrillatorCabinetFilled + entities: + - uid: 6502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,27.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,35.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + pos: 2.5,45.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: -1.5,5.5 + parent: 6565 +- proto: DeployableBarrier + entities: + - uid: 4137 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 4757 + components: + - type: Transform + pos: -0.5,38.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 6223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,25.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,21.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,24.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,15.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,15.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,25.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,25.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,50.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: 26.5,50.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,43.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: 51.5,64.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,60.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,60.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + pos: 46.5,70.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 6249 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 26.5,48.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,43.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,64.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 6326 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 6217 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: 7.5,32.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,25.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,25.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,25.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,25.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,25.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,22.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,23.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,24.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,21.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,21.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,21.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,27.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,27.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,25.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,24.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,16.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,17.5 + parent: 2 + - uid: 6300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,18.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,19.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,20.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,25.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,25.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,26.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,27.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,28.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,29.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,29.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,29.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,29.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,29.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,29.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,29.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,29.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,29.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,29.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,29.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: 26.5,42.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 18.5,47.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 18.5,48.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 18.5,49.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,50.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,50.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,50.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,50.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,50.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,50.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,50.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,49.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,47.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,46.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,45.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,44.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,43.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,43.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,43.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,43.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,43.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,43.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,43.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,43.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,43.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,43.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,43.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,43.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,43.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,43.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,43.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,43.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,43.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,43.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,43.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,43.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,43.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,43.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,43.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,43.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,43.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,43.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,43.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,43.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,43.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,43.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,43.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,44.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,45.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,46.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,47.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,48.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,49.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,50.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,51.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,52.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,53.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,54.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,55.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,56.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,57.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,58.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,59.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,60.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,61.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,62.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,63.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,64.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,64.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,64.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,64.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,64.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,64.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,64.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,64.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,64.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,60.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,61.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,62.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,63.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,65.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,66.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,67.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,68.5 + parent: 2 + - uid: 6442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,69.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 5657 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,48.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,24.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,46.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,64.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: 49.5,61.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,70.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,26.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 6447 + components: + - type: Transform + pos: 39.5,64.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: 49.5,61.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + pos: 45.5,70.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: 25.5,48.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: 18.5,46.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 6250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,21.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + pos: 40.5,64.5 + parent: 2 +- proto: DocPrinter + entities: + - uid: 5431 + components: + - type: Transform + pos: 39.5,73.5 + parent: 2 +- proto: DoorRemoteFirefight + entities: + - uid: 6492 + components: + - type: Transform + parent: 4074 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6493 + components: + - type: Transform + parent: 4079 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6494 + components: + - type: Transform + parent: 4084 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6495 + components: + - type: Transform + parent: 4089 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 232 + components: + - type: Transform + parent: 231 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 552 + components: + - type: Transform + parent: 371 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 954 + components: + - type: Transform + parent: 838 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3078 + components: + - type: Transform + parent: 1236 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4080 + components: + - type: Transform + parent: 4075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4099 + components: + - type: Transform + parent: 4087 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4155 + components: + - type: Transform + parent: 4102 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4160 + components: + - type: Transform + parent: 4156 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4578 + components: + - type: Transform + parent: 4577 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4871 + components: + - type: Transform + pos: 21.676077,44.556423 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: 4.732123,0.54625523 + parent: 6565 + - uid: 7054 + components: + - type: Transform + parent: 4074 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7057 + components: + - type: Transform + parent: 4079 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7062 + components: + - type: Transform + parent: 4084 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7064 + components: + - type: Transform + parent: 4089 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 252 + components: + - type: Transform + parent: 231 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 504 + components: + - type: Transform + parent: 371 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 839 + components: + - type: Transform + parent: 838 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 1237 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1238 + - type: Transform + parent: 1236 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4086 components: - - rot: 3.141592653589793 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1239 + - type: Transform + parent: 4075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4092 components: - - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1240 + - type: Transform + parent: 4087 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4114 components: - - rot: 1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1241 + - type: Transform + parent: 4102 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4161 components: - - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1242 + - type: Transform + parent: 4156 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4579 components: - - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1243 + - type: Transform + parent: 4577 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4870 components: - - rot: 1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1244 + - type: Transform + pos: 21.290024,44.551254 + parent: 2 + - type: GasTank + toggleActionEntity: 7067 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 7067 + - uid: 6744 components: - - rot: 1.5707963267948966 rad - pos: 7.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1245 + - type: Transform + pos: 4.388373,0.5775051 + parent: 6565 + - uid: 6745 components: - - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: Transform + pos: -3.6741266,-1.4537463 + parent: 6565 + - uid: 6746 + components: + - type: Transform + pos: -3.3460016,-1.4693713 + parent: 6565 + - uid: 7055 + components: + - type: Transform + parent: 4074 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7059 + components: + - type: Transform + parent: 4079 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7060 + components: + - type: Transform + parent: 4084 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7063 + components: + - type: Transform + parent: 4089 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkWaterBottleFull + entities: + - uid: 4329 + components: + - type: Transform + pos: 46.651535,39.605125 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: 49.64031,47.67101 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: 41.68777,75.92568 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: 45.092022,76.66006 + parent: 2 +- proto: Dropper + entities: + - uid: 4518 + components: + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4519 + components: + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyLight + entities: + - uid: 4416 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,12.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,36.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,32.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,21.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,24.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,42.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,34.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,50.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,72.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,67.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: 48.5,44.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,54.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,63.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 6565 +- proto: EncryptionKeyBinary + entities: + - uid: 5355 + components: + - type: Transform + parent: 5353 + - type: Physics + canCollide: False +- proto: EncryptionKeyCargo + entities: + - uid: 5318 + components: + - type: Transform + parent: 5317 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 5348 + components: + - type: Transform + parent: 5347 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 5352 + components: + - type: Transform + parent: 5351 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 5326 + components: + - type: Transform + parent: 5325 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 5304 + components: + - type: Transform + parent: 5303 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 5354 + components: + - type: Transform + parent: 5353 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 5324 + components: + - type: Transform + parent: 5323 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 5350 + components: + - type: Transform + parent: 5349 + - type: Physics + canCollide: False +- proto: ExtinguisherCabinetFilled + entities: + - uid: 6190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,45.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,66.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,31.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,53.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,35.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,41.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,20.5 + parent: 2 +- proto: FaxMachineCentcom + entities: + - uid: 5417 + components: + - type: Transform + pos: 44.5,76.5 + parent: 2 + - type: FaxMachine + name: ERT station "Theta-19" +- proto: filingCabinetDrawerRandom + entities: + - uid: 5425 + components: + - type: Transform + pos: 45.47283,74.67474 + parent: 2 +- proto: FireAxeCabinetFilled + entities: + - uid: 4026 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 6518 + components: + - type: Transform + pos: 1.3086574,33.042854 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 4063 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - uid: 4064 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - uid: 4805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5004 + - uid: 4806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5004 + - uid: 4807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5005 + - uid: 4808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5008 + - uid: 4809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5008 + - uid: 6748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 6565 + - uid: 6749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 +- proto: FirelockGlass + entities: + - uid: 4016 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - uid: 4017 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - 5556 + - uid: 4018 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - uid: 4019 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - uid: 4025 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4111 + - 4107 + - uid: 4331 + components: + - type: Transform + pos: 40.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - uid: 4332 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - uid: 4334 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - uid: 4335 + components: + - type: Transform + pos: 30.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - uid: 4336 + components: + - type: Transform + pos: 34.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - uid: 4337 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - uid: 4338 + components: + - type: Transform + pos: 44.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4388 + - 4383 + - uid: 4339 + components: + - type: Transform + pos: 48.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4388 + - uid: 4340 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4386 + - 4383 + - uid: 4341 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4386 + - uid: 4342 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4386 + - uid: 4343 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4385 + - 4383 + - uid: 4344 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4385 + - uid: 4345 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - uid: 4346 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - uid: 4347 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - uid: 4348 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5556 + - 4383 + - uid: 4355 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4387 + - uid: 4785 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - uid: 4786 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - uid: 4787 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5556 + - uid: 4788 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5556 + - uid: 4789 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - uid: 4791 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - 5009 + - uid: 4792 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - 5007 + - uid: 4793 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - 6060 + - uid: 4794 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5007 + - uid: 4795 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - 6060 + - uid: 4796 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - 6060 + - uid: 4797 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5003 + - 5006 + - uid: 4798 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5003 + - 5005 + - uid: 4799 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - 5004 + - uid: 4800 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - uid: 4801 + components: + - type: Transform + pos: 10.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5005 + - 5006 + - uid: 4802 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5007 + - 5006 + - uid: 4803 + components: + - type: Transform + pos: -1.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5008 + - uid: 4804 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5006 + - 5008 + - uid: 4810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - 5006 + - uid: 4872 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - 5010 + - uid: 4996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - 5000 + - uid: 4997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - 5000 + - uid: 4998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5000 + - 5001 + - uid: 4999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5001 + - uid: 5099 + components: + - type: Transform + pos: 37.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - 5033 + - uid: 5100 + components: + - type: Transform + pos: 35.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - 5033 + - uid: 5101 + components: + - type: Transform + pos: 31.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - 5033 + - uid: 5102 + components: + - type: Transform + pos: 33.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5033 + - uid: 5111 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5556 + - 5555 + - uid: 5112 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5556 + - 5555 + - uid: 5113 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5555 + - 5554 + - uid: 5114 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5555 + - 5554 + - uid: 5115 + components: + - type: Transform + pos: 38.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - uid: 5116 + components: + - type: Transform + pos: 38.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - uid: 5117 + components: + - type: Transform + pos: 42.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5553 + - uid: 5118 + components: + - type: Transform + pos: 42.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5553 + - uid: 5119 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - uid: 5120 + components: + - type: Transform + pos: 39.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - uid: 5121 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5553 + - 5552 + - uid: 5212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5553 + - 5339 + - uid: 5213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - 5299 + - uid: 5214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,49.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,46.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5339 + - uid: 5217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,50.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5553 + - uid: 5219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5339 + - uid: 5225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,49.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: 52.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6061 + - uid: 5360 + components: + - type: Transform + pos: 50.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - 6061 + - uid: 5433 + components: + - type: Transform + pos: 46.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - 5560 + - uid: 5434 + components: + - type: Transform + pos: 46.5,71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5560 + - uid: 5435 + components: + - type: Transform + pos: 41.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5560 + - uid: 5436 + components: + - type: Transform + pos: 39.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5560 + - uid: 5667 + components: + - type: Transform + pos: 52.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5558 + - uid: 5675 + components: + - type: Transform + pos: 48.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5558 + - uid: 5676 + components: + - type: Transform + pos: 51.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - 5558 + - uid: 6055 + components: + - type: Transform + pos: 43.5,71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5560 + - uid: 6056 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4385 + - 4383 + - uid: 6057 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - 5556 + - uid: 6058 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4387 + - uid: 6059 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4387 + - uid: 6750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6567 + - 6566 + - uid: 6751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - uid: 6752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - uid: 6753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - uid: 6754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6567 + - uid: 6755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 6565 +- proto: FloorDrain + entities: + - uid: 4303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4575 + components: + - type: Transform + pos: 35.5,55.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4681 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4708 + components: + - type: Transform + pos: 21.5,37.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4709 + components: + - type: Transform + pos: 21.5,39.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,43.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,51.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 5287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,48.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 5288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,52.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 5289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,52.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloraRockSolid03 + entities: + - uid: 5109 + components: + - type: Transform + pos: 1.2021909,34.415276 + parent: 2 +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 4764 + components: + - type: Transform + pos: -0.3183012,35.956055 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 4765 + components: + - type: Transform + pos: -0.6151762,35.768555 + parent: 2 +- proto: FuelDispenser + entities: + - uid: 4029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,12.5 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 4168 + components: + - type: Transform + pos: 24.762598,14.588211 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: - uid: 1246 components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1247 + - type: Transform + pos: 18.5,19.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 1245 components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1248 - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: Transform + pos: 16.5,19.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasMixerFlipped + entities: - uid: 1249 components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1250 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1251 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1252 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1253 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1254 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1255 - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1256 - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1257 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1258 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1259 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1260 - components: - - pos: -15.5,11.5 - parent: 1 - type: Transform - - uid: 1261 - components: - - pos: -17.5,11.5 - parent: 1 - type: Transform -- proto: GasPipeTJunction + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasPassiveVent entities: - - uid: 1262 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1263 - components: - - pos: -12.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1264 - components: - - rot: 3.141592653589793 rad - pos: -10.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1265 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1266 - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1267 - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1268 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1269 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1270 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1271 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1272 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,18.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1273 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1274 - components: - - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1275 - components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1276 - components: - - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1277 - components: - - rot: 3.141592653589793 rad - pos: -1.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1278 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1279 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1280 - components: - - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1281 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1282 - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1283 - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1284 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1285 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1286 - components: - - rot: 3.141592653589793 rad - pos: 11.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1287 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1288 - components: - - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1289 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1290 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1291 - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1292 - components: - - pos: -17.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1293 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1294 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1295 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1296 - components: - - rot: 3.141592653589793 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1297 - components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1298 - components: - - rot: 3.141592653589793 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1299 - components: - - rot: 3.141592653589793 rad - pos: -3.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1300 - components: - - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1301 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1302 - components: - - rot: 3.141592653589793 rad - pos: 10.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1303 - components: - - rot: 3.141592653589793 rad - pos: 11.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1304 - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1305 - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1306 - components: - - rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1307 - components: - - rot: 3.141592653589793 rad - pos: -5.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1308 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1309 - components: - - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1310 - components: - - rot: 3.141592653589793 rad - pos: -11.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1311 - components: - - pos: -12.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1312 - components: - - rot: 3.141592653589793 rad - pos: -14.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1313 - components: - - pos: -16.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1314 - components: - - rot: 3.141592653589793 rad - pos: -20.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1315 - components: - - rot: 3.141592653589793 rad - pos: 12.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1316 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1317 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,27.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1318 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1319 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1320 - components: - - rot: 3.141592653589793 rad - pos: -18.5,13.5 - parent: 1 - type: Transform - - uid: 1321 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1322 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1323 - components: - - pos: -10.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- proto: GasPort - entities: - - uid: 1324 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 1 - type: Transform -- proto: GasPressurePump - entities: - - uid: 1325 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - uid: 1326 - components: - - pos: -17.5,10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1327 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- proto: GasVentPump - entities: - - uid: 1328 - components: - - rot: 3.141592653589793 rad - pos: -12.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1329 - components: - - rot: 3.141592653589793 rad - pos: -9.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1330 - components: - - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1331 - components: - - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1332 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1333 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1334 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1335 - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1336 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1337 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1338 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1339 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,34.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1340 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1341 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1342 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1343 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1344 - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1345 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1346 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1347 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1348 - components: - - pos: 11.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1349 - components: - - rot: 3.141592653589793 rad - pos: -3.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1350 - components: - - rot: 3.141592653589793 rad - pos: -7.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1351 - components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1352 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1353 - components: - - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1354 - components: - - rot: 3.141592653589793 rad - pos: -10.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1355 - components: - - pos: -10.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1356 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1357 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1358 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1359 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1360 - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1361 - components: - - pos: -10.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1362 - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1363 - components: - - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1364 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1365 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 1366 - components: - - pos: -11.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1367 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1368 - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1369 - components: - - pos: 3.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1370 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1371 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1372 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1373 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1374 - components: - - rot: 3.141592653589793 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1375 - components: - - pos: -4.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1376 - components: - - rot: 3.141592653589793 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1377 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1378 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1379 - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1380 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1381 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1382 - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1383 - components: - - rot: 3.141592653589793 rad - pos: -21.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1384 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1385 - components: - - pos: 12.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1386 - components: - - pos: 16.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1387 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1388 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1389 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1390 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1391 - components: - - rot: 3.141592653589793 rad - pos: 3.5,15.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1392 - components: - - rot: 3.141592653589793 rad - pos: -0.5,15.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1393 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1394 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,16.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1395 - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1396 - components: - - pos: -9.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1397 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1398 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1399 - components: - - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1400 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1401 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1402 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor -- proto: PortableGeneratorSuperPacman - entities: - - uid: 1403 - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 1404 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 1405 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform -- proto: GravityGeneratorMini - entities: - - uid: 1406 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform -- proto: Grille - entities: - - uid: 1407 - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 1410 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 1 - type: Transform - - uid: 1411 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,33.5 - parent: 1 - type: Transform - - uid: 1412 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - uid: 1413 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 1414 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform - - uid: 1415 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,27.5 - parent: 1 - type: Transform - - uid: 1416 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,26.5 - parent: 1 - type: Transform - - uid: 1417 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 1419 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - uid: 1420 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 1 - type: Transform - - uid: 1421 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 1422 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,35.5 - parent: 1 - type: Transform - - uid: 1423 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - - uid: 1424 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 1425 - components: - - rot: 3.141592653589793 rad - pos: 11.5,18.5 - parent: 1 - type: Transform - - uid: 1426 - components: - - rot: 3.141592653589793 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 1427 - components: - - rot: 3.141592653589793 rad - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 1428 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 1429 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,4.5 - parent: 1 - type: Transform - - uid: 1430 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 1 - type: Transform - - uid: 1431 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 1 - type: Transform - - uid: 1432 - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 1 - type: Transform - - uid: 1433 - components: - - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 1 - type: Transform - - uid: 1434 - components: - - rot: 3.141592653589793 rad - pos: 13.5,18.5 - parent: 1 - type: Transform - - uid: 1435 - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform - - uid: 1436 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 1437 - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 1438 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - uid: 1439 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1 - type: Transform - - uid: 1440 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 1441 - components: - - pos: 18.5,12.5 - parent: 1 - type: Transform - - uid: 1442 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 1443 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 1444 - components: - - rot: 3.141592653589793 rad - pos: 3.5,34.5 - parent: 1 - type: Transform - - uid: 1445 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 1446 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 1447 - components: - - rot: 3.141592653589793 rad - pos: 2.5,34.5 - parent: 1 - type: Transform - - uid: 1448 - components: - - rot: 3.141592653589793 rad - pos: 1.5,34.5 - parent: 1 - type: Transform - - uid: 1449 - components: - - rot: 3.141592653589793 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 1450 - components: - - rot: 3.141592653589793 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 1451 - components: - - rot: 3.141592653589793 rad - pos: 1.5,31.5 - parent: 1 - type: Transform - - uid: 1452 - components: - - rot: 3.141592653589793 rad - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 1453 - components: - - rot: 3.141592653589793 rad - pos: 0.5,30.5 - parent: 1 - type: Transform - - uid: 1454 - components: - - rot: 3.141592653589793 rad - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 1455 - components: - - rot: 3.141592653589793 rad - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 1457 - components: - - pos: -3.5,21.5 - parent: 1 - type: Transform - - uid: 1458 - components: - - rot: 3.141592653589793 rad - pos: -10.5,23.5 - parent: 1 - type: Transform - - uid: 1459 - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - uid: 1460 - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform - - uid: 1464 - components: - - rot: 3.141592653589793 rad - pos: -7.5,23.5 - parent: 1 - type: Transform - - uid: 1465 - components: - - rot: 3.141592653589793 rad - pos: -12.5,23.5 - parent: 1 - type: Transform - - uid: 1466 - components: - - rot: 3.141592653589793 rad - pos: -13.5,23.5 - parent: 1 - type: Transform - - uid: 1467 - components: - - rot: 3.141592653589793 rad - pos: -11.5,23.5 - parent: 1 - type: Transform - - uid: 1468 - components: - - rot: 3.141592653589793 rad - pos: -8.5,23.5 - parent: 1 - type: Transform - - uid: 1469 - components: - - rot: 3.141592653589793 rad - pos: -9.5,23.5 - parent: 1 - type: Transform - - uid: 1470 - components: - - pos: -6.5,26.5 - parent: 1 - type: Transform - - uid: 1471 - components: - - rot: 3.141592653589793 rad - pos: -23.5,15.5 - parent: 1 - type: Transform - - uid: 1472 - components: - - rot: 3.141592653589793 rad - pos: -16.5,22.5 - parent: 1 - type: Transform - - uid: 1473 - components: - - rot: 3.141592653589793 rad - pos: -17.5,20.5 - parent: 1 - type: Transform - - uid: 1474 - components: - - rot: 3.141592653589793 rad - pos: -18.5,20.5 - parent: 1 - type: Transform - - uid: 1475 - components: - - rot: 3.141592653589793 rad - pos: -20.5,20.5 - parent: 1 - type: Transform - - uid: 1476 - components: - - rot: 3.141592653589793 rad - pos: -20.5,19.5 - parent: 1 - type: Transform - - uid: 1477 - components: - - rot: 3.141592653589793 rad - pos: -20.5,18.5 - parent: 1 - type: Transform - - uid: 1478 - components: - - rot: 3.141592653589793 rad - pos: -21.5,17.5 - parent: 1 - type: Transform - - uid: 1479 - components: - - rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 1 - type: Transform - - uid: 1480 - components: - - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 1 - type: Transform - - uid: 1481 - components: - - rot: 3.141592653589793 rad - pos: -23.5,16.5 - parent: 1 - type: Transform - - uid: 1482 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 1 - type: Transform - - uid: 1483 - components: - - rot: 3.141592653589793 rad - pos: -25.5,10.5 - parent: 1 - type: Transform - - uid: 1484 - components: - - rot: 3.141592653589793 rad - pos: -26.5,9.5 - parent: 1 - type: Transform - - uid: 1485 - components: - - rot: 3.141592653589793 rad - pos: -27.5,8.5 - parent: 1 - type: Transform - - uid: 1486 - components: - - rot: 3.141592653589793 rad - pos: -27.5,6.5 - parent: 1 - type: Transform - - uid: 1487 - components: - - rot: 3.141592653589793 rad - pos: -27.5,4.5 - parent: 1 - type: Transform - - uid: 1488 - components: - - rot: 3.141592653589793 rad - pos: -27.5,3.5 - parent: 1 - type: Transform - - uid: 1489 - components: - - rot: 3.141592653589793 rad - pos: -27.5,5.5 - parent: 1 - type: Transform - - uid: 1490 - components: - - rot: 3.141592653589793 rad - pos: -27.5,0.5 - parent: 1 - type: Transform - - uid: 1491 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-0.5 - parent: 1 - type: Transform - - uid: 1492 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-0.5 - parent: 1 - type: Transform - - uid: 1493 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-1.5 - parent: 1 - type: Transform - - uid: 1494 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-3.5 - parent: 1 - type: Transform - - uid: 1495 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-3.5 - parent: 1 - type: Transform - - uid: 1496 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - type: Transform - - uid: 1497 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-5.5 - parent: 1 - type: Transform - - uid: 1498 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-5.5 - parent: 1 - type: Transform - - uid: 1499 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-5.5 - parent: 1 - type: Transform - - uid: 1500 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 1 - type: Transform - - uid: 1501 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-9.5 - parent: 1 - type: Transform - - uid: 1502 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-9.5 - parent: 1 - type: Transform - - uid: 1503 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 1 - type: Transform - - uid: 1504 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 1 - type: Transform - - uid: 1505 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-9.5 - parent: 1 - type: Transform - - uid: 1506 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1 - type: Transform - - uid: 1507 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 1 - type: Transform - - uid: 1508 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 1 - type: Transform - - uid: 1509 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 1 - type: Transform - - uid: 1510 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - uid: 1511 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 1 - type: Transform - - uid: 1512 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - uid: 1513 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform - - uid: 1514 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-9.5 - parent: 1 - type: Transform - - uid: 1515 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 1516 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 1517 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 1518 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-7.5 - parent: 1 - type: Transform - - uid: 1519 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 1 - type: Transform - - uid: 1520 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-6.5 - parent: 1 - type: Transform - - uid: 1521 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 1 - type: Transform - - uid: 1522 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-3.5 - parent: 1 - type: Transform - - uid: 1523 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-3.5 - parent: 1 - type: Transform - - uid: 1524 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 1525 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-3.5 - parent: 1 - type: Transform - - uid: 1526 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 1 - type: Transform - - uid: 1527 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-3.5 - parent: 1 - type: Transform - - uid: 1528 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-3.5 - parent: 1 - type: Transform - - uid: 1529 - components: - - rot: 3.141592653589793 rad - pos: 20.5,6.5 - parent: 1 - type: Transform - - uid: 1530 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 1 - type: Transform - - uid: 1531 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-2.5 - parent: 1 - type: Transform - - uid: 1532 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-0.5 - parent: 1 - type: Transform - - uid: 1533 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-0.5 - parent: 1 - type: Transform - - uid: 1534 - components: - - rot: 3.141592653589793 rad - pos: 18.5,1.5 - parent: 1 - type: Transform - - uid: 1535 - components: - - rot: 3.141592653589793 rad - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 1536 - components: - - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 1 - type: Transform - - uid: 1537 - components: - - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 1 - type: Transform - - uid: 1538 - components: - - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 1 - type: Transform - - uid: 1539 - components: - - rot: 3.141592653589793 rad - pos: 23.5,14.5 - parent: 1 - type: Transform - - uid: 1540 - components: - - rot: 3.141592653589793 rad - pos: 21.5,8.5 - parent: 1 - type: Transform - - uid: 1541 - components: - - rot: 3.141592653589793 rad - pos: 22.5,9.5 - parent: 1 - type: Transform - - uid: 1542 - components: - - rot: 3.141592653589793 rad - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 1543 - components: - - rot: 3.141592653589793 rad - pos: 23.5,11.5 - parent: 1 - type: Transform - - uid: 1544 - components: - - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 1 - type: Transform - - uid: 1545 - components: - - rot: 3.141592653589793 rad - pos: 23.5,13.5 - parent: 1 - type: Transform - - uid: 1546 - components: - - rot: 3.141592653589793 rad - pos: 23.5,15.5 - parent: 1 - type: Transform - - uid: 1547 - components: - - rot: 3.141592653589793 rad - pos: 23.5,18.5 - parent: 1 - type: Transform - - uid: 1548 - components: - - rot: 3.141592653589793 rad - pos: 21.5,18.5 - parent: 1 - type: Transform - - uid: 1549 - components: - - rot: 3.141592653589793 rad - pos: 20.5,18.5 - parent: 1 - type: Transform - - uid: 1550 - components: - - rot: 3.141592653589793 rad - pos: 23.5,17.5 - parent: 1 - type: Transform - - uid: 1731 - components: - - pos: -6.5,24.5 - parent: 1 - type: Transform - - uid: 2321 - components: - - pos: -1.5,28.5 - parent: 1 - type: Transform - - uid: 2390 - components: - - pos: -0.5,23.5 - parent: 1 - type: Transform - - uid: 2391 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 2509 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1 - type: Transform - - uid: 2510 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,11.5 - parent: 1 - type: Transform -- proto: GrilleBroken - entities: - - uid: 1456 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,23.5 - parent: 1 - type: Transform - - uid: 1551 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 1 - type: Transform - - uid: 1552 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 1553 - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform - - uid: 1554 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1 - type: Transform - - uid: 1555 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-9.5 - parent: 1 - type: Transform - - uid: 1556 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 1 - type: Transform - - uid: 1557 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 1 - type: Transform - - uid: 1558 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,23.5 - parent: 1 - type: Transform - - uid: 1559 - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - uid: 1560 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 1 - type: Transform - - uid: 1561 - components: - - rot: 3.141592653589793 rad - pos: -27.5,2.5 - parent: 1 - type: Transform - - uid: 1562 - components: - - rot: 3.141592653589793 rad - pos: -26.5,8.5 - parent: 1 - type: Transform - - uid: 1563 - components: - - pos: -25.5,11.5 - parent: 1 - type: Transform - - uid: 1564 - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform - - uid: 1565 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,23.5 - parent: 1 - type: Transform - - uid: 1566 - components: - - pos: 1.5,33.5 - parent: 1 - type: Transform - - uid: 1568 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,34.5 - parent: 1 - type: Transform - - uid: 1569 - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform - - uid: 1570 - components: - - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 1 - type: Transform - - uid: 1571 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,18.5 - parent: 1 - type: Transform - - uid: 1572 - components: - - rot: 3.141592653589793 rad - pos: 22.5,8.5 - parent: 1 - type: Transform - - uid: 1573 - components: - - pos: 20.5,5.5 - parent: 1 - type: Transform - - uid: 1574 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 1 - type: Transform - - uid: 1575 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 2387 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,25.5 - parent: 1 - type: Transform -- proto: HampterKrah - entities: - - uid: 1576 - components: - - pos: 2.4216707,-3.5797577 - parent: 1 - type: Transform -- proto: HampterMed - entities: - - uid: 1577 - components: - - pos: -3.5873346,5.6309385 - parent: 1 - type: Transform -- proto: HandheldGPSBasic - entities: - - uid: 142 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 143 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 1598 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 1599 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 1600 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 1601 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 2440 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 2516 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform -- proto: HighSecArmoryLocked - entities: - - uid: 1584 - components: - - pos: 9.5,7.5 - parent: 1 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 1585 - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - uid: 1586 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform -- proto: HolofanProjector - entities: - - uid: 1587 - components: - - pos: -13.541195,8.28056 - parent: 1 - type: Transform - - uid: 1588 - components: - - pos: -16.637148,7.8123646 - parent: 1 - type: Transform - - uid: 1589 - components: - - pos: -16.637148,7.6717396 - parent: 1 - type: Transform -- proto: Holoprojector - entities: - - uid: 1590 - components: - - rot: -1.5707963267948966 rad - pos: 11.913149,4.676386 - parent: 1 - type: Transform -- proto: HospitalCurtains - entities: - - uid: 1591 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 1592 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform -- proto: Hypospray - entities: - - uid: 211 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 212 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 213 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 214 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 215 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 658 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 668 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2457 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2466 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: IntercomEngineering - entities: - - uid: 1593 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform -- proto: IntercomMedical - entities: - - uid: 1594 - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 1595 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 1 - type: Transform -- proto: JetpackBlackFilled - entities: - - uid: 2441 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2442 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2443 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2444 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2445 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2446 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2447 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2448 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 1602 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 1603 - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - uid: 1604 - components: - - pos: -22.5,4.5 - parent: 1 - type: Transform - - uid: 1605 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform -- proto: Lamp - entities: - - uid: 1606 - components: - - rot: 1.5707963267948966 rad - pos: -13.515244,-3.9131765 - parent: 1 - type: Transform -- proto: Lighter - entities: - - uid: 1607 - components: - - pos: 12.103443,14.525698 - parent: 1 - type: Transform -- proto: LockerAtmosphericsFilled - entities: - - uid: 1608 - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform -- proto: LockerCaptain - entities: - - uid: 705 - components: - - pos: 17.5,13.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: - - 720 - - 714 - - 711 - - 710 - - 707 - - 715 - - 708 - - 718 - - 706 - - 719 - - 709 - - 717 - - 712 - - 716 - - 713 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 1609 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform -- proto: LockerEngineer - entities: - - uid: 626 - components: - - pos: 0.5,18.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: - - 634 - - 633 - - 635 - - 629 - - 636 - - 631 - - 627 - - 632 - - 630 - - 628 - - 637 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 638 - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 645 - - 639 - - 644 - - 646 - - 647 - - 640 - - 648 - - 641 - - 643 - - 642 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2470 - components: - - pos: -1.5,21.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: - - 2474 - - 2473 - - 2472 - - 2471 - - 2475 - - 2476 - - 2477 - - 2478 - - 2479 - - 2480 - - 2481 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2482 - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2486 - - 2485 - - 2484 - - 2483 - - 2487 - - 2488 - - 2489 - - 2490 - - 2491 - - 2492 - - 2493 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerMedical - entities: - - uid: 649 - components: - - pos: 0.5,20.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: - - 654 - - 658 - - 650 - - 656 - - 653 - - 657 - - 655 - - 652 - - 651 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 659 - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 661 - - 667 - - 665 - - 664 - - 662 - - 663 - - 666 - - 660 - - 668 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2450 - components: - - pos: 0.5,21.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: - - 2459 - - 2458 - - 2457 - - 2456 - - 2455 - - 2454 - - 2451 - - 2452 - - 2453 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2460 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2463 - - 2462 - - 2461 - - 2464 - - 2465 - - 2466 - - 2467 - - 2468 - - 2469 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerMedicine - entities: - - uid: 1610 - components: - - pos: -12.5,1.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: - - 1617 - - 1618 - - 1611 - - 1619 - - 1612 - - 1613 - - 1614 - - 1615 - - 1616 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1620 - components: - - pos: -11.5,1.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: - - 1621 - - 1622 - - 1627 - - 1628 - - 1629 - - 1623 - - 1624 - - 1625 - - 1626 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerSecurity - entities: - - uid: 669 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - 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: - - 670 - - 671 - - 672 - - 673 - - 674 - - 675 - - 676 - - 677 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 678 - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - 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: - - 679 - - 680 - - 681 - - 682 - - 683 - - 684 - - 685 - - 686 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 687 - components: - - pos: -1.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - 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: - - 688 - - 689 - - 690 - - 691 - - 692 - - 693 - - 694 - - 695 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 696 - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - 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: - - 697 - - 698 - - 699 - - 700 - - 701 - - 702 - - 703 - - 704 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerWallMedicalFilled - entities: - - uid: 1630 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - uid: 1631 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 1 - type: Transform -- proto: MaterialBiomass - entities: - - uid: 1632 - components: - - rot: -1.5707963267948966 rad - pos: -8.566401,1.2871039 - parent: 1 - type: Transform - - uid: 1633 - components: - - rot: -1.5707963267948966 rad - pos: -8.566401,1.2871039 - parent: 1 - type: Transform - - uid: 1634 - components: - - rot: -1.5707963267948966 rad - pos: -8.566401,1.2871039 - parent: 1 - type: Transform - - uid: 1635 - components: - - rot: -1.5707963267948966 rad - pos: -8.566401,1.2871039 - parent: 1 - type: Transform -- proto: MaterialCloth1 - entities: - - uid: 1636 - components: - - desc: Для вытирания своего тела, да - name: полотенце - type: MetaData - - pos: 3.4162674,24.561844 - parent: 1 - type: Transform -- proto: MedicalBed - entities: - - uid: 1637 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 1638 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 1639 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform -- proto: MedicalScanner - entities: - - uid: 1640 - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 1621 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1622 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1623 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedkitBurnFilled - entities: - - uid: 1611 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1612 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1613 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedkitCombatFilled - entities: - - uid: 1614 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1615 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1616 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedkitOxygenFilled - entities: - - uid: 1624 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1625 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1626 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedkitRadiationFilled - entities: - - uid: 1617 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1618 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1619 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedkitToxinFilled - entities: - - uid: 1627 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1628 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1629 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Mirror - entities: - - uid: 1641 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 1 - type: Transform - - uid: 1642 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,17.5 - parent: 1 - type: Transform - - uid: 1643 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,19.5 - parent: 1 - type: Transform -- proto: MopBucket - entities: - - uid: 1644 - components: - - pos: 11.897524,3.7701359 - parent: 1 - type: Transform -- proto: Morgue - entities: - - uid: 1645 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 1646 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 1647 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform - - uid: 1648 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 1649 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - - uid: 1650 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 1651 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 1652 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 1653 - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 1654 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- proto: Multitool - entities: - - uid: 1655 - components: - - pos: -8.234255,1.2902579 - parent: 1 - type: Transform -- proto: NitrogenTankFilled - entities: - - uid: 12 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 716 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: NitrousOxideTankFilled - entities: - - uid: 1657 - components: - - pos: -15.231249,1.5843751 - parent: 1 - type: Transform -- proto: OperatingTable - entities: - - uid: 1658 - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform - - uid: 1659 - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform -- proto: OxygenCanister - entities: - - uid: 1660 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform -- proto: OxygenTankFilled - entities: - - uid: 717 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: PaperBin10 - entities: - - uid: 1661 - components: - - rot: 3.141592653589793 rad - pos: 13.351419,17.5873 - parent: 1 - type: Transform - - uid: 1662 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform -- proto: Pen - entities: - - uid: 1663 - components: - - rot: -1.5707963267948966 rad - pos: -12.952744,-4.4131765 - parent: 1 - type: Transform -- proto: PinpointerUniversal - entities: - - uid: 718 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: PortableScrubber - entities: - - uid: 1664 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform -- proto: PottedPlantBioluminscent - entities: - - uid: 1665 - components: - - pos: 6.5,28.5 - parent: 1 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 1666 - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform - - uid: 1667 - components: - - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 1668 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 1669 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 1671 - components: - - pos: 6.5,17.5 - parent: 1 - type: Transform -- proto: PottedPlantRandomPlastic - entities: - - uid: 1672 - components: - - pos: -17.5,5.5 - parent: 1 - type: Transform -- proto: PowerCellHyper - entities: - - uid: 1673 - components: - - pos: -13.68182,7.8899345 - parent: 1 - type: Transform - - uid: 1674 - components: - - pos: -13.384945,7.8899345 - parent: 1 - type: Transform - - uid: 1675 - components: - - pos: -16.730898,7.4061146 - parent: 1 - type: Transform - - uid: 1676 - components: - - pos: -16.590273,7.4061146 - parent: 1 - type: Transform - - uid: 1677 - components: - - pos: 12.288149,4.785761 - parent: 1 - type: Transform - - uid: 1678 - components: - - pos: 12.444399,4.785761 - parent: 1 - type: Transform - - uid: 2428 - components: - - pos: -13.384592,7.8890915 - parent: 1 - type: Transform - - uid: 2507 - components: - - pos: -13.384592,7.8890915 - parent: 1 - type: Transform - - uid: 2511 - components: - - pos: -13.681467,7.8890915 - parent: 1 - type: Transform - - uid: 2513 - components: - - pos: -13.665842,7.8890915 - parent: 1 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 1679 - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 1680 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 2424 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 56 - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 57 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 58 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1681 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1682 - components: - - rot: 3.141592653589793 rad - pos: -19.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1683 - components: - - rot: 3.141592653589793 rad - pos: -22.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1684 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1685 - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1686 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1687 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1688 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1689 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1690 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1691 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1692 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1693 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1694 - components: - - pos: -17.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1695 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1696 - components: - - rot: 3.141592653589793 rad - pos: -10.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1697 - components: - - rot: 3.141592653589793 rad - pos: -17.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1698 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1699 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1700 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1701 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1702 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1703 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1704 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1705 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1706 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1707 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1708 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,17.5 - parent: 1 - type: Transform - - uid: 1709 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1710 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1711 - components: - - rot: 3.141592653589793 rad - pos: -12.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1712 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1713 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1714 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1715 - components: - - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1716 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1717 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1718 - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1719 - components: - - pos: -17.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1720 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1721 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1722 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound + - uid: 1247 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 1248 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 1723 components: - - rot: 1.5707963267948966 rad - pos: -17.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1724 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1725 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1726 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1727 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1728 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1729 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1730 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1733 - components: - - rot: 3.141592653589793 rad - pos: -3.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1734 - components: - - rot: 3.141592653589793 rad - pos: -5.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1736 - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1737 - components: - - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1738 - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1739 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1740 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1741 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1742 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1743 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1744 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1745 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1746 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1747 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1748 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1749 - components: - - rot: 3.141592653589793 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1750 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1751 - components: - - rot: 3.141592653589793 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1752 - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1753 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1754 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1755 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1756 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1757 - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1758 - components: - - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1759 - components: - - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1760 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1761 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1762 - components: - - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1763 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1764 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1765 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1766 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1767 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1768 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1769 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1770 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1771 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1772 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1773 - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1774 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1775 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1776 - components: - - rot: 3.141592653589793 rad - pos: -5.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1777 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1778 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1779 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1780 - components: - - rot: 3.141592653589793 rad - pos: 5.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1781 - components: - - rot: 3.141592653589793 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1782 - components: - - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1783 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1784 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1785 - components: - - rot: 3.141592653589793 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1786 - components: - - rot: 3.141592653589793 rad - pos: 11.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1787 - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1788 - components: - - pos: 14.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1789 - components: - - rot: 3.141592653589793 rad - pos: 14.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1790 - components: - - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1791 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1792 - components: - - rot: 3.141592653589793 rad - pos: 11.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2416 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2417 - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2418 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2419 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2439 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- proto: PoweredSmallLight + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 6565 + - type: AtmosDevice + joinedGrid: 6565 +- proto: GasPipeBend entities: - - uid: 1793 + - uid: 895 components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 1794 + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1254 components: - - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform -- proto: Rack - entities: - - uid: 1580 + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,15.5 + parent: 2 + - uid: 1278 components: - - pos: 14.5,10.5 - parent: 1 - type: Transform - - uid: 1656 + - type: Transform + pos: 20.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1339 components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - - uid: 1795 + - type: Transform + pos: 46.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1371 components: - - rot: 1.5707963267948966 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - uid: 1796 + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1372 components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 1797 + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1512 components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - uid: 1798 + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1547 components: - - pos: 12.5,8.5 - parent: 1 - type: Transform - - uid: 1799 + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1598 components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 1800 + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1610 components: - - pos: 12.5,6.5 - parent: 1 - type: Transform - - uid: 1801 + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1614 components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - - uid: 1802 + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1655 components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - - uid: 1803 + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1665 components: - - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 1 - type: Transform - - uid: 1804 + - type: Transform + pos: 51.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1679 components: - - rot: 3.141592653589793 rad - pos: 13.5,12.5 - parent: 1 - type: Transform - - uid: 1805 + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1680 components: - - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 1 - type: Transform - - uid: 1807 + - type: Transform + pos: 52.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1701 components: - - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 1 - type: Transform - - uid: 1808 + - type: Transform + pos: 46.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1715 components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - uid: 1809 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 1 - type: Transform -- proto: RandomFoodBakedSingle - entities: - - uid: 1810 - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- proto: RandomFoodBakedWhole - entities: - - uid: 1811 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- proto: RandomFoodMeal - entities: - - uid: 1812 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 1813 - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform -- proto: RandomFoodSingle - entities: - - uid: 1814 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 1815 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform -- proto: RandomPosterLegit - entities: - - uid: 1816 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform - - uid: 1817 - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform - - uid: 1818 - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1819 components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 1820 - components: - - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 1821 - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - uid: 1823 - components: - - pos: 17.5,14.5 - parent: 1 - type: Transform -- proto: RandomSoap - entities: - - uid: 1824 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform -- proto: RandomSpawner - entities: - - uid: 1825 - components: - - rot: 3.141592653589793 rad - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 1826 - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform - - uid: 1827 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 1828 - components: - - pos: 6.5,19.5 - parent: 1 - type: Transform - - uid: 1829 - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform - - uid: 1830 - components: - - pos: -0.5,14.5 - parent: 1 - type: Transform - - uid: 1831 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 1832 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform -- proto: RandomVending - entities: - - uid: 1833 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 1834 - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform - - uid: 1835 - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 1836 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 1837 - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 1838 - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform -- proto: RCD - entities: - - uid: 633 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 645 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1839 - components: - - rot: -1.5707963267948966 rad - pos: -13.02557,7.5930595 - parent: 1 - type: Transform - - uid: 2481 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2493 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: RCDAmmo - entities: - - uid: 634 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 635 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 636 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 646 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 647 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 648 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1840 - components: - - rot: 1.5707963267948966 rad - pos: -12.36932,7.7961845 - parent: 1 - type: Transform - - uid: 1841 - components: - - rot: 1.5707963267948966 rad - pos: -12.36932,7.7961845 - parent: 1 - type: Transform - - uid: 1842 - components: - - rot: 1.5707963267948966 rad - pos: -12.36932,7.7961845 - parent: 1 - type: Transform - - uid: 1843 - components: - - rot: 1.5707963267948966 rad - pos: -12.36932,7.7961845 - parent: 1 - type: Transform - - uid: 1844 - components: - - rot: 1.5707963267948966 rad - pos: -12.36932,7.7961845 - parent: 1 - type: Transform - - uid: 2477 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2478 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2480 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2490 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2491 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2492 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ReinforcedPlasmaWindow - entities: - - uid: 1845 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,11.5 - parent: 1 - type: Transform - - uid: 1846 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 1418 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - uid: 1847 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - uid: 1848 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 1849 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 1850 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,35.5 - parent: 1 - type: Transform - - uid: 1851 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1852 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 1853 - components: - - rot: 3.141592653589793 rad - pos: -7.5,2.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1854 components: - - rot: 3.141592653589793 rad - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 1855 - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 1856 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 1857 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 1 - type: Transform - - uid: 1858 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 1859 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 1 - type: Transform - - uid: 1860 - components: - - rot: 3.141592653589793 rad - pos: 13.5,18.5 - parent: 1 - type: Transform - - uid: 1861 - components: - - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 1 - type: Transform - - uid: 1862 - components: - - rot: 3.141592653589793 rad - pos: 11.5,18.5 - parent: 1 - type: Transform - - uid: 1863 - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 1 - type: Transform - - uid: 1864 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,4.5 - parent: 1 - type: Transform - - uid: 1865 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,33.5 - parent: 1 - type: Transform - - uid: 1866 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 1 - type: Transform - - uid: 1867 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - uid: 1868 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 1 - type: Transform - - uid: 1869 - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 1870 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 1873 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 1875 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,27.5 - parent: 1 - type: Transform - - uid: 1876 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,26.5 - parent: 1 - type: Transform - - uid: 1877 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform - - uid: 1878 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 1879 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - - uid: 1880 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1881 components: - - pos: 18.5,13.5 - parent: 1 - type: Transform - - uid: 1882 - components: - - pos: 18.5,12.5 - parent: 1 - type: Transform - - uid: 1883 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 1884 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 1885 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 2142 - components: - - pos: -0.5,23.5 - parent: 1 - type: Transform -- proto: RiotBulletShield - entities: - - uid: 1886 - components: - - pos: 12.378235,6.6466303 - parent: 1 - type: Transform - - uid: 1887 - components: - - pos: 12.534485,6.6310053 - parent: 1 - type: Transform - - uid: 1888 - components: - - pos: 12.67511,6.6310053 - parent: 1 - type: Transform -- proto: RiotShield - entities: - - uid: 1889 - components: - - pos: 12.70636,6.4591303 - parent: 1 - type: Transform - - uid: 1890 - components: - - pos: 12.565735,6.4591303 - parent: 1 - type: Transform - - uid: 1891 - components: - - pos: 12.42511,6.4591303 - parent: 1 - type: Transform -- proto: RubberStampApproved - entities: - - uid: 1892 - components: - - pos: 13.757669,17.8373 - parent: 1 - type: Transform -- proto: RubberStampCentcom - entities: - - uid: 1893 - components: - - pos: 13.757669,17.540424 - parent: 1 - type: Transform -- proto: RubberStampDenied - entities: - - uid: 1894 - components: - - pos: 13.757669,17.7123 - parent: 1 - type: Transform -- proto: SheetGlass - entities: - - uid: 1895 - components: - - pos: -11.446348,7.5056324 - parent: 1 - type: Transform - - uid: 1896 - components: - - pos: -11.446348,7.5056324 - parent: 1 - type: Transform - - uid: 1897 - components: - - pos: -11.446348,7.5056324 - parent: 1 - type: Transform -- proto: SheetPlasma - entities: - - uid: 137 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 138 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 139 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 140 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 141 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SheetPlasteel - entities: - - uid: 1898 - components: - - pos: -11.470959,7.482976 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1899 components: - - pos: -11.470959,7.482976 - parent: 1 - type: Transform - - uid: 1900 - components: - - pos: -11.470959,7.482976 - parent: 1 - type: Transform - - uid: 1901 - components: - - pos: -11.470959,7.482976 - parent: 1 - type: Transform - - uid: 1902 - components: - - pos: -11.470959,7.482976 - parent: 1 - type: Transform -- proto: SheetRGlass - entities: - - uid: 1903 - components: - - pos: -11.493223,7.4587574 - parent: 1 - type: Transform - - uid: 1904 - components: - - pos: -11.493223,7.4587574 - parent: 1 - type: Transform - - uid: 1905 - components: - - pos: -11.493223,7.4587574 - parent: 1 - type: Transform -- proto: SheetRPGlass - entities: - - uid: 1906 - components: - - pos: -11.477598,7.4431324 - parent: 1 - type: Transform - - uid: 1907 - components: - - pos: -11.477598,7.4431324 - parent: 1 - type: Transform - - uid: 1908 - components: - - pos: -11.477598,7.4431324 - parent: 1 - type: Transform -- proto: SheetSteel - entities: - - uid: 1909 - components: - - pos: -11.424084,7.498601 - parent: 1 - type: Transform - - uid: 1910 - components: - - pos: -11.424084,7.498601 - parent: 1 - type: Transform - - uid: 1911 - components: - - pos: -11.424084,7.498601 - parent: 1 - type: Transform - - uid: 1912 - components: - - pos: -11.424084,7.498601 - parent: 1 - type: Transform - - uid: 1913 - components: - - pos: -11.424084,7.498601 - parent: 1 - type: Transform -- proto: SignArmory - entities: - - uid: 1914 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 1 - type: Transform -- proto: SignAtmos - entities: - - uid: 1915 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,8.5 - parent: 1 - type: Transform -- proto: SignBridge - entities: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1916 components: - - pos: 9.5,14.5 - parent: 1 - type: Transform -- proto: SignEngineering - entities: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1917 components: - - rot: -1.5707963267948966 rad - pos: -6.5,12.5 - parent: 1 - type: Transform -- proto: SignEVA - entities: - - uid: 1918 - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform -- proto: SignMedical - entities: - - uid: 1919 - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform -- proto: SignMorgue - entities: - - uid: 1920 - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform -- proto: SignShipDock - entities: - - uid: 1921 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,16.5 - parent: 1 - type: Transform -- proto: SignSurgery - entities: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1922 components: - - pos: -15.5,2.5 - parent: 1 - type: Transform -- proto: SignVirology - entities: - - uid: 1923 - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform -- proto: SinkWide - entities: - - uid: 1924 - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform - - uid: 1925 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - uid: 1926 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 1927 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,19.5 - parent: 1 - type: Transform - - uid: 1928 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 1 - type: Transform -- proto: SMESBasic - entities: - - uid: 1929 - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform - - autoRechargeRate: 8000000 - autoRecharge: True - type: BatterySelfRecharger - - uid: 1930 - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform - - autoRechargeRate: 8000000 - autoRecharge: True - type: BatterySelfRecharger - - uid: 1931 - components: - - pos: -13.5,11.5 - parent: 1 - type: Transform - - autoRechargeRate: 8000000 - autoRecharge: True - type: BatterySelfRecharger -- proto: SoapNT - entities: - - uid: 1932 - components: - - pos: 4.5256424,24.530594 - parent: 1 - type: Transform -- proto: SpawnMobCleanBot - entities: - - uid: 1933 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 1934 - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform - - uid: 1935 - components: - - pos: 1.5,14.5 - parent: 1 - type: Transform -- proto: SpawnMobMedibot - entities: - - uid: 1936 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform -- proto: SpawnPointERTEventERTEngineerEVA - entities: - - uid: 2531 - components: - - pos: -9.5,17.5 - parent: 1 - type: Transform - - uid: 2532 - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform - - uid: 2533 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 2534 - components: - - pos: -10.5,13.5 - parent: 1 - type: Transform -- proto: SpawnPointERTEventERTLeaderEVA - entities: - - uid: 2535 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform -- proto: SpawnPointERTEventERTMedicalEVA - entities: - - uid: 2527 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 2528 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - uid: 2529 - components: - - pos: -6.5,0.5 - parent: 1 - type: Transform - - uid: 2530 - components: - - pos: -12.5,4.5 - parent: 1 - type: Transform -- proto: SpawnPointERTEventERTSecurityEVA - entities: - - uid: 2523 - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform - - uid: 2524 - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform - - uid: 2525 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - uid: 2526 - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 1937 - components: - - rot: 3.141592653589793 rad - pos: 10.5,2.5 - parent: 1 - type: Transform -- proto: SprayBottleSpaceCleaner - entities: - - uid: 1938 - components: - - pos: 11.319399,4.723261 - parent: 1 - type: Transform - - uid: 1939 - components: - - pos: 11.506899,4.723261 - parent: 1 - type: Transform - - uid: 1940 - components: - - pos: 11.678774,4.707636 - parent: 1 - type: Transform - - uid: 1941 - components: - - pos: 11.678774,4.567011 - parent: 1 - type: Transform - - uid: 1942 - components: - - pos: 11.475649,4.567011 - parent: 1 - type: Transform - - uid: 1943 - components: - - pos: 11.335024,4.567011 - parent: 1 - type: Transform -- proto: StasisBed - entities: - - uid: 1944 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform -- proto: Stunbaton - entities: - - uid: 1945 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform - - uid: 1946 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform - - uid: 1947 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform - - uid: 1948 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform - - uid: 1949 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform - - uid: 1982 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform -- proto: SubstationBasic - entities: - - uid: 1951 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 1952 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 1953 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 1954 - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform -- proto: SyringeBluespace - entities: - - uid: 216 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 217 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 218 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 219 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: TableReinforced - entities: - - uid: 603 - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform - - uid: 604 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - uid: 1955 - components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 1956 - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform - - uid: 1957 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - uid: 1958 - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 1959 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 1 - type: Transform - - uid: 1960 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,7.5 - parent: 1 - type: Transform - - uid: 1961 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 1962 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 1963 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,7.5 - parent: 1 - type: Transform - - uid: 1964 - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 1965 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 1966 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 1967 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 1968 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1969 components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform - - uid: 1970 - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1971 components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform - - uid: 1972 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 1973 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 1974 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 1975 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 1976 - components: - - pos: -2.5,-4.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1977 components: - - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - type: Transform + - type: Transform + pos: 20.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1978 components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 1979 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 1 - type: Transform - - uid: 1980 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,14.5 - parent: 1 - type: Transform - - uid: 1981 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 1983 - components: - - rot: 3.141592653589793 rad - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 1984 - components: - - rot: 3.141592653589793 rad - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 1985 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform - - uid: 1986 - components: - - pos: -13.5,-4.5 - parent: 1 - type: Transform - - uid: 1987 - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform -- proto: TableReinforcedGlass - entities: - - uid: 1988 - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - uid: 1989 - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - uid: 1990 - components: - - pos: -22.5,4.5 - parent: 1 - type: Transform - - uid: 1991 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - uid: 1992 - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform -- proto: TelecomServerFilled - entities: - - uid: 1993 - components: - - pos: 15.5,17.5 - parent: 1 - type: Transform - - uid: 1994 - components: - - pos: 15.5,16.5 - parent: 1 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 1995 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 1996 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 1997 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1 - type: Transform -- proto: ToyFigurineMedicalDoctor - entities: - - uid: 1998 - components: - - pos: -12.694241,5.5293202 - parent: 1 - type: Transform -- proto: ToyRubberDuck - entities: - - uid: 1999 - components: - - pos: 2.4475174,24.655594 - parent: 1 - type: Transform -- proto: Truncheon - entities: - - uid: 144 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform - - uid: 145 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform - - uid: 1950 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform - - uid: 2000 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform - - uid: 2001 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform - - uid: 2002 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform -- proto: Vaccinator - entities: - - uid: 2003 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 2004 - components: - - pos: 12.515272,4.554459 - parent: 1 - type: Transform -- proto: VendingMachineAmmo - entities: - - uid: 151 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,6.5 - parent: 1 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 2005 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,14.5 - parent: 1 - type: Transform -- proto: VendingMachineCoffee - entities: - - uid: 2006 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-2.5 - parent: 1 - type: Transform -- proto: VendingMachineCondiments - entities: - - uid: 2007 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 2008 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-4.5 - parent: 1 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 756 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,16.5 - parent: 1 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 2009 - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,6.5 - parent: 1 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 2010 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,6.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 2011 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,12.5 - parent: 1 - type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 2012 - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,9.5 - parent: 1 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 754 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,17.5 - parent: 1 - type: Transform -- proto: VirusologHampter - entities: - - uid: 2013 - components: - - pos: -19.93943,5.556874 - parent: 1 - type: Transform -- proto: WallReinforced - entities: - - uid: 1463 - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform - - uid: 1567 - components: - - pos: -2.5,21.5 - parent: 1 - type: Transform - - uid: 2014 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 2015 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 2016 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 2017 - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 2018 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - uid: 2019 - components: - - rot: 3.141592653589793 rad - pos: -12.5,14.5 - parent: 1 - type: Transform - - uid: 2020 - components: - - rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 2021 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 2022 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - uid: 2023 - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 2024 - components: - - rot: 3.141592653589793 rad - pos: -11.5,14.5 - parent: 1 - type: Transform - - uid: 2025 - components: - - pos: -12.5,17.5 - parent: 1 - type: Transform - - uid: 2026 - components: - - rot: 3.141592653589793 rad - pos: -13.5,14.5 - parent: 1 - type: Transform - - uid: 2027 - components: - - rot: 3.141592653589793 rad - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 2028 - components: - - rot: 3.141592653589793 rad - pos: -7.5,14.5 - parent: 1 - type: Transform - - uid: 2029 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,13.5 - parent: 1 - type: Transform - - uid: 2030 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,8.5 - parent: 1 - type: Transform - - uid: 2031 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 1 - type: Transform - - uid: 2032 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,14.5 - parent: 1 - type: Transform - - uid: 2033 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,14.5 - parent: 1 - type: Transform - - uid: 2034 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,13.5 - parent: 1 - type: Transform - - uid: 2035 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,12.5 - parent: 1 - type: Transform - - uid: 2036 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 2037 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,6.5 - parent: 1 - type: Transform - - uid: 2038 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - uid: 2039 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 2040 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 2041 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 2042 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1 - type: Transform - - uid: 2043 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,13.5 - parent: 1 - type: Transform - - uid: 2044 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,14.5 - parent: 1 - type: Transform - - uid: 2045 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1 - type: Transform - - uid: 2046 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 1 - type: Transform - - uid: 2047 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,9.5 - parent: 1 - type: Transform - - uid: 2048 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,12.5 - parent: 1 - type: Transform - - uid: 2049 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,12.5 - parent: 1 - type: Transform - - uid: 2050 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 2051 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 1 - type: Transform - - uid: 2052 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,8.5 - parent: 1 - type: Transform - - uid: 2053 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 2054 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 2055 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1 - type: Transform - - uid: 2056 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 2057 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 1 - type: Transform - - uid: 2058 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 2059 - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform - - uid: 2060 - components: - - pos: -18.5,6.5 - parent: 1 - type: Transform - - uid: 2061 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 2062 components: - - rot: -1.5707963267948966 rad - pos: -16.5,6.5 - parent: 1 - type: Transform - - uid: 2063 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,6.5 - parent: 1 - type: Transform - - uid: 2064 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 2065 components: - - pos: -14.5,7.5 - parent: 1 - type: Transform - - uid: 2066 - components: - - pos: -21.5,6.5 - parent: 1 - type: Transform - - uid: 2067 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,2.5 - parent: 1 - type: Transform - - uid: 2068 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 2069 - components: - - pos: -14.5,1.5 - parent: 1 - type: Transform - - uid: 2070 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform - - uid: 2071 - components: - - pos: -9.5,-1.5 - parent: 1 - type: Transform - - uid: 2072 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 1 - type: Transform - - uid: 2073 - components: - - rot: 3.141592653589793 rad - pos: 5.5,17.5 - parent: 1 - type: Transform - - uid: 2074 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1 - type: Transform - - uid: 2075 - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform - - uid: 2076 - components: - - rot: 3.141592653589793 rad - pos: -16.5,11.5 - parent: 1 - type: Transform - - uid: 2077 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-1.5 - parent: 1 - type: Transform - - uid: 2078 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 1 - type: Transform - - uid: 2079 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-1.5 - parent: 1 - type: Transform - - uid: 2080 - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform - - uid: 2081 - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 2082 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - uid: 2083 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 2084 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1 - type: Transform - - uid: 2085 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - uid: 2086 - components: - - pos: -6.5,16.5 - parent: 1 - type: Transform - - uid: 2087 - components: - - pos: -2.5,16.5 - parent: 1 - type: Transform - - uid: 2089 - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 2090 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 2091 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 2092 - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform - - uid: 2093 - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform - - uid: 2094 - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform - - uid: 2095 - components: - - pos: -1.5,6.5 - parent: 1 - type: Transform - - uid: 2096 - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - - uid: 2097 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1 - type: Transform - - uid: 2098 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1 - type: Transform - - uid: 2099 - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 2100 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 2101 - components: - - pos: -2.5,8.5 - parent: 1 - type: Transform - - uid: 2102 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 2103 - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform - - uid: 2104 - components: - - pos: -2.5,9.5 - parent: 1 - type: Transform - - uid: 2105 - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 2106 - components: - - pos: 5.5,25.5 - parent: 1 - type: Transform - - uid: 2107 - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform - - uid: 2108 - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform - - uid: 2109 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 2110 - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform - - uid: 2111 - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform - - uid: 2112 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform - - uid: 2113 - components: - - pos: 5.5,31.5 - parent: 1 - type: Transform - - uid: 2114 - components: - - pos: 5.5,30.5 - parent: 1 - type: Transform - - uid: 2115 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,24.5 - parent: 1 - type: Transform - - uid: 2116 - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform - - uid: 2117 - components: - - rot: 3.141592653589793 rad - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 2118 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,20.5 - parent: 1 - type: Transform + - type: Transform + pos: 46.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 2119 components: - - rot: -1.5707963267948966 rad - pos: 9.5,29.5 - parent: 1 - type: Transform - - uid: 2120 - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform - - uid: 2121 - components: - - rot: 3.141592653589793 rad - pos: 3.5,16.5 - parent: 1 - type: Transform - - uid: 2122 - components: - - pos: -6.5,15.5 - parent: 1 - type: Transform - - uid: 2123 - components: - - pos: -6.5,14.5 - parent: 1 - type: Transform - - uid: 2124 - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform - - uid: 2125 - components: - - pos: -4.5,13.5 - parent: 1 - type: Transform - - uid: 2126 - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform - - uid: 2127 - components: - - pos: -2.5,17.5 - parent: 1 - type: Transform - - uid: 2128 - components: - - pos: 2.5,13.5 - parent: 1 - type: Transform - - uid: 2129 - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform - - uid: 2130 - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 2131 components: - - pos: -1.5,13.5 - parent: 1 - type: Transform - - uid: 2132 - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform - - uid: 2133 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,33.5 - parent: 1 - type: Transform - - uid: 2134 - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform - - uid: 2135 - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform - - uid: 2136 - components: - - pos: -2.5,20.5 - parent: 1 - type: Transform - - uid: 2137 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,16.5 - parent: 1 - type: Transform - - uid: 2138 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 2139 - components: - - pos: 5.5,16.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 2140 components: - - rot: 3.141592653589793 rad - pos: 5.5,19.5 - parent: 1 - type: Transform - - uid: 2141 - components: - - rot: 3.141592653589793 rad - pos: 5.5,18.5 - parent: 1 - type: Transform - - uid: 2143 - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - uid: 2144 - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform + - type: Transform + pos: 50.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 2145 components: - - pos: 3.5,25.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 2146 components: - - pos: 2.5,25.5 - parent: 1 - type: Transform - - uid: 2147 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform - - uid: 2148 - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform - - uid: 2149 - components: - - pos: 5.5,13.5 - parent: 1 - type: Transform - - uid: 2150 - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform - - uid: 2151 - components: - - pos: 1.5,16.5 - parent: 1 - type: Transform - - uid: 2152 - components: - - pos: -1.5,16.5 - parent: 1 - type: Transform - - uid: 2153 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - uid: 2154 - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform - - uid: 2155 - components: - - pos: 1.5,20.5 - parent: 1 - type: Transform - - uid: 2156 - components: - - pos: 1.5,17.5 - parent: 1 - type: Transform - - uid: 2157 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,16.5 - parent: 1 - type: Transform - - uid: 2158 - components: - - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 1 - type: Transform - - uid: 2159 - components: - - rot: 3.141592653589793 rad - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 2160 - components: - - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 2161 - components: - - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 2162 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,34.5 - parent: 1 - type: Transform - - uid: 2163 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,26.5 - parent: 1 - type: Transform - - uid: 2164 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,34.5 - parent: 1 - type: Transform - - uid: 2165 - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - uid: 2166 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 2167 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - uid: 2168 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - uid: 2169 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform - - uid: 2170 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,4.5 - parent: 1 - type: Transform - - uid: 2171 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,3.5 - parent: 1 - type: Transform - - uid: 2172 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 2173 - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform - - uid: 2174 - components: - - rot: 3.141592653589793 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 2175 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 - type: Transform - - uid: 2176 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 2177 - components: - - rot: 3.141592653589793 rad - pos: -13.5,10.5 - parent: 1 - type: Transform - - uid: 2178 - components: - - rot: 3.141592653589793 rad - pos: 9.5,1.5 - parent: 1 - type: Transform + - type: Transform + pos: 51.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 2179 components: - - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 1 - type: Transform - - uid: 2180 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 1 - type: Transform - - uid: 2181 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 1 - type: Transform - - uid: 2182 - components: - - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 1 - type: Transform - - uid: 2183 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - uid: 2184 - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform - - uid: 2185 - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform - - uid: 2186 - components: - - pos: 3.5,6.5 - parent: 1 - type: Transform - - uid: 2187 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 1 - type: Transform - - uid: 2188 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform + - type: Transform + pos: 45.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 2189 components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 2190 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 2191 - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform - - uid: 2192 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 2193 - components: - - pos: 9.5,14.5 - parent: 1 - type: Transform - - uid: 2194 - components: - - pos: 9.5,17.5 - parent: 1 - type: Transform - - uid: 2195 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - uid: 2196 - components: - - pos: 9.5,13.5 - parent: 1 - type: Transform - - uid: 2197 - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform - - uid: 2198 - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform - - uid: 2199 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 2200 - components: - - pos: 9.5,16.5 - parent: 1 - type: Transform - - uid: 2201 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 1 - type: Transform - - uid: 2202 - components: - - pos: 9.5,10.5 - parent: 1 - type: Transform - - uid: 2203 - components: - - pos: 9.5,18.5 - parent: 1 - type: Transform - - uid: 2204 - components: - - pos: 9.5,5.5 - parent: 1 - type: Transform - - uid: 2205 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 2206 - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform - - uid: 2207 - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform - - uid: 2208 - components: - - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 1 - type: Transform - - uid: 2209 - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform - - uid: 2210 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 1 - type: Transform - - uid: 2211 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 1 - type: Transform - - uid: 2212 - components: - - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 1 - type: Transform - - uid: 2213 - components: - - rot: 3.141592653589793 rad - pos: 11.5,1.5 - parent: 1 - type: Transform - - uid: 2214 - components: - - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 1 - type: Transform - - uid: 2215 - components: - - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 2216 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,8.5 - parent: 1 - type: Transform - - uid: 2217 - components: - - rot: 3.141592653589793 rad - pos: -12.5,10.5 - parent: 1 - type: Transform - - uid: 2218 - components: - - rot: 3.141592653589793 rad - pos: -11.5,10.5 - parent: 1 - type: Transform - - uid: 2219 - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 2220 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 2221 - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform - - uid: 2222 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform - - uid: 2223 - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform - - uid: 2224 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 2225 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 2226 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 2227 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 2228 - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - uid: 2229 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform - - uid: 2230 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 2231 - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - - uid: 2232 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 2233 - components: - - pos: -0.5,-5.5 - parent: 1 - type: Transform - - uid: 2234 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,13.5 - parent: 1 - type: Transform - - uid: 2235 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,12.5 - parent: 1 - type: Transform - - uid: 2236 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,10.5 - parent: 1 - type: Transform - - uid: 2237 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 1 - type: Transform - - uid: 2238 - components: - - rot: 3.141592653589793 rad - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 2239 - components: - - rot: 3.141592653589793 rad - pos: 15.5,6.5 - parent: 1 - type: Transform - - uid: 2240 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform - - uid: 2241 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,8.5 - parent: 1 - type: Transform - - uid: 2242 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 2243 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 1 - type: Transform - - uid: 2244 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 1 - type: Transform - - uid: 2245 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 1 - type: Transform - - uid: 2246 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 1 - type: Transform - - uid: 2247 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,9.5 - parent: 1 - type: Transform - - uid: 2248 - components: - - rot: 3.141592653589793 rad - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 2249 - components: - - rot: 3.141592653589793 rad - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 2250 - components: - - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 1 - type: Transform - - uid: 2251 - components: - - rot: 3.141592653589793 rad - pos: -6.5,8.5 - parent: 1 - type: Transform - - uid: 2252 - components: - - rot: 3.141592653589793 rad - pos: -6.5,7.5 - parent: 1 - type: Transform - - uid: 2253 - components: - - rot: 3.141592653589793 rad - pos: -6.5,6.5 - parent: 1 - type: Transform - - uid: 2254 - components: - - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 1 - type: Transform - - uid: 2255 - components: - - rot: 3.141592653589793 rad - pos: -3.5,6.5 - parent: 1 - type: Transform - - uid: 2256 - components: - - rot: 3.141592653589793 rad - pos: -7.5,7.5 - parent: 1 - type: Transform - - uid: 2257 - components: - - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 2258 - components: - - rot: 3.141592653589793 rad - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 2259 - components: - - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 2260 - components: - - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 2261 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 1 - type: Transform - - uid: 2262 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - uid: 2263 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 2264 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 2265 - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform - - uid: 2266 - components: - - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 2267 - components: - - pos: -20.5,6.5 - parent: 1 - type: Transform - - uid: 2268 - components: - - pos: -23.5,2.5 - parent: 1 - type: Transform - - uid: 2269 - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform - - uid: 2270 - components: - - pos: -23.5,3.5 - parent: 1 - type: Transform - - uid: 2271 - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform - - uid: 2272 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - uid: 2273 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 1 - type: Transform - - uid: 2274 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 2275 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 1 - type: Transform - - uid: 2276 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 1 - type: Transform - - uid: 2277 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 1 - type: Transform - - uid: 2278 - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform - - uid: 2279 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,2.5 - parent: 1 - type: Transform - - uid: 2280 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,18.5 - parent: 1 - type: Transform - - uid: 2281 - components: - - pos: 18.5,17.5 - parent: 1 - type: Transform - - uid: 2282 - components: - - pos: 16.5,18.5 - parent: 1 - type: Transform - - uid: 2283 - components: - - pos: 17.5,18.5 - parent: 1 - type: Transform - - uid: 2284 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,13.5 - parent: 1 - type: Transform - - uid: 2285 - components: - - pos: 15.5,18.5 - parent: 1 - type: Transform - - uid: 2286 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 1 - type: Transform - - uid: 2287 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 1 - type: Transform - - uid: 2288 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 1 - type: Transform - - uid: 2289 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,1.5 - parent: 1 - type: Transform - - uid: 2290 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,2.5 - parent: 1 - type: Transform - - uid: 2291 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,3.5 - parent: 1 - type: Transform - - uid: 2292 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 2293 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,2.5 - parent: 1 - type: Transform - - uid: 2294 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,2.5 - parent: 1 - type: Transform - - uid: 2295 - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 2296 - components: - - pos: 18.5,16.5 - parent: 1 - type: Transform - - uid: 2297 - components: - - pos: 18.5,14.5 - parent: 1 - type: Transform - - uid: 2298 - components: - - pos: 15.5,14.5 - parent: 1 - type: Transform - - uid: 2299 - components: - - rot: 3.141592653589793 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - uid: 2300 - components: - - rot: 3.141592653589793 rad - pos: 14.5,17.5 - parent: 1 - type: Transform - - uid: 2301 - components: - - rot: 3.141592653589793 rad - pos: -19.5,10.5 - parent: 1 - type: Transform - - uid: 2302 - components: - - rot: 3.141592653589793 rad - pos: -20.5,9.5 - parent: 1 - type: Transform - - uid: 2303 - components: - - rot: 3.141592653589793 rad - pos: -20.5,8.5 - parent: 1 - type: Transform - - uid: 2304 - components: - - rot: 3.141592653589793 rad - pos: -20.5,7.5 - parent: 1 - type: Transform - - uid: 2305 - components: - - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 1 - type: Transform - - uid: 2306 - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform - - uid: 2307 - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 2308 - components: - - pos: -7.5,18.5 - parent: 1 - type: Transform - - uid: 2309 - components: - - rot: 3.141592653589793 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - uid: 2310 - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform - - uid: 2311 - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 2312 - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 2313 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 2314 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 1 - type: Transform - - uid: 2315 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 1 - type: Transform - - uid: 2316 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 1 - type: Transform - - uid: 2317 - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform - - uid: 2320 - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform - - uid: 2414 - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform -- proto: WallSolidDiagonal + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 6565 + - uid: 6758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 6565 +- proto: GasPipeFourway entities: + - uid: 886 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1259 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1263 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1306 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1390 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1394 + components: + - type: Transform + pos: 39.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1399 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1459 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1487 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1683 + components: + - type: Transform + pos: 51.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1727 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1728 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1768 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1784 + components: + - type: Transform + pos: 9.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1793 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1932 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1991 + components: + - type: Transform + pos: 27.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2141 + components: + - type: Transform + pos: 50.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6759 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6760 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6761 + components: + - type: Transform + pos: 0.5,3.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6762 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6763 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6764 + components: + - type: Transform + pos: 1.5,2.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasPipeStraight + entities: + - uid: 1252 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1268 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1269 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1270 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1271 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1272 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1273 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1274 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1275 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1276 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1277 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1334 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1335 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1341 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1342 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1347 + components: + - type: Transform + pos: 50.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1348 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1400 + components: + - type: Transform + pos: 31.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1401 + components: + - type: Transform + pos: 31.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1402 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1403 + components: + - type: Transform + pos: 35.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1404 + components: + - type: Transform + pos: 35.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1405 + components: + - type: Transform + pos: 39.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1406 + components: + - type: Transform + pos: 35.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1407 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1408 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1409 + components: + - type: Transform + pos: 39.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1410 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1411 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1412 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1413 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1414 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1415 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1416 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1417 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1452 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1453 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1454 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1455 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1456 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1457 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1458 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1474 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1496 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1497 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1498 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1499 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1514 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1515 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1516 + components: + - type: Transform + pos: -1.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1518 + components: + - type: Transform + pos: -1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1519 + components: + - type: Transform + pos: -1.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1520 + components: + - type: Transform + pos: -1.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1521 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1522 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1523 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1622 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1636 + components: + - type: Transform + pos: 45.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1638 + components: + - type: Transform + pos: 45.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1639 + components: + - type: Transform + pos: 45.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1674 + components: + - type: Transform + pos: 51.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1675 + components: + - type: Transform + pos: 51.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1676 + components: + - type: Transform + pos: 51.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1681 + components: + - type: Transform + pos: 52.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1682 + components: + - type: Transform + pos: 52.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1702 + components: + - type: Transform + pos: 46.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1704 + components: + - type: Transform + pos: 43.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1706 + components: + - type: Transform + pos: 43.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1707 + components: + - type: Transform + pos: 43.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1708 + components: + - type: Transform + pos: 43.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1718 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1720 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1721 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 1735 components: - - pos: -6.5,21.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1745 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1746 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1747 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1748 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1749 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1750 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1751 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1755 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1756 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1757 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1769 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1770 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1771 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1802 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1803 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1804 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1805 + components: + - type: Transform + pos: 9.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1820 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1821 + components: + - type: Transform + pos: -0.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1822 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1824 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1825 + components: + - type: Transform + pos: -0.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1826 + components: + - type: Transform + pos: -0.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1827 + components: + - type: Transform + pos: -0.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1828 + components: + - type: Transform + pos: -0.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1879 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1884 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1892 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1893 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1894 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1895 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1909 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1910 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1921 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1928 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1933 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1935 + components: + - type: Transform + pos: 38.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1936 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1937 + components: + - type: Transform + pos: 38.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1938 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1939 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1946 + components: + - type: Transform + pos: 30.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1947 + components: + - type: Transform + pos: 30.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1948 + components: + - type: Transform + pos: 30.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1949 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1950 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1951 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1952 + components: + - type: Transform + pos: 34.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1953 + components: + - type: Transform + pos: 34.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1954 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1955 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1956 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1957 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1959 + components: + - type: Transform + pos: 41.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1960 + components: + - type: Transform + pos: 41.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1961 + components: + - type: Transform + pos: 41.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1970 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1974 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1975 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1976 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1980 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1981 + components: + - type: Transform + pos: 27.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1982 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1983 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1984 + components: + - type: Transform + pos: 27.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1985 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1986 + components: + - type: Transform + pos: 27.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1987 + components: + - type: Transform + pos: 27.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1988 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1989 + components: + - type: Transform + pos: 27.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1990 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2049 + components: + - type: Transform + pos: 41.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2056 + components: + - type: Transform + pos: 34.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2061 + components: + - type: Transform + pos: 43.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2066 + components: + - type: Transform + pos: 46.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2067 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2142 + components: + - type: Transform + pos: 50.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2147 + components: + - type: Transform + pos: 51.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2148 + components: + - type: Transform + pos: 51.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2154 + components: + - type: Transform + pos: 47.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2155 + components: + - type: Transform + pos: 47.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2156 + components: + - type: Transform + pos: 47.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2157 + components: + - type: Transform + pos: 47.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2158 + components: + - type: Transform + pos: 47.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2159 + components: + - type: Transform + pos: 49.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2160 + components: + - type: Transform + pos: 49.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2161 + components: + - type: Transform + pos: 49.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2162 + components: + - type: Transform + pos: 49.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2165 + components: + - type: Transform + pos: 50.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2177 + components: + - type: Transform + pos: 45.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2178 + components: + - type: Transform + pos: 45.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2183 + components: + - type: Transform + pos: 42.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2184 + components: + - type: Transform + pos: 42.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2186 + components: + - type: Transform + pos: 42.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2187 + components: + - type: Transform + pos: 42.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2190 + components: + - type: Transform + pos: 40.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2191 + components: + - type: Transform + pos: 40.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3976 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,27.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6766 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6767 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6768 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6789 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 6565 + - uid: 6790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6810 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6813 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasPipeTJunction + entities: + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1351 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1356 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1369 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1486 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1627 + components: + - type: Transform + pos: 35.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1677 + components: + - type: Transform + pos: 48.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1806 + components: + - type: Transform + pos: 9.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1883 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1891 + components: + - type: Transform + pos: 35.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1915 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1940 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2055 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2060 + components: + - type: Transform + pos: 43.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2151 + components: + - type: Transform + pos: 47.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6814 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 6565 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasPort + entities: + - uid: 3971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 6565 + - type: AtmosDevice + joinedGrid: 6565 +- proto: GasPressurePump + entities: + - uid: 1250 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 1251 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 1256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 6565 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 6565 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasValve + entities: + - uid: 1719 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasVentPump + entities: + - uid: 2248 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4111 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2276 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4387 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4385 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4385 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4386 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2284 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2285 + components: + - type: Transform + pos: 34.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2289 + components: + - type: Transform + pos: 31.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2290 + components: + - type: Transform + pos: 35.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2291 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2293 + components: + - type: Transform + pos: 42.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2294 + components: + - type: Transform + pos: 46.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4388 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4388 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4386 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4386 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2299 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5556 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2300 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5555 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2301 + components: + - type: Transform + pos: 26.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5553 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5553 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2305 + components: + - type: Transform + pos: 61.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5552 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2306 + components: + - type: Transform + pos: 75.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5552 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,47.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2308 + components: + - type: Transform + pos: 55.5,51.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2309 + components: + - type: Transform + pos: 50.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5339 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2310 + components: + - type: Transform + pos: 48.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5339 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2311 + components: + - type: Transform + pos: 53.5,51.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5339 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5299 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5299 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2315 + components: + - type: Transform + pos: 45.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5299 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2316 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2317 + components: + - type: Transform + pos: 40.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2318 components: - - pos: -18.5,14.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5558 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2319 components: - - pos: -12.5,18.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5558 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5558 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5558 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2322 components: - - rot: -1.5707963267948966 rad - pos: 9.5,35.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2323 components: - - pos: 5.5,35.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2324 components: - - pos: 1.5,25.5 - parent: 1 - type: Transform + - type: Transform + pos: 50.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6061 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2325 components: - - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6061 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2326 components: - - rot: 3.141592653589793 rad - pos: 5.5,-1.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5560 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2327 components: - - rot: 3.141592653589793 rad - pos: 3.5,-5.5 - parent: 1 - type: Transform + - type: Transform + pos: 43.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5560 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2328 components: - - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,67.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2329 components: - - pos: -23.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,67.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2330 components: - - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 1 - type: Transform + - type: Transform + pos: 39.5,70.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2331 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5033 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2332 components: - - pos: -20.5,10.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5033 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2333 components: - - rot: 3.141592653589793 rad - pos: 18.5,11.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5010 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2334 components: - - rot: 1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 2386 - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 149 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 150 - components: - - pos: 9.5,10.5 - parent: 1 - type: Transform -- proto: WaterCooler - entities: + - type: Transform + pos: 21.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5000 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2335 components: - - pos: -8.5,3.5 - parent: 1 - type: Transform -- proto: WeaponCapacitorRecharger - entities: + - type: Transform + pos: 26.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5000 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2336 components: - - pos: -13.5,7.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5001 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2337 components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 2495 - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 13 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 671 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 684 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 691 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 702 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 719 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponPulseCarbine - entities: + - type: Transform + pos: 13.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5001 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2338 components: - - pos: 13.48761,8.662255 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5001 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2339 components: - - pos: 13.48761,8.537255 - parent: 1 - type: Transform -- proto: WeaponPulsePistol - entities: - - uid: 720 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5006 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2340 components: - - pos: 13.378235,8.36538 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5005 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2341 components: - - pos: 13.58136,8.36538 - parent: 1 - type: Transform -- proto: WeaponPulseRifle - entities: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5003 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2342 components: - - pos: 12.534485,8.724755 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5007 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2343 components: - - pos: 12.534485,8.568505 - parent: 1 - type: Transform + - type: Transform + pos: 8.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2344 components: - - pos: 12.534485,8.381005 - parent: 1 - type: Transform -- proto: WeaponRifleLecter - entities: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5007 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2345 components: - - pos: 14.440735,8.506005 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2346 components: - - pos: 14.440735,8.381005 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2347 components: - - pos: 14.458244,8.619274 - parent: 1 - type: Transform -- proto: WeaponSubMachineGunWt550 - entities: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6060 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2348 components: - - pos: 13.51886,6.6310053 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5009 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2349 components: - - pos: 13.51886,6.5216303 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2350 components: - - pos: 13.51886,6.4278803 - parent: 1 - type: Transform -- proto: WeldingFuelTankHighCapacity - entities: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2351 components: - - pos: -10.5,7.5 - parent: 1 - type: Transform -- proto: WetFloorSign - entities: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2352 components: - - pos: 12.381899,3.9263859 - parent: 1 - type: Transform + - type: Transform + pos: 19.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5004 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2353 components: - - pos: 12.569399,3.9263859 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5008 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2354 components: - - pos: 12.741274,3.9420109 - parent: 1 - type: Transform -- proto: WindoorSecureArmoryLocked + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4300 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4385 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6819 + components: + - type: Transform + pos: 0.5,7.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6567 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6567 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber entities: + - uid: 2192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4111 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2196 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2197 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4107 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2199 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5556 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2200 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5555 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2201 + components: + - type: Transform + pos: 27.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5554 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5553 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5553 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2205 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5552 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2206 + components: + - type: Transform + pos: 74.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5552 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2207 + components: + - type: Transform + pos: 27.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5000 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2208 + components: + - type: Transform + pos: 20.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5000 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5001 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2210 + components: + - type: Transform + pos: 14.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5001 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5005 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5003 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5007 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5007 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2215 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5009 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6060 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5008 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5006 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2221 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2222 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2224 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5004 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5010 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2226 + components: + - type: Transform + pos: 30.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2227 + components: + - type: Transform + pos: 34.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2231 + components: + - type: Transform + pos: 38.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2232 + components: + - type: Transform + pos: 41.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4388 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2234 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4388 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4386 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4386 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2237 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4386 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4385 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4385 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2241 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4385 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2243 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2244 + components: + - type: Transform + pos: 35.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4383 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4387 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2247 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4384 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5002 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,48.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2251 + components: + - type: Transform + pos: 56.5,51.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5339 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2253 + components: + - type: Transform + pos: 51.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5339 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5299 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5299 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5033 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5033 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2258 + components: + - type: Transform + pos: 41.5,48.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2259 + components: + - type: Transform + pos: 41.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5557 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6061 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2263 + components: + - type: Transform + pos: 49.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6061 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5558 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5558 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5558 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5558 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5560 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2269 + components: + - type: Transform + pos: 42.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5560 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,67.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,67.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' - uid: 2355 components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform -- proto: WindoorSecureChemistryLocked + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,38.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6567 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6831 + components: + - type: Transform + pos: 1.5,7.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6832 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6567 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 6565 + - type: DeviceNetwork + deviceLists: + - 6566 + - type: AtmosDevice + joinedGrid: 6565 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GeneratorBasic15kW entities: - uid: 2356 components: - - pos: -4.5,2.5 - parent: 1 - type: Transform + - type: Transform + pos: 21.5,12.5 + parent: 2 - uid: 2357 components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - type: Transform -- proto: WindoorSecureCommandLocked - entities: - - uid: 2358 - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform + - type: Transform + pos: 21.5,11.5 + parent: 2 - uid: 2359 components: - - pos: 4.5,24.5 - parent: 1 - type: Transform + - type: Transform + pos: 21.5,9.5 + parent: 2 - uid: 2360 components: - - pos: 2.5,24.5 - parent: 1 - type: Transform + - type: Transform + pos: 21.5,8.5 + parent: 2 - uid: 2361 components: - - rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 1 - type: Transform -- proto: WindoorSecureEngineeringLocked - entities: + - type: Transform + pos: 23.5,8.5 + parent: 2 - uid: 2362 components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 2363 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform + - type: Transform + pos: 23.5,9.5 + parent: 2 - uid: 2364 components: - - pos: -8.5,13.5 - parent: 1 - type: Transform + - type: Transform + pos: 23.5,11.5 + parent: 2 - uid: 2365 components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 2366 + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 6835 components: - - rot: 1.5707963267948966 rad - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 2367 + - type: Transform + pos: 2.5,-6.5 + parent: 6565 + - uid: 6836 components: - - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform -- proto: WindoorSecureMedicalLocked + - type: Transform + pos: 1.5,-6.5 + parent: 6565 +- proto: GravityGenerator entities: - - uid: 2368 + - uid: 4121 components: - - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 2369 - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform - - uid: 2370 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 1 - type: Transform -- proto: Window + - type: Transform + pos: 31.5,21.5 + parent: 2 +- proto: GravityGeneratorMini entities: - - uid: 1461 + - uid: 6837 components: - - pos: -3.5,21.5 - parent: 1 - type: Transform - - uid: 1462 - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - uid: 1732 - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform -- proto: WindowReinforcedDirectional + - type: Transform + pos: -0.5,-6.5 + parent: 6565 +- proto: Grille entities: - - uid: 1408 + - uid: 9 components: - - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 1409 + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 21 components: - - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 1872 + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 29 components: - - rot: 3.141592653589793 rad - pos: -1.5,22.5 - parent: 1 - type: Transform - - uid: 1874 + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 61 components: - - rot: 3.141592653589793 rad - pos: -3.5,20.5 - parent: 1 - type: Transform - - uid: 2371 + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 96 components: - - rot: 1.5707963267948966 rad - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 2372 + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 97 components: - - rot: 1.5707963267948966 rad - pos: -11.5,11.5 - parent: 1 - type: Transform - - uid: 2373 + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 98 components: - - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 2374 + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 99 components: - - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 2375 + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 133 components: - - rot: 1.5707963267948966 rad - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 2376 + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 148 components: - - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 2377 + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 161 components: - - rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 2378 + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 162 components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 2379 + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 181 components: - - rot: 3.141592653589793 rad - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 2380 + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 196 components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - uid: 2381 + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 197 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1 - type: Transform - - uid: 2382 + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 198 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 1 - type: Transform - - uid: 2383 + - type: Transform + pos: 11.5,31.5 + parent: 2 + - uid: 200 components: - - rot: -1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,31.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 22.5,38.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 31.5,38.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 35.5,38.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: 66.5,45.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 24.5,48.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: 26.5,53.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: 17.5,46.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: 21.5,54.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: 18.5,55.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: 18.5,54.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 24.5,55.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 24.5,54.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 73.5,45.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 13.5,52.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 10.5,52.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 9.5,52.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 3.5,49.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 57.5,51.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 57.5,47.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: 75.5,45.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: 65.5,45.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: 72.5,45.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: 60.5,45.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: 76.5,45.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 75.5,41.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 72.5,41.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: 73.5,41.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 65.5,41.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 64.5,41.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: 40.5,76.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 40.5,75.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: 41.5,77.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: 42.5,77.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: 45.5,77.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: 44.5,77.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: 46.5,76.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 46.5,75.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: 47.5,66.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 47.5,71.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 38.5,73.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 38.5,72.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 48.5,73.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: 48.5,72.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 49.5,62.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: 43.5,62.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: 47.5,62.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 45.5,62.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 54.5,60.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: 54.5,57.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: 42.5,43.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,33.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,36.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,36.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: 48.5,40.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: 48.5,39.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,35.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,35.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,48.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,50.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,58.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,58.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,46.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,40.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,43.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,24.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,25.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,23.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + pos: 1.5,10.5 + parent: 6565 + - uid: 6839 + components: + - type: Transform + pos: 0.5,10.5 + parent: 6565 + - uid: 6840 + components: + - type: Transform + pos: -0.5,10.5 + parent: 6565 +- proto: GrilleSpawner + entities: + - uid: 5902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,55.5 + parent: 2 + - uid: 6074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,55.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,55.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,54.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,55.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,55.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,55.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,53.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,55.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,52.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,55.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,55.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,55.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,55.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,55.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,55.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,54.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,54.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,52.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,50.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,53.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,51.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,50.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,46.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,46.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,47.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,45.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,46.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,44.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,46.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,39.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,38.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,38.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,36.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,34.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,37.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,31.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,30.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,28.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,27.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,28.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,24.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,23.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,23.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,19.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,17.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,18.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,15.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,16.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,7.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,5.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,4.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,4.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,4.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,5.5 + parent: 2 + - uid: 6162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,5.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,5.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,5.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,8.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,9.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,9.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,9.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,12.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,15.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,16.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,12.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,12.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,16.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 2 + - uid: 6178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,16.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,16.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,22.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,16.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,17.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,18.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,19.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,18.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,23.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,24.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,20.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + pos: 29.5,65.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: 29.5,66.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: 30.5,68.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: 30.5,68.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: 30.5,70.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + pos: 29.5,63.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: 30.5,65.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: 27.5,54.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: 27.5,55.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: 29.5,56.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: 29.5,59.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 29.5,61.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: 31.5,69.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + pos: 51.5,74.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: 55.5,73.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: 57.5,73.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + pos: 58.5,73.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: 54.5,73.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: 53.5,74.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: 34.5,73.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + pos: 36.5,74.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: 37.5,74.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + pos: 35.5,73.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: 33.5,73.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: 31.5,71.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: 30.5,71.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + pos: 49.5,74.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + pos: 29.5,60.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: 50.5,74.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: 61.5,73.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + pos: 61.5,71.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 61.5,62.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + pos: 61.5,70.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + pos: 61.5,61.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: 58.5,61.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: 59.5,61.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + pos: 57.5,59.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + pos: 57.5,57.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + pos: 57.5,54.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + pos: 57.5,56.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + pos: 57.5,58.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + pos: 34.5,73.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + pos: 32.5,73.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: 60.5,70.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: 54.5,71.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: 61.5,68.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: 61.5,67.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + pos: 61.5,65.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: 61.5,72.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 6841 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 6565 +- proto: HandheldCrewMonitor + entities: + - uid: 4556 + components: + - type: Transform + parent: 231 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4558 + components: + - type: Transform + parent: 371 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4559 + components: + - type: Transform + parent: 838 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4560 + components: + - type: Transform + parent: 1236 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HandheldGPSBasic + entities: + - uid: 4081 + components: + - type: Transform + parent: 4075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4083 + components: + - type: Transform + parent: 4074 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4085 + components: + - type: Transform + parent: 4079 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4093 + components: + - type: Transform + parent: 4084 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4101 + components: + - type: Transform + parent: 4087 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4112 + components: + - type: Transform + parent: 4102 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4162 + components: + - type: Transform + parent: 4156 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4431 + components: + - type: Transform + parent: 4089 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4868 + components: + - type: Transform + pos: 22.951084,42.608433 + parent: 2 +- proto: HighSecCentralCommandLocked + entities: + - uid: 1156 + components: + - type: Transform + pos: 31.5,46.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 35.5,46.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: 37.5,49.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: 33.5,49.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: 50.5,66.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: 52.5,67.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: 43.5,71.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: 39.5,69.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + pos: 41.5,68.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 6565 + - uid: 6843 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 6565 + - uid: 6844 + components: + - type: Transform + pos: 1.5,3.5 + parent: 6565 + - uid: 6845 + components: + - type: Transform + pos: 0.5,1.5 + parent: 6565 + - uid: 6846 + components: + - type: Transform + pos: 0.5,5.5 + parent: 6565 + - uid: 6847 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 6565 +- proto: HighSecCommandLocked + entities: + - uid: 4125 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 4002 + components: + - type: Transform + pos: 15.645755,14.559772 + parent: 2 +- proto: Holoprojector + entities: + - uid: 4570 + components: + - type: Transform + pos: 34.924313,56.78392 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 4302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,28.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: 16.5,51.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + pos: 48.5,52.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: 43.5,48.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: 53.5,52.5 + parent: 2 +- proto: HydrogenCanister + entities: + - uid: 6043 + components: + - type: Transform + pos: -1.5,51.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: JetpackBlueFilled + entities: + - uid: 4865 + components: + - type: Transform + pos: 21.357334,42.639683 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: 21.513584,42.639683 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 5335 + components: + - type: Transform + pos: 43.5,54.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 4504 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 +- proto: Lamp + entities: + - uid: 4972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.667079,48.090942 + parent: 2 + - uid: 5294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.59513,47.880825 + parent: 2 + - uid: 5312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.56388,51.880825 + parent: 2 +- proto: LampInterrogator + entities: + - uid: 4325 + components: + - type: Transform + pos: 46.54033,40.51124 + parent: 2 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 3980 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 4506 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 +- proto: LockerEngineer + entities: + - uid: 4074 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14786 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7054 + - 4083 + - 6492 + - 5642 + - 7055 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4079 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14786 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7059 + - 7057 + - 5645 + - 4085 + - 6493 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4084 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14786 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7060 + - 7062 + - 4093 + - 6494 + - 5648 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4089 + components: + - type: Transform + pos: 27.500174,8.500924 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14786 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6495 + - 4431 + - 5651 + - 7063 + - 7064 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerEvidence + entities: + - uid: 4146 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: 31.5,37.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: 35.5,37.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: 39.5,37.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: 37.5,35.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerFreezer + entities: + - uid: 5332 + components: + - type: Transform + pos: 43.5,56.5 + parent: 2 +- proto: LockerMedical + entities: + - uid: 231 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1463 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 370 + - 360 + - 284 + - 282 + - 270 + - 252 + - 232 + - 4556 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 371 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1463 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4558 + - 701 + - 740 + - 743 + - 697 + - 553 + - 552 + - 504 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 838 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1463 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1185 + - 1142 + - 1133 + - 1131 + - 956 + - 954 + - 839 + - 4559 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1236 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1463 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4051 + - 4046 + - 4045 + - 3078 + - 1237 + - 4560 + - 2624 + - 2620 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicineFilled + entities: + - uid: 4667 + components: + - type: Transform + pos: 12.5,30.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 18.5,40.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 4979 + components: + - type: Transform + pos: 12.5,50.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 195 + - 7076 + - 7077 + - 7068 + - 7069 + - 7070 + - 7071 + - 7072 + - 7073 + - 7074 + - 7075 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerRepresentative + entities: + - uid: 4529 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4530 + - 4531 + - 4532 + - 4533 + - 4534 + - 4535 + - 4536 + - 4537 + - 4538 + - 4539 + - 4540 + - 4541 + - 4544 + - 4545 + - 4546 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 5233 + components: + - type: Transform + pos: 55.5,52.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14783 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5250 + - 5248 + - 5247 + - 5246 + - 5245 + - 5244 + - 5243 + - 5242 + - 5241 + - 5237 + - 5239 + - 5236 + - 5235 + - 5234 + - 5249 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 5251 + components: + - type: Transform + pos: 50.5,52.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14783 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5268 + - 5266 + - 5265 + - 5264 + - 5263 + - 5262 + - 5258 + - 5260 + - 5259 + - 5257 + - 5255 + - 5254 + - 5253 + - 5252 + - 5267 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 5437 + components: + - type: Transform + pos: 39.50126,67.50116 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1478 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7052 + - 7051 + - 5447 + - 5446 + - 5444 + - 5443 + - 5442 + - 5441 + - 5440 + - 5439 + - 7053 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurity + entities: + - uid: 4075 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1463 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4081 + - 4080 + - 4078 + - 4077 + - 4076 + - 4082 + - 4086 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4087 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1463 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4099 + - 4092 + - 4091 + - 4090 + - 4088 + - 4100 + - 4101 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4102 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1463 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4113 + - 4112 + - 4110 + - 4106 + - 4103 + - 4114 + - 4155 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4156 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1463 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4161 + - 4160 + - 4159 + - 4158 + - 4157 + - 4162 + - 4163 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWallMedical + entities: + - uid: 4507 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4508 + - 4509 + - 4510 + - 4511 + - 4512 + - 4513 + - 4514 + - 4515 + - 4516 + - 4517 + - 4518 + - 4519 + - 4520 + - 4521 + - 4522 + - 4523 +- proto: LockerWardenFilled + entities: + - uid: 4297 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1478 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4165 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MachineCentrifuge + entities: + - uid: 4505 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 +- proto: MagazineBoxPistol + entities: + - uid: 5952 + components: + - type: Transform + pos: 32.783257,47.643143 + parent: 2 + - uid: 5953 + components: + - type: Transform + pos: 32.783257,47.408768 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: 32.783257,47.518143 + parent: 2 +- proto: MagazineBoxRifle + entities: + - uid: 4172 + components: + - type: Transform + pos: 32.761345,50.70299 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: 32.761345,50.562366 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: 32.761345,50.45299 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: 32.79888,51.768143 + parent: 2 + - uid: 5959 + components: + - type: Transform + pos: 32.79888,51.658768 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: 32.79888,51.518143 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 5807 + components: + - type: Transform + pos: 51.5,37.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 5793 + components: + - type: Transform + pos: 37.5,66.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: 55.5,38.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: 6.5,50.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 5814 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: 52.5,37.5 + parent: 2 + - uid: 5864 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + pos: 7.5,50.5 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 7098 + components: + - type: Transform + pos: 22.51074,48.595848 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 7086 + components: + - type: Transform + pos: 22.557615,48.330223 + parent: 2 +- proto: MedicalBed + entities: + - uid: 4598 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: 11.5,30.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: -0.5,2.5 + parent: 6565 + - uid: 6849 + components: + - type: Transform + pos: -2.5,2.5 + parent: 6565 +- proto: MedicalScanner + entities: + - uid: 4664 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: 16.5,44.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 4604 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 4170 + components: + - type: Transform + pos: 3.4023435,40.572536 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 4618 + components: + - type: Transform + pos: 4.6597624,40.571453 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: 4.5816374,40.46208 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 4650 + components: + - type: Transform + pos: 5.2691374,40.55583 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: 5.1597624,40.43083 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 4164 + components: + - type: Transform + pos: 5.6367188,39.65066 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: 5.3710938,39.478786 + parent: 2 +- proto: MedkitO2 + entities: + - uid: 4602 + components: + - type: Transform + pos: 4.2691374,40.477703 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: 4.3472624,40.571453 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 4590 + components: + - type: Transform + pos: 4.0972624,40.571453 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: 3.9722621,40.49333 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 4646 + components: + - type: Transform + pos: 4.9566374,40.571453 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: 4.8316374,40.446453 + parent: 2 +- proto: Mirror + entities: + - uid: 4306 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,50.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,49.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,49.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,46.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + pos: 53.5,58.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: 51.5,58.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + pos: 39.5,71.5 + parent: 2 +- proto: Morgue + entities: + - uid: 4686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,40.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,39.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4692 + components: + - type: Transform + pos: 16.5,37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: Multitool + entities: + - uid: 4430 + components: + - type: Transform + pos: 47.793285,26.47203 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: 17.519348,29.590355 + parent: 2 + - uid: 4737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.513159,44.479046 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 5858 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5912 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5924 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6042 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: NitrousOxideCanister + entities: + - uid: 3992 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5992 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 4706 + components: + - type: Transform + pos: 18.314075,36.90943 + parent: 2 +- proto: NTFlag + entities: + - uid: 6555 + components: + - type: Transform + pos: 40.5,69.5 + parent: 2 +- proto: OperatingTable + entities: + - uid: 4677 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: 22.5,40.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: 22.5,36.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 5857 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5859 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5913 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5989 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: PaperBin10 + entities: + - uid: 5148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.530933,52.45226 + parent: 2 + - uid: 5149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.530933,48.436634 + parent: 2 + - uid: 5150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.51531,48.48351 + parent: 2 + - uid: 5408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.612114,73.51943 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: 41.478127,76.44037 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: 45.525,76.29974 + parent: 2 +- proto: Pen + entities: + - uid: 4328 + components: + - type: Transform + pos: 49.723274,40.47999 + parent: 2 + - uid: 4973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.276454,47.840942 + parent: 2 + - uid: 5151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.73406,47.936634 + parent: 2 + - uid: 5152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.655933,47.967884 + parent: 2 + - uid: 5153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.60906,51.905384 + parent: 2 +- proto: PenCentcom + entities: + - uid: 5426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.43125,75.81537 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: 47.25274,73.72256 + parent: 2 +- proto: PinpointerNuclear + entities: + - uid: 5444 + components: + - type: Transform + parent: 5437 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaCanister + entities: + - uid: 3997 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5860 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5990 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6044 + components: + - type: Transform + pos: -1.5,49.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 4928 + components: + - type: Transform + pos: 23.5,56.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: 23.5,53.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 19.5,53.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: 19.5,56.5 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 4143 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: 36.5,30.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 5788 + components: + - type: Transform + pos: 35.5,62.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: 10.5,49.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 5798 + components: + - type: Transform + pos: 34.5,68.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 5856 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 4004 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 6554 + components: + - type: Transform + pos: 5.5,29.5 + parent: 2 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 7112 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 7108 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 +- proto: PottedPlant11 + entities: + - uid: 4975 + components: + - type: Transform + pos: 12.5,46.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: 46.5,61.5 + parent: 2 +- proto: PottedPlant12 + entities: + - uid: 4571 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 4065 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - uid: 5467 + components: + - type: Transform + pos: 43.477516,69.18456 + parent: 2 +- proto: PottedPlant22 + entities: + - uid: 4736 + components: + - type: Transform + pos: 11.5,42.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: 45.52439,67.51269 + parent: 2 +- proto: PottedPlant27 + entities: + - uid: 4782 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + pos: 58.536118,44.300716 + parent: 2 +- proto: PottedPlant28 + entities: + - uid: 4781 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 +- proto: PottedPlant29 + entities: + - uid: 4784 + components: + - type: Transform + pos: -1.5,44.5 + parent: 2 +- proto: PottedPlant6 + entities: + - uid: 4783 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 39.48724,53.297096 + parent: 2 +- proto: PowerCageHigh + entities: + - uid: 6716 + components: + - type: Transform + parent: 6715 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6717 + components: + - type: Transform + parent: 6715 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6718 + components: + - type: Transform + parent: 6715 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6719 + components: + - type: Transform + parent: 6715 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6720 + components: + - type: Transform + parent: 6715 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6727 + components: + - type: Transform + parent: 6726 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6728 + components: + - type: Transform + parent: 6726 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6729 + components: + - type: Transform + parent: 6726 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6730 + components: + - type: Transform + parent: 6726 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6731 + components: + - type: Transform + parent: 6726 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PowerCageRecharger + entities: + - uid: 6850 + components: + - type: Transform + pos: 2.5,6.5 + parent: 6565 + - type: PointLight + enabled: False + - uid: 6851 + components: + - type: Transform + pos: 1.5,6.5 + parent: 6565 + - type: PointLight + enabled: False +- proto: PowerCellHigh + entities: + - uid: 284 + components: + - type: Transform + parent: 231 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 360 + components: + - type: Transform + parent: 231 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 740 + components: + - type: Transform + parent: 371 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 743 + components: + - type: Transform + parent: 371 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1142 + components: + - type: Transform + parent: 838 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1185 + components: + - type: Transform + parent: 838 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4046 + components: + - type: Transform + parent: 1236 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4051 + components: + - type: Transform + parent: 1236 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4583 + components: + - type: Transform + pos: 34.924313,56.487045 + parent: 2 +- proto: PowerCellHyper + entities: + - uid: 4003 + components: + - type: Transform + pos: 15.239505,14.481647 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 1040 + components: + - type: Transform + pos: 35.5,56.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: 41.5,39.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,42.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: 44.5,61.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 6565 +- proto: Poweredlight + entities: + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,29.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,68.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,14.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,11.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: 34.5,40.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: 30.5,40.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,32.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,32.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: 46.5,40.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,24.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,24.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,26.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,25.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,28.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,28.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,40.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,32.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,20.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: 36.5,37.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: 34.5,30.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: 32.5,22.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,35.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: 38.5,40.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: 25.5,52.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: 18.5,44.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,42.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,24.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,30.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,29.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,39.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,36.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,40.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,36.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,38.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,40.5 + parent: 2 + - uid: 4950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,36.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: 11.5,44.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,42.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,24.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,24.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,29.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,32.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,37.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,42.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,39.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,42.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,34.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,35.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,51.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,46.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,51.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,50.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + pos: 16.5,48.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,46.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: 55.5,68.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,68.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,72.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: 46.5,73.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: 43.5,76.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,67.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,70.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,68.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: 48.5,61.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,55.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,56.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,42.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 47.5,44.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,42.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,42.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,42.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,46.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,40.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,48.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,53.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,58.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,63.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: 45.5,65.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,63.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,59.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,59.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,54.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,54.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 43.5,57.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,54.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: 33.5,44.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,42.5 + parent: 2 + - uid: 5740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,47.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,38.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,34.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,24.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,22.5 + parent: 2 + - uid: 5958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,55.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + pos: 4.5,0.5 + parent: 6565 + - uid: 6854 + components: + - type: Transform + pos: -3.5,0.5 + parent: 6565 + - uid: 6855 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 6565 + - uid: 6856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 6565 + - uid: 6857 + components: + - type: Transform + pos: -0.5,4.5 + parent: 6565 + - uid: 6858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 6565 + - uid: 6859 + components: + - type: Transform + pos: -1.5,9.5 + parent: 6565 + - uid: 6860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 6565 + - uid: 6861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 6565 + - uid: 6862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 6565 + - uid: 7082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,10.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,18.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,41.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 4552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,58.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,54.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,68.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,65.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,39.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,40.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,36.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,32.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,23.5 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,9.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,41.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,33.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,27.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,46.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,51.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 6565 +- proto: Protolathe + entities: + - uid: 7078 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + pos: 22.5,50.5 + parent: 2 +- proto: Rack + entities: + - uid: 215 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,34.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,34.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,24.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,24.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,26.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: 37.5,56.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,44.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,36.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,42.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,44.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: 21.5,44.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,48.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: 32.5,51.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: 32.5,50.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: 30.5,51.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: 36.5,51.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: 36.5,50.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: 34.5,48.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: 34.5,47.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: 32.5,48.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: 32.5,47.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: 30.5,48.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: 30.5,47.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: 49.5,68.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: 37.5,66.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + pos: 55.5,38.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: 52.5,37.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + pos: 51.5,37.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 5863 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,18.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,17.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,14.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,13.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: 6.5,50.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: 7.5,50.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + pos: 4.5,0.5 + parent: 6565 + - uid: 6865 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 6565 +- proto: RadarConsoleWallMount + entities: + - uid: 6866 + components: + - type: Transform + pos: -1.5,10.5 + parent: 6565 + - uid: 6867 + components: + - type: Transform + pos: 2.5,10.5 + parent: 6565 +- proto: RadAutoInjector + entities: + - uid: 4630 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4631 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4632 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4633 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4635 + components: + - type: Transform + parent: 4620 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RandomFoodMeal + entities: + - uid: 5344 + components: + - type: Transform + pos: 46.5,56.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 6197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,35.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,43.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,34.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: 46.5,41.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + pos: 54.5,49.5 + parent: 2 + - uid: 6204 + components: + - type: Transform + pos: 44.5,53.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: 43.5,77.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: 39.5,66.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: 48.5,62.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,51.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + pos: 32.5,45.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,38.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: 14.5,52.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,31.5 + parent: 2 + - uid: 6215 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - uid: 6216 + components: + - type: Transform + pos: 48.5,45.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 4307 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: -0.5,31.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: -2.5,44.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 49.5,57.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: 49.5,56.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: 27.5,48.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: 53.5,61.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + pos: 53.5,59.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: 50.5,42.5 + parent: 2 +- proto: RCD + entities: + - uid: 820 + components: + - type: Transform + pos: 23.98478,14.640654 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 3999 + components: + - type: Transform + pos: 15.78638,15.122272 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: 15.78638,14.966022 + parent: 2 + - uid: 4057 + components: + - type: Transform + pos: 23.280857,14.713973 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: 23.280857,14.635848 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: 23.280857,14.557723 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 23.452732,14.713973 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: 23.452732,14.620223 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: 23.452732,14.557723 + parent: 2 +- proto: Recycler + entities: + - uid: 6470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6468 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 100 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 23 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: 22.5,38.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 31.5,38.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 35.5,38.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 24.5,48.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 17.5,46.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: 21.5,54.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: 24.5,54.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: 24.5,55.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: 18.5,54.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: 18.5,55.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 26.5,53.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: 60.5,45.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 57.5,51.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 57.5,47.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 65.5,45.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 66.5,45.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: 65.5,41.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 64.5,41.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 72.5,41.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 73.5,41.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 73.5,45.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 72.5,45.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 75.5,45.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 76.5,45.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 75.5,41.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 48.5,73.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: 48.5,72.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: 38.5,72.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: 38.5,73.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 40.5,75.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 40.5,76.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: 41.5,77.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: 42.5,77.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: 44.5,77.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 45.5,77.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: 46.5,76.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: 46.5,75.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: 47.5,66.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: 47.5,71.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: 49.5,62.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: 47.5,62.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: 45.5,62.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: 43.5,62.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: 54.5,60.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: 54.5,57.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: 13.5,52.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 3.5,49.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: 9.5,52.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: 10.5,52.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,33.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,36.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,36.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: 48.5,40.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: 48.5,39.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,35.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,35.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,50.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,48.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: 42.5,43.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,58.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,58.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,40.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,46.5 + parent: 2 + - uid: 5714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,43.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,24.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,25.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,23.5 + parent: 2 +- proto: RiotBulletShield + entities: + - uid: 4201 + components: + - type: Transform + pos: 34.279613,50.53834 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: 34.373363,50.53834 + parent: 2 +- proto: RiotLaserShield + entities: + - uid: 4166 + components: + - type: Transform + pos: 34.467113,50.53834 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: 34.560863,50.522717 + parent: 2 +- proto: SbHampter + entities: + - uid: 4767 + components: + - type: Transform + pos: -2.5370512,36.56543 + parent: 2 +- proto: ScalpelLaser + entities: + - uid: 4684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.775637,40.675686 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 4296 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 +- proto: SheetGlass + entities: + - uid: 4376 + components: + - type: Transform + pos: 47.581993,24.567667 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: 47.581993,24.567667 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: 47.581993,24.567667 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: 5.580821,36.534542 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: 5.580821,36.534542 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: 5.580821,36.534542 + parent: 2 +- proto: SheetPaper + entities: + - uid: 5432 + components: + - type: Transform + pos: 39.854412,73.69131 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 4512 + components: + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4516 + components: + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6500 + components: + - type: Transform + pos: 27.288868,14.627379 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: 27.288868,14.783629 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: 27.288868,14.471129 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 4379 + components: + - type: Transform + pos: 47.56637,24.567667 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: 47.56637,24.567667 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: 47.56637,24.567667 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: 5.565196,36.518917 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: 5.565196,36.518917 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: 5.565196,36.518917 + parent: 2 +- proto: SheetSteel + entities: + - uid: 4373 + components: + - type: Transform + pos: 47.550743,24.552042 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: 47.550743,24.552042 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: 47.550743,24.552042 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: 5.518321,36.518917 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: 5.518321,36.518917 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: 5.518321,36.518917 + parent: 2 +- proto: SheetUranium + entities: + - uid: 4104 + components: + - type: Transform + pos: 27.527872,14.757539 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: 27.543497,14.476289 + parent: 2 +- proto: ShuttleGunPerforator + entities: + - uid: 6868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 6565 + - type: DeviceLinkSink + links: + - 6873 + - uid: 6869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 6565 + - type: DeviceLinkSink + links: + - 6874 +- proto: ShuttleWindow + entities: + - uid: 6870 + components: + - type: Transform + pos: 1.5,10.5 + parent: 6565 + - uid: 6871 + components: + - type: Transform + pos: 0.5,10.5 + parent: 6565 + - uid: 6872 + components: + - type: Transform + pos: -0.5,10.5 + parent: 6565 +- proto: SignalButton + entities: + - uid: 6541 + components: + - type: Transform + pos: 44.17707,76.59433 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5480: + - Pressed: Toggle + 5481: + - Pressed: Toggle + 5479: + - Pressed: Toggle + 5478: + - Pressed: Toggle + 5477: + - Pressed: Toggle + 5476: + - Pressed: Toggle + 5486: + - Pressed: Toggle + 5487: + - Pressed: Toggle + 5482: + - Pressed: Toggle + 5483: + - Pressed: Toggle + 5484: + - Pressed: Toggle + 5485: + - Pressed: Toggle + - uid: 6873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 6565 + - type: DeviceLinkSource + linkedPorts: + 6868: + - Pressed: Toggle + - Pressed: Trigger + - uid: 6874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 6565 + - type: DeviceLinkSource + linkedPorts: + 6869: + - Pressed: Toggle + - Pressed: Trigger +- proto: SignArmory + entities: + - uid: 5098 + components: + - type: Transform + pos: 33.5,45.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 4839 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 4840 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 5528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,66.5 + parent: 2 +- proto: SignChem + entities: + - uid: 4436 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 +- proto: SignCloning + entities: + - uid: 4841 + components: + - type: Transform + pos: 10.5,44.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 4842 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 4873 + components: + - type: Transform + pos: 24.5,42.5 + parent: 2 +- proto: SignExamroom + entities: + - uid: 4843 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 5358 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 4832 + components: + - type: Transform + pos: 44.5,40.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 4830 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 4435 + components: + - type: Transform + pos: 10.5,39.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 4831 + components: + - type: Transform + pos: 40.5,37.5 + parent: 2 +- proto: SignRedFive + entities: + - uid: 4232 + components: + - type: Transform + pos: 35.25762,34.364525 + parent: 2 +- proto: SignRedFour + entities: + - uid: 4231 + components: + - type: Transform + pos: 39.273247,34.3489 + parent: 2 +- proto: SignRedOne + entities: + - uid: 4228 + components: + - type: Transform + pos: 29.248901,38.364525 + parent: 2 +- proto: SignRedSix + entities: + - uid: 4233 + components: + - type: Transform + pos: 31.241997,34.364525 + parent: 2 +- proto: SignRedThree + entities: + - uid: 4230 + components: + - type: Transform + pos: 37.25762,38.364525 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 4229 + components: + - type: Transform + pos: 33.25762,38.364525 + parent: 2 +- proto: SignSecurity + entities: + - uid: 4829 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 7081 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 4844 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 5363 + components: + - type: Transform + pos: 49.5,66.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 5138 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 +- proto: SinkStemless + entities: + - uid: 4305 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 4988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,50.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 4584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,54.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,39.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,50.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,46.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,50.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: 53.5,57.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: 51.5,57.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + pos: 39.5,70.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 4489 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 +- proto: SMESBasic + entities: - uid: 2384 components: - - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1 - type: Transform + - type: Transform + pos: 21.5,19.5 + parent: 2 - uid: 2385 components: - - pos: -20.5,2.5 - parent: 1 - type: Transform - - uid: 2388 + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 2386 components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 2389 + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 6875 components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 2392 + - type: Transform + pos: 2.5,-8.5 + parent: 6565 +- proto: Soap + entities: + - uid: 4565 components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - uid: 2393 + - type: Transform + pos: 37.533688,56.72142 + parent: 2 +- proto: SpaceCash30000 + entities: + - uid: 5696 components: - - pos: -1.5,17.5 - parent: 1 - type: Transform - - uid: 2394 + - type: Transform + pos: 44.632084,61.851933 + parent: 2 +- proto: SpawnMobCatKitten + entities: + - uid: 6510 components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 2395 + - type: Transform + pos: 43.5,73.5 + parent: 2 +- proto: SpawnPointERTEventERTEngineerEVA + entities: + - uid: 4276 components: - - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 2396 + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 4277 components: - - rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 2397 + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 4278 components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - type: Transform + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 +- proto: SpawnPointERTEventERTJanitorEVA + entities: + - uid: 4561 + components: + - type: Transform + pos: 34.5,55.5 + parent: 2 +- proto: SpawnPointERTEventERTLeaderEVA + entities: + - uid: 5496 + components: + - type: Transform + pos: 40.5,67.5 + parent: 2 +- proto: SpawnPointERTEventERTMedicalEVA + entities: + - uid: 4595 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 +- proto: SpawnPointERTEventERTSecurityEVA + entities: + - uid: 4280 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 253 + components: + - type: Transform + pos: 34.408688,56.56517 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: 34.408688,56.65892 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: 34.236813,56.65892 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: 34.564938,56.65892 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 34.564938,56.580795 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: 34.252438,56.56517 + parent: 2 +- proto: StasisBed + entities: + - uid: 4648 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + pos: -1.5,1.5 + parent: 6565 +- proto: Stool + entities: + - uid: 4152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,34.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,30.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,31.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 3994 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: Stunbaton + entities: + - uid: 5095 + components: + - type: Transform + pos: 34.667934,47.391468 + parent: 2 + - uid: 5096 + components: + - type: Transform + pos: 34.65231,47.532093 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 74 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 - uid: 2398 components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 2399 + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 2613 components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 2400 + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 2614 components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - uid: 2401 + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 2615 components: - - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 2402 + - type: Transform + pos: 10.5,51.5 + parent: 2 + - uid: 2617 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - uid: 2403 + - type: Transform + pos: 58.5,40.5 + parent: 2 + - uid: 2618 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 2404 + - type: Transform + pos: 36.5,69.5 + parent: 2 + - uid: 2619 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 2405 + - type: Transform + pos: 49.5,69.5 + parent: 2 + - uid: 6877 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - uid: 2406 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 1 - type: Transform - - uid: 2407 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,6.5 - parent: 1 - type: Transform - - uid: 2408 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 1 - type: Transform - - uid: 2409 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - uid: 2410 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,12.5 - parent: 1 - type: Transform - - uid: 2411 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - uid: 2412 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 2413 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform -- proto: YellowOxygenTankFilled + - type: Transform + pos: -1.5,-8.5 + parent: 6565 +- proto: SuitStorageEVA entities: + - uid: 4833 + components: + - type: Transform + pos: 19.5,42.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: 18.5,42.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: 18.5,44.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: 20.5,44.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: 20.5,42.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: 51.5,52.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: 56.5,52.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 46.5,47.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 4980 + components: + - type: Transform + pos: 12.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageWarden + entities: + - uid: 4299 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 5357 + components: + - type: Transform + pos: 51.5,69.5 + parent: 2 +- proto: SyringeBluespace + entities: + - uid: 4508 + components: + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4509 + components: + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4510 + components: + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4514 + components: + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4515 + components: + - type: Transform + parent: 4507 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TablePlasmaGlass + entities: + - uid: 4751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,39.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 3990 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,10.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: 31.5,40.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: 35.5,40.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: 29.5,32.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: 41.5,39.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: 46.5,40.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: 46.5,39.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,40.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,26.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 34.5,56.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: 35.5,56.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,36.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,35.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,42.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,42.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,46.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,47.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,57.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,56.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,55.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,54.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,54.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: 41.5,76.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: 41.5,75.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 41.5,74.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + pos: 44.5,76.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: 45.5,76.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: 45.5,75.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: 47.5,73.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + pos: 39.5,73.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: 44.5,61.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 6565 + - uid: 6879 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 6565 + - uid: 6880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 6565 + - uid: 6881 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 6565 +- proto: TableReinforcedGlass + entities: + - uid: 4588 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,29.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,40.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,40.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,37.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,36.5 + parent: 2 +- proto: TableWood + entities: + - uid: 4968 + components: + - type: Transform + pos: 14.5,48.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: 14.5,47.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: 54.5,48.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: 54.5,47.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: 49.5,48.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: 45.5,52.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 +- proto: TelecomServer + entities: + - uid: 5303 + components: + - type: Transform + pos: 56.5,68.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 5304 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 5317 + components: + - type: Transform + pos: 53.5,68.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 5318 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 5323 + components: + - type: Transform + pos: 54.5,68.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 5324 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 5325 + components: + - type: Transform + pos: 55.5,68.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 5326 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 5347 + components: + - type: Transform + pos: 54.5,66.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 5348 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 5349 + components: + - type: Transform + pos: 53.5,66.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 5350 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 5351 + components: + - type: Transform + pos: 56.5,66.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 5352 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 5353 + components: + - type: Transform + pos: 55.5,66.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 5354 + - 5355 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TelescopicShield + entities: + - uid: 4078 + components: + - type: Transform + parent: 4075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4091 + components: + - type: Transform + parent: 4087 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4106 + components: + - type: Transform + parent: 4102 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4157 + components: + - type: Transform + parent: 4156 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5091 + components: + - type: Transform + pos: 34.27554,47.735218 + parent: 2 + - uid: 5092 + components: + - type: Transform + pos: 34.27554,47.610218 + parent: 2 + - uid: 5093 + components: + - type: Transform + pos: 34.27554,47.453968 + parent: 2 + - uid: 5442 + components: + - type: Transform + parent: 5437 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Thruster + entities: + - uid: 6882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 6565 + - uid: 6883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 6565 + - uid: 6884 + components: + - type: Transform + pos: 6.5,2.5 + parent: 6565 + - uid: 6885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 6565 + - uid: 6886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 6565 + - uid: 6887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 6565 + - uid: 6888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 6565 + - uid: 6889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 6565 + - uid: 6890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 6565 + - uid: 6891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 6565 + - uid: 6892 + components: + - type: Transform + pos: -5.5,2.5 + parent: 6565 +- proto: ToiletDirtyWater + entities: + - uid: 5322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,54.5 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 4304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,28.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,50.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,47.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,51.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,51.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,54.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,70.5 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 4415 + components: + - type: Transform + pos: 47.387035,26.456406 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 4429 + components: + - type: Transform + pos: 47.637035,26.737656 + parent: 2 +- proto: TrackingImplanter + entities: + - uid: 7053 + components: + - type: Transform + parent: 5437 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TrashBag + entities: + - uid: 4586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.471188,56.31517 + parent: 2 +- proto: TritiumCanister + entities: + - uid: 3993 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: Truncheon + entities: + - uid: 4195 + components: + - type: Transform + pos: 49.259254,34.564808 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: 49.509254,34.533558 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: 49.790504,34.533558 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: 34.667934,47.719593 + parent: 2 +- proto: TurboItemRecharger + entities: + - uid: 4136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,10.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 6565 + - uid: 6894 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 6565 +- proto: TwoWayLever + entities: + - uid: 4926 + components: + - type: Transform + pos: 24.5,52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4920: + - Left: Forward + - Right: Reverse + - Middle: Off + 4921: + - Left: Forward + - Right: Reverse + - Middle: Off + 4922: + - Left: Forward + - Right: Reverse + - Middle: Off + 4923: + - Left: Forward + - Right: Reverse + - Middle: Off + 4924: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 4927 + components: + - type: Transform + pos: 18.5,52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4916: + - Left: Forward + - Right: Reverse + - Middle: Off + 4917: + - Left: Forward + - Right: Reverse + - Middle: Off + 4918: + - Left: Forward + - Right: Reverse + - Middle: Off + 4919: + - Left: Forward + - Right: Reverse + - Middle: Off + 4925: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 6468 + components: + - type: Transform + pos: -2.687354,25.464811 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6470: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 6471 + components: + - type: Transform + pos: -2.359229,25.464811 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6466: + - Left: Forward + - Right: Reverse + - Middle: Off + 6465: + - Left: Forward + - Right: Reverse + - Middle: Off + 6464: + - Left: Forward + - Right: Reverse + - Middle: Off + 6463: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter + entities: + - uid: 7097 + components: + - type: Transform + pos: 23.5,50.5 + parent: 2 +- proto: UniformScrubsColorBlue + entities: + - uid: 4734 + components: + - type: Transform + pos: 11.702748,44.58842 + parent: 2 +- proto: UniformScrubsColorGreen + entities: + - uid: 4733 + components: + - type: Transform + pos: 11.343373,44.55717 + parent: 2 +- proto: UniformScrubsColorPurple + entities: + - uid: 4735 + components: + - type: Transform + pos: 11.515248,44.416546 + parent: 2 +- proto: Vaccinator + entities: + - uid: 4756 + components: + - type: Transform + pos: -0.5,40.5 + parent: 2 +- proto: VariantCubeBox + entities: + - uid: 1166 + components: + - type: Transform + pos: 0.9089432,32.464725 + parent: 2 +- proto: VendingMachineAmmo + entities: + - uid: 5045 + components: + - type: Transform + pos: 36.5,48.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 6565 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 3979 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 4899 + components: + - type: Transform + pos: 21.5,46.5 + parent: 2 +- proto: VendingMachineCentDrobe + entities: + - uid: 5401 + components: + - type: Transform + pos: 42.5,76.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 4503 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 5730 + components: + - type: Transform + pos: 43.5,61.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 5334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,57.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 5337 + components: + - type: Transform + pos: 46.5,54.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 4024 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 4023 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 968 + components: + - type: Transform + pos: 33.5,54.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 4592 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 4493 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 4187 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: 36.5,47.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 6565 +- proto: VendingMachineSecDrobe + entities: + - uid: 4188 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 3989 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 3988 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: 23.5,44.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: -3.5,0.5 + parent: 6565 + - uid: 6898 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 6565 +- proto: VendingMachineVendomat + entities: + - uid: 5365 + components: + - type: Transform + pos: 49.5,67.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 4750 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 4811 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,41.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,32.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,27.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 6565 +- proto: VendingMachineWinter + entities: + - uid: 5732 + components: + - type: Transform + pos: 45.5,61.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 4022 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 6565 +- proto: WallmountTelescreen + entities: + - uid: 4971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,48.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 3 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - uid: 4 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 - uid: 14 components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 28 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 38 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,39.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 70 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,15.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 20.5,23.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 10.5,31.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: 21.5,35.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 22.5,35.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: 10.5,41.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 24.5,34.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 2.5,23.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 5.5,29.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 2.5,32.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 10.5,42.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 10.5,36.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: 10.5,37.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 10.5,39.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: 16.5,41.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 17.5,41.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: 17.5,36.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: 23.5,38.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 23.5,39.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: 20.5,41.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 18.5,41.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: 6.5,41.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: 10.5,44.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: 10.5,45.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 9.5,45.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 29.5,52.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 7.5,45.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 6.5,45.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 4.5,45.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: 2.5,45.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 1.5,45.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 0.5,45.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -0.5,45.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -2.5,45.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -3.5,41.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: 11.5,45.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: 12.5,45.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: 14.5,45.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: 15.5,45.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: 16.5,45.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 17.5,45.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 17.5,44.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 17.5,43.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -0.5,30.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: -3.5,31.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: -6.5,43.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: -6.5,39.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: -6.5,33.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: -6.5,32.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: -6.5,31.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: -5.5,31.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: -5.5,28.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,56.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -1.5,21.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,20.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 54.5,21.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: 48.5,30.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,19.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 28.5,35.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 28.5,36.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 28.5,37.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 28.5,38.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: 28.5,40.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 28.5,41.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: 29.5,41.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 30.5,41.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 35.5,41.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: 37.5,41.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: 38.5,41.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 40.5,41.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 40.5,40.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 40.5,39.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 40.5,38.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: 29.5,38.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 36.5,40.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 40.5,37.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: 56.5,28.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 56.5,33.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 54.5,35.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 54.5,38.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: 52.5,38.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 51.5,38.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 44.5,37.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 44.5,40.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 44.5,41.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 42.5,41.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 41.5,41.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 49.5,41.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 48.5,41.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 46.5,41.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 52.5,39.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 15.5,49.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 18.5,45.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 20.5,45.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 21.5,45.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 22.5,45.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 23.5,45.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 24.5,45.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 24.5,42.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 24.5,44.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 28.5,45.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: 29.5,45.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: 30.5,45.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: 32.5,45.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 33.5,45.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: 34.5,45.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 36.5,45.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: 37.5,45.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 38.5,45.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: 47.5,49.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 42.5,45.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 43.5,45.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 44.5,45.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 45.5,45.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 46.5,45.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 47.5,45.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 24.5,49.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 25.5,49.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 28.5,50.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 27.5,49.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 28.5,49.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: 28.5,48.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: 28.5,47.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: 28.5,46.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 28.5,51.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: 28.5,52.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: 28.5,53.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 27.5,53.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 25.5,53.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 24.5,53.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 17.5,48.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: 17.5,49.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 17.5,50.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 17.5,51.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: 17.5,52.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 17.5,53.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 21.5,56.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: 18.5,56.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: 24.5,56.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 11.5,50.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 11.5,46.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: 11.5,49.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: 11.5,52.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 12.5,52.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: 14.5,52.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 15.5,52.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 16.5,52.5 + parent: 2 + - uid: 766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,18.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 12.5,49.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 11.5,48.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: 11.5,51.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: 30.5,53.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 14.5,49.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 16.5,49.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: 15.5,51.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 29.5,53.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 2.5,49.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 4.5,49.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 5.5,49.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 5.5,50.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 6.5,51.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 7.5,51.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 8.5,51.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 8.5,52.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 0.5,51.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 0.5,52.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -1.5,52.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -2.5,51.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -2.5,50.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 30.5,52.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 31.5,53.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 31.5,52.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 32.5,53.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: 33.5,53.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: 33.5,52.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 34.5,53.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 34.5,52.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 35.5,53.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 36.5,53.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: 36.5,52.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 38.5,53.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 38.5,52.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 29.5,46.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 30.5,46.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 32.5,46.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 33.5,46.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 36.5,46.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 37.5,46.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 38.5,46.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 38.5,47.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 38.5,50.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: 37.5,48.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: 37.5,47.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: 37.5,50.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: 38.5,51.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: 38.5,48.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: 42.5,48.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: 47.5,47.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 33.5,47.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: 33.5,51.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: 47.5,50.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: 47.5,51.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 48.5,45.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 49.5,45.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 51.5,45.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 57.5,52.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 43.5,49.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 47.5,52.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 52.5,47.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 57.5,50.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 57.5,46.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 53.5,45.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 52.5,52.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 52.5,51.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 57.5,49.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 52.5,48.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 52.5,49.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 52.5,50.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 57.5,53.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: 56.5,53.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: 42.5,53.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: 51.5,53.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 54.5,53.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 49.5,53.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: 50.5,53.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 52.5,53.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 48.5,53.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 44.5,53.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 42.5,52.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: 45.5,53.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 53.5,53.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 51.5,49.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 52.5,46.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 43.5,53.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 47.5,53.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 42.5,50.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 42.5,47.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 52.5,45.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 42.5,49.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 56.5,37.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: 49.5,49.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 48.5,49.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: 54.5,49.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: 56.5,49.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: 53.5,49.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: 46.5,49.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: 44.5,47.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: 57.5,37.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: 58.5,37.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: 52.5,68.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: 59.5,37.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,52.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: 59.5,40.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: 59.5,41.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: 77.5,41.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: 74.5,41.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: 74.5,45.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: 71.5,41.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 67.5,45.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 63.5,41.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: 78.5,45.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: 59.5,45.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 58.5,45.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: 79.5,45.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 71.5,45.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 79.5,41.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 78.5,41.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: 79.5,43.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: 77.5,43.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 67.5,40.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: 67.5,39.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: 69.5,39.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: 69.5,41.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: 67.5,47.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 71.5,47.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 71.5,46.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 69.5,47.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 69.5,45.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 32.5,54.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 32.5,55.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 32.5,56.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 33.5,56.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 33.5,57.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 33.5,58.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 33.5,59.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 33.5,67.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 32.5,60.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 32.5,61.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 33.5,63.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 35.5,63.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 32.5,63.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,57.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 34.5,63.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 38.5,62.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 38.5,63.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 32.5,62.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 38.5,61.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 38.5,60.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 33.5,65.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 33.5,66.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 33.5,64.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 38.5,54.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 33.5,60.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 34.5,67.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 35.5,67.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 38.5,67.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: 38.5,66.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 38.5,58.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 38.5,64.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 33.5,68.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 33.5,69.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 34.5,69.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 35.5,69.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 35.5,70.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 36.5,70.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 37.5,70.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 38.5,70.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 38.5,69.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 38.5,68.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 38.5,59.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 29.5,47.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: 29.5,48.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: 29.5,49.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 29.5,51.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 38.5,71.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: 38.5,74.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: 39.5,74.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 40.5,74.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 47.5,74.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: 46.5,74.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: 48.5,74.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 48.5,71.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: 48.5,70.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: 46.5,77.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: 40.5,77.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 43.5,77.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: 57.5,68.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: 48.5,69.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: 48.5,68.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: 48.5,67.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: 48.5,66.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 41.5,66.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 43.5,66.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 45.5,66.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: 39.5,66.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 40.5,66.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 42.5,66.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 44.5,66.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 44.5,67.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 44.5,68.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 44.5,69.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 44.5,70.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 44.5,71.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: 45.5,71.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: 42.5,71.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: 40.5,71.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: 41.5,71.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: 39.5,71.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: 41.5,67.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 40.5,69.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 41.5,69.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 41.5,70.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 57.5,67.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 54.5,64.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: 50.5,70.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 51.5,70.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: 58.5,64.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 42.5,54.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 42.5,55.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: 42.5,56.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 42.5,57.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 42.5,58.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 42.5,59.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 42.5,60.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: 42.5,61.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: 42.5,62.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 46.5,62.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 50.5,62.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 52.5,62.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: 53.5,62.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 54.5,62.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 54.5,61.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 53.5,63.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 53.5,64.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: 54.5,58.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 54.5,59.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: 54.5,56.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: 54.5,55.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 54.5,54.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: 53.5,65.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: 54.5,65.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: 55.5,65.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: 56.5,65.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: 57.5,65.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 57.5,69.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 56.5,69.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: 55.5,69.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 54.5,69.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 53.5,69.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: 52.5,69.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: 57.5,64.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 50.5,58.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 47.5,58.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: 46.5,58.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: 50.5,56.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: 50.5,55.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 50.5,57.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 50.5,54.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 51.5,58.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: 52.5,55.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: 52.5,54.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 49.5,70.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 43.5,58.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: 51.5,66.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 52.5,66.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: 52.5,65.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: 57.5,66.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: 49.5,66.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: 56.5,64.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: 55.5,64.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,52.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,51.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,51.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 53.5,58.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,18.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,16.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,50.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,50.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,67.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,40.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,38.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,16.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,48.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,35.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: 51.5,26.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: 34.5,57.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: 35.5,57.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: 37.5,57.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,49.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,49.5 + parent: 2 + - uid: 5036 + components: + - type: Transform + pos: 52.5,70.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: 58.5,65.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: 58.5,66.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: 58.5,67.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: 58.5,68.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + pos: 58.5,69.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: 58.5,70.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: 57.5,70.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: 56.5,70.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: 55.5,70.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: 54.5,70.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: 53.5,70.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: 53.5,71.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: 52.5,71.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: 51.5,71.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: 50.5,71.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: 49.5,71.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,43.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,43.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: 21.5,55.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: 44.5,62.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: 48.5,62.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,41.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,41.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,41.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 6901 + components: + - type: Transform + pos: 3.5,10.5 + parent: 6565 + - uid: 6902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 6565 + - uid: 6903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 6565 + - uid: 6904 + components: + - type: Transform + pos: 3.5,0.5 + parent: 6565 + - uid: 6905 + components: + - type: Transform + pos: -2.5,1.5 + parent: 6565 + - uid: 6906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 6565 + - uid: 6907 + components: + - type: Transform + pos: -1.5,5.5 + parent: 6565 + - uid: 6908 + components: + - type: Transform + pos: -3.5,6.5 + parent: 6565 + - uid: 6909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 6565 + - uid: 6910 + components: + - type: Transform + pos: 2.5,5.5 + parent: 6565 + - uid: 6911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 6565 + - uid: 6912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 6565 + - uid: 6913 + components: + - type: Transform + pos: -0.5,1.5 + parent: 6565 + - uid: 6914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 6565 + - uid: 6915 + components: + - type: Transform + pos: -0.5,5.5 + parent: 6565 + - uid: 6916 + components: + - type: Transform + pos: 1.5,5.5 + parent: 6565 + - uid: 6917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 6565 + - uid: 6918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 6565 + - uid: 6919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 6565 + - uid: 6920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 6565 + - uid: 6921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 6565 + - uid: 6922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 6565 + - uid: 6923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 6565 + - uid: 6924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 6565 + - uid: 6925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 6565 + - uid: 6926 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 6565 + - uid: 6927 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 6565 + - uid: 6928 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 6565 + - uid: 6929 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 6565 + - uid: 6930 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 6565 + - uid: 6931 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 6565 + - uid: 6932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 6565 + - uid: 6933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 6565 + - uid: 6934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 6565 + - uid: 6935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 6565 + - uid: 6936 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 6565 + - uid: 6937 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 6565 + - uid: 6938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 6565 + - uid: 6939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 6565 + - uid: 6940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 6565 + - uid: 6941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 6565 + - uid: 6942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 6565 + - uid: 6943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 6565 + - uid: 6944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 6565 + - uid: 6945 + components: + - type: Transform + pos: 5.5,2.5 + parent: 6565 + - uid: 6946 + components: + - type: Transform + pos: 5.5,1.5 + parent: 6565 + - uid: 6947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 6565 + - uid: 6948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 6565 + - uid: 6949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 6565 + - uid: 6950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 6565 + - uid: 6951 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 6565 + - uid: 6952 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 6565 + - uid: 6953 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 6565 + - uid: 6954 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 6565 + - uid: 6955 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 6565 + - uid: 6956 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 6565 + - uid: 6957 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 6565 + - uid: 6958 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 6565 + - uid: 6959 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 6565 + - uid: 6960 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 6565 + - uid: 6961 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 6565 + - uid: 6962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 6565 + - uid: 6963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 6565 + - uid: 6964 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 6565 + - uid: 6965 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 6565 + - uid: 6966 + components: + - type: Transform + pos: -1.5,10.5 + parent: 6565 + - uid: 6967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 6565 + - uid: 6968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 6565 + - uid: 6969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 6565 + - uid: 6970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 6565 + - uid: 6971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 6565 + - uid: 6972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 6565 + - uid: 6973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 6565 + - uid: 6974 + components: + - type: Transform + pos: 5.5,3.5 + parent: 6565 + - uid: 6975 + components: + - type: Transform + pos: 5.5,4.5 + parent: 6565 + - uid: 6976 + components: + - type: Transform + pos: 4.5,4.5 + parent: 6565 + - uid: 6977 + components: + - type: Transform + pos: 4.5,5.5 + parent: 6565 + - uid: 6978 + components: + - type: Transform + pos: -3.5,4.5 + parent: 6565 + - uid: 6979 + components: + - type: Transform + pos: -4.5,4.5 + parent: 6565 + - uid: 6980 + components: + - type: Transform + pos: -3.5,5.5 + parent: 6565 + - uid: 6981 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 6565 + - uid: 6982 + components: + - type: Transform + pos: 3.5,1.5 + parent: 6565 + - uid: 6983 + components: + - type: Transform + pos: 2.5,1.5 + parent: 6565 + - uid: 6984 + components: + - type: Transform + pos: 1.5,1.5 + parent: 6565 + - uid: 6985 + components: + - type: Transform + pos: -2.5,0.5 + parent: 6565 + - uid: 6986 + components: + - type: Transform + pos: -0.5,0.5 + parent: 6565 + - uid: 6987 + components: + - type: Transform + pos: -1.5,0.5 + parent: 6565 + - uid: 6988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 6565 + - uid: 6989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 6565 + - uid: 6990 + components: + - type: Transform + pos: 2.5,10.5 + parent: 6565 + - uid: 6991 + components: + - type: Transform + pos: -2.5,10.5 + parent: 6565 + - uid: 6992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 6565 +- proto: WallShuttleDiagonal + entities: + - uid: 6993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 6565 + - uid: 6994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 6565 + - uid: 6995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 6565 + - uid: 6996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 6565 + - uid: 6997 + components: + - type: Transform + pos: -4.5,5.5 + parent: 6565 + - uid: 6998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 6565 + - uid: 6999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 6565 + - uid: 7000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 6565 + - uid: 7001 + components: + - type: Transform + pos: -5.5,1.5 + parent: 6565 + - uid: 7002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 6565 + - uid: 7003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 6565 + - uid: 7004 + components: + - type: Transform + pos: -3.5,10.5 + parent: 6565 +- proto: WardrobeCargoFilled + entities: + - uid: 4897 + components: + - type: Transform + pos: 20.5,46.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: 19.5,46.5 + parent: 2 +- proto: WardrobeMixedFilled + entities: + - uid: 5701 + components: + - type: Transform + pos: 44.5,59.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: 43.5,59.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 4239 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: 33.5,39.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: 2.5,4.5 + parent: 6565 +- proto: WarpPoint + entities: + - uid: 6235 + components: + - type: Transform + pos: 40.5,43.5 + parent: 2 + - type: WarpPoint + location: Станция ОБР "Тета-19" +- proto: WaterCooler + entities: + - uid: 4976 + components: + - type: Transform + pos: 16.5,46.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: 51.5,46.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 43.5,52.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 5786 + components: + - type: Transform + pos: 34.5,62.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 4551 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 6045 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6046 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: WeaponAdvancedLaser + entities: + - uid: 1017 + components: + - type: Transform + pos: 32.542023,48.369553 + parent: 2 + - uid: 4563 + components: + - type: Transform + pos: 32.542023,48.572678 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 4312 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 +- proto: WeaponDisablerSMG + entities: + - uid: 4173 + components: + - type: Transform + pos: 36.52946,51.638393 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: 36.52946,51.513393 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: 36.52946,51.37277 + parent: 2 +- proto: WeaponEgun + entities: + - uid: 4178 + components: + - type: Transform + pos: 34.46696,51.62277 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: 34.46696,51.357143 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: 51.522648,34.683083 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: 51.522648,34.558083 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: 51.522648,34.386208 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: 46.508385,24.553823 + parent: 2 +- proto: WeaponLaserCannon + entities: + - uid: 4564 + components: + - type: Transform + pos: 32.573273,48.400803 + parent: 2 +- proto: WeaponLaserCarbine + entities: + - uid: 1009 + components: + - type: Transform + pos: 30.432648,48.463303 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: 30.432648,48.322678 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: 30.432648,48.588303 + parent: 2 +- proto: WeaponRifleLecter + entities: + - uid: 229 + components: + - type: Transform + pos: 30.511345,50.687366 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 30.511345,50.54674 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: 30.511345,50.406116 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: 30.524055,51.63325 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: 30.524055,51.477 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: 30.524055,51.32075 + parent: 2 +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 5062 + components: + - type: Transform + pos: 30.50843,47.6645 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: 30.50843,47.555126 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: 30.50843,47.44575 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 5785 + components: + - type: Transform + pos: 33.5,62.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: 4.5,48.5 + parent: 2 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 4048 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 +- proto: Windoor + entities: + - uid: 6472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,24.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,24.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 4124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,21.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,25.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,27.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,43.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,47.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,59.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 4292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,25.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,28.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 4903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,47.5 + parent: 2 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 7006 + components: + - type: Transform + pos: 2.5,9.5 + parent: 6565 + - uid: 7007 + components: + - type: Transform + pos: -1.5,9.5 + parent: 6565 + - uid: 7008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 6565 + - uid: 7009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 6565 + - uid: 7010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 6565 + - uid: 7011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 6565 + - uid: 7012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 6565 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 4492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 5197 + components: + - type: Transform + pos: 43.5,48.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: 48.5,52.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: 53.5,52.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 4014 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 4491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,39.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,32.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 +- proto: WindoorSecureQuartermasterLocked + entities: + - uid: 4985 + components: + - type: Transform + pos: 16.5,51.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 4129 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,25.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,38.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,38.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,38.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,25.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 6467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,24.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 7013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 6565 + - uid: 7014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 6565 + - uid: 7015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 6565 +- proto: WindowReinforcedDirectional + entities: + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,22.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,40.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,38.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,28.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,30.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,36.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,44.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,42.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,31.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,44.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,42.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,48.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,46.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,48.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,48.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + pos: 32.5,50.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + pos: 36.5,50.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,48.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,48.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,57.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,54.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + pos: 45.5,74.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + pos: 41.5,74.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,61.5 + parent: 2 + - uid: 5694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,60.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 6565 + - uid: 7017 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 6565 + - uid: 7018 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 6565 + - uid: 7019 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 6565 + - uid: 7020 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 6565 + - uid: 7021 + components: + - type: Transform + pos: -0.5,9.5 + parent: 6565 + - uid: 7022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 6565 + - uid: 7023 + components: + - type: Transform + pos: 1.5,9.5 + parent: 6565 + - uid: 7024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 6565 + - uid: 7025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 6565 + - uid: 7026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 6565 + - uid: 7027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 6565 + - uid: 7028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 6565 + - uid: 7029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 6565 + - uid: 7030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 6565 + - uid: 7031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 6565 +- proto: Wrench + entities: + - uid: 7032 + components: + - type: Transform + pos: -1.829648,-3.4088159 + parent: 6565 ... diff --git a/Resources/Maps/ERT/ERTShuttle.yml b/Resources/Maps/ERT/Old/ERTShuttle.yml similarity index 100% rename from Resources/Maps/ERT/ERTShuttle.yml rename to Resources/Maps/ERT/Old/ERTShuttle.yml diff --git a/Resources/Maps/ERT/Old/ERTStation.yml b/Resources/Maps/ERT/Old/ERTStation.yml new file mode 100644 index 0000000000..3e031f7ca1 --- /dev/null +++ b/Resources/Maps/ERT/Old/ERTStation.yml @@ -0,0 +1,18857 @@ +meta: + format: 5 + postmapinit: false +tilemap: + 0: Space + 24: FloorDark + 29: FloorDarkMono + 49: FloorKitchen + 53: FloorMetalDiamond + 70: FloorSteel + 81: FloorTechMaint2 + 83: FloorWhite + 88: FloorWhiteMono + 93: FloorWood + 95: Lattice + 96: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: -3.9375005,-1.5 + parent: 2522 + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: MQAAADEAAAAxAAAAYAAAAGAAAABgAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAADEAAAAxAAAAMQAAAGAAAABGAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABfAAAAXwAAAF8AAABgAAAAMQAAAGAAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAHQAAAB0AAAAdAAAAYAAAAAAAAAAAAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAEYAAABGAAAARgAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAGAAAAAdAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABGAAAARgAAAEYAAABgAAAAGAAAABgAAAAdAAAAHQAAAB0AAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAAYAAAABgAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAAAdAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAAAYAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAGAAAABgAAAAYAAAAGAAAABgAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAFEAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAARgAAAGAAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAA== + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAMQAAADEAAABgAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAADEAAAAxAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADEAAAAxAAAAMQAAAGAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAF8AAAAxAAAAMQAAADEAAABgAAAAYAAAAF8AAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAMQAAADEAAAAxAAAAYAAAAB0AAABgAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAA== + -1,0: + ind: -1,0 + tiles: HQAAAGAAAABTAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAUwAAAGAAAAAdAAAAUwAAAFMAAABgAAAAMQAAAFMAAABgAAAAUwAAAB0AAAAdAAAAHQAAAGAAAAAdAAAAUwAAAFMAAABgAAAAUwAAAFMAAABTAAAAYAAAADEAAABgAAAAYAAAAFMAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABYAAAAYAAAAFMAAABgAAAAUwAAAGAAAABgAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABgAAAARgAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAARgAAAEYAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABgAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGAAAABGAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAFMAAABTAAAAYAAAAGAAAABTAAAAYAAAAGAAAABGAAAAYAAAABgAAABgAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABTAAAAYAAAAGAAAAAdAAAAUwAAAB0AAABgAAAAHQAAAB0AAABgAAAAYAAAAB0AAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAHQAAAFMAAAAdAAAAYAAAAB0AAAAdAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAYAAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAB0AAABgAAAAYAAAAGAAAABgAAAARgAAAGAAAABGAAAARgAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAAA1AAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAANQAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABGAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAADUAAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAAAdAAAAHQAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAAYAAAAGAAAABgAAAAHQAAAEYAAABGAAAAUQAAAEYAAABGAAAAAAAAAF8AAAAAAAAAYAAAAB0AAABGAAAARgAAAB0AAAAdAAAAYAAAAB0AAABGAAAAHQAAAGAAAABGAAAARgAAAA== + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAYAAAABgAAAAYAAAAGAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAGAAAAAxAAAAMQAAADEAAAAxAAAAAAAAAGAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAABgAAAAMQAAADEAAAAxAAAAMQAAAAAAAABgAAAAGAAAABgAAAAdAAAAGAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAADEAAAAxAAAAMQAAADEAAABgAAAAYAAAABgAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAxAAAAHQAAAGAAAABTAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAHQAAAGAAAAAdAAAAHQAAAB0AAABgAAAAMQAAAA== + -1,1: + ind: -1,1 + tiles: AAAAAF8AAAAAAAAAYAAAAB0AAABGAAAARgAAAB0AAAAdAAAAYAAAAB0AAABGAAAAHQAAAGAAAABgAAAARgAAAAAAAABfAAAAAAAAAGAAAAAdAAAARgAAAEYAAAAdAAAAHQAAAGAAAAAdAAAARgAAAB0AAABgAAAAHQAAAEYAAABfAAAAXwAAAF8AAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAHQAAAEYAAAAdAAAAYAAAAB0AAABGAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABGAAAAHQAAAGAAAAAdAAAARgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAARgAAAB0AAABgAAAAHQAAAEYAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAABgAAAAYAAAAB0AAABGAAAAXwAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAARgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,1: + ind: 0,1 + tiles: YAAAAGAAAABGAAAARgAAAGAAAABgAAAAYAAAAEYAAABgAAAAYAAAAB0AAABGAAAARgAAAB0AAABgAAAAHQAAAB0AAABgAAAARgAAAEYAAAAdAAAAYAAAAEYAAABGAAAARgAAAGAAAAAdAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAYAAAAEYAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAHQAAAGAAAABGAAAARgAAAB0AAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAABgAAAARgAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAYAAAAEYAAABGAAAAHQAAAGAAAABGAAAARgAAAEYAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAGAAAABGAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAUwAAAFMAAABTAAAAYAAAAEYAAABGAAAARgAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAFMAAABTAAAAUwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAHQAAAGAAAAAdAAAAUwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABTAAAAUwAAAB0AAABgAAAAUwAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAGAAAABgAAAAUwAAAFMAAABgAAAAYAAAAGAAAABTAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAUwAAAGAAAABTAAAAUwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAB0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABgAAAAHQAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAADUAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAA1AAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABgAAAANQAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAA== + 0,2: + ind: 0,2 + tiles: AAAAAF8AAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHQAAAGAAAAAdAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAHQAAAGAAAAAdAAAAUwAAAA== + 1,0: + ind: 1,0 + tiles: AAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAFEAAABgAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 1,1: + ind: 1,1 + tiles: RgAAAB0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEYAAAAdAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - type: Broadphase + - angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#52B4E9FF' + id: Bot + decals: + 92: -23,-1 + 93: -23,0 + 94: -23,1 + 95: -20,1 + 96: -20,0 + 97: -20,-1 + 106: -23,4 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 120: -1,8 + 121: 0,8 + 122: 1,8 + 123: 2,8 + 124: 3,8 + 125: 3,7 + 126: 2,7 + 127: 1,7 + 128: 0,7 + 129: -1,7 + 138: -8,13 + 141: -9,9 + 143: -12,7 + 144: -13,7 + 145: -14,7 + 146: -14,8 + 159: -12,15 + 160: -12,16 + 161: -12,17 + 162: -8,17 + 163: -9,17 + 164: -9,16 + 165: -8,16 + 166: -8,15 + 167: -9,15 + 201: -6,14 + 253: 4,21 + 254: 4,19 + 255: 4,17 + 413: 15,16 + 414: 15,17 + 415: 17,17 + 416: 17,16 + 421: 10,17 + 422: 13,17 + 473: 11,6 + 474: 10,6 + 502: 11,12 + 561: -2,8 + 562: -2,7 + 563: 4,8 + 564: 4,7 + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 535: -12,-3 + 565: -11,-5 + - node: + color: '#52B4E9FF' + id: BotGreyscale + decals: + 42: -8,-1 + 43: -9,1 + 46: -5,0 + 47: -5,-1 + 48: -6,7 + 49: -6,8 + 50: -4,8 + 51: -4,7 + 52: -13,1 + 53: -12,1 + 54: -12,-1 + 55: -13,-1 + 80: -18,-1 + 81: -16,-1 + - node: + color: '#A020F0FF' + id: BotGreyscale + decals: + 512: 10,2 + 513: 11,2 + 514: 12,2 + - node: + color: '#52B4E9FF' + id: Box + decals: + 104: -23,3 + 105: -23,5 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 130: 1,10 + 139: -9,13 + 140: -8,9 + 142: -11,7 + 193: -6,15 + 194: -6,16 + 195: -6,17 + 196: -6,18 + 197: -4,18 + 198: -4,17 + 199: -4,16 + 200: -4,15 + 219: -2,20 + 220: -2,19 + 221: -2,18 + 222: -2,17 + 223: 0,20 + 224: 0,19 + 225: 0,18 + 226: 0,17 + 417: 12,17 + 418: 11,17 + 419: 10,16 + 420: 13,16 + 467: 12,8 + 468: 13,8 + 469: 14,8 + 470: 14,6 + 471: 13,6 + 472: 12,6 + 494: 10,12 + 495: 11,10 + 496: 12,12 + 497: 13,12 + 498: 14,12 + 499: 14,10 + 500: 13,10 + 501: 12,10 + 541: -2,21 + 542: -2,22 + 543: 0,21 + 544: 0,22 + 545: -6,19 + 546: -6,20 + 547: -4,19 + 548: -4,20 + - node: + color: '#52B4E996' + id: BoxGreyscale + decals: + 525: -10,-3 + 526: -9,-3 + 527: -8,-3 + 528: -7,-3 + 529: -6,-3 + 530: -6,-5 + 531: -7,-5 + 532: -8,-5 + 533: -10,-5 + 534: -9,-5 + - node: + color: '#52B4E9FF' + id: BoxGreyscale + decals: + 40: -7,-1 + 41: -9,-1 + 44: -3,-1 + 45: -4,-1 + 56: -11,1 + 57: -11,-1 + 78: -18,0 + 79: -16,0 + - node: + color: '#A020F0FF' + id: BrickTileSteelCornerNe + decals: + 503: 12,4 + - node: + color: '#A020F0FF' + id: BrickTileSteelCornerNw + decals: + 504: 10,4 + - node: + color: '#A020F0FF' + id: BrickTileSteelCornerSe + decals: + 507: 12,3 + - node: + color: '#A020F0FF' + id: BrickTileSteelCornerSw + decals: + 506: 10,3 + - node: + color: '#A020F0FF' + id: BrickTileSteelLineN + decals: + 505: 11,4 + - node: + color: '#A020F0FF' + id: BrickTileSteelLineS + decals: + 508: 11,3 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 259: 4,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 260: 2,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 262: 4,23 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 264: 2,23 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 261: 3,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 263: 3,23 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 278: 8,23 + 279: 8,21 + 280: 8,30 + 281: 8,32 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 282: 8,34 + 283: 6,34 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 284: 9,30 + 285: 9,32 + 286: 9,23 + 287: 8,35 + 288: 6,35 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 441: 8,11 + 446: -1,3 + 447: -3,-3 + 460: -1,14 + 466: 17,15 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 435: -5,10 + 436: 2,12 + 437: 6,10 + 438: 0,9 + 442: 8,2 + 443: 7,7 + 444: -1,5 + 445: 2,3 + 448: 1,-2 + 453: 7,28 + 454: 8,17 + 455: 7,24 + 456: 8,33 + 457: 6,31 + 458: 2,20 + 459: 3,14 + 461: -5,15 + 462: -1,18 + 463: 11,15 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 439: -1,12 + 440: 6,4 + 449: 2,-3 + 450: 6,21 + 451: 8,22 + 452: 6,29 + 464: 13,15 + 465: 16,17 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNe + decals: + 227: 4,15 + 289: 8,15 + 374: 8,33 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNw + decals: + 228: -2,15 + 290: 6,15 + 315: -1,5 + 337: -6,12 + 373: 6,33 + 386: -4,-3 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSe + decals: + 235: 4,14 + 304: 8,2 + 353: 8,17 + 384: -2,-5 + 557: 4,9 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSw + decals: + 234: -2,14 + 308: 4,2 + 313: -1,3 + 335: -6,10 + 352: 6,17 + 383: -4,-5 + 558: -2,9 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelEndE + decals: + 388: 2,-3 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelEndN + decals: + 242: 2,22 + 399: 1,1 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelEndS + decals: + 241: 2,16 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNe + decals: + 404: 1,-3 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNw + decals: + 323: 6,5 + 351: 6,12 + 403: 1,-3 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSe + decals: + 330: 4,10 + 396: -2,-3 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSw + decals: + 322: 4,3 + 329: 6,10 + 334: -2,10 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineE + decals: + 243: 2,21 + 244: 2,20 + 245: 2,19 + 246: 2,18 + 247: 2,17 + 292: 8,14 + 293: 8,13 + 294: 8,12 + 295: 8,11 + 296: 8,10 + 297: 8,9 + 298: 8,8 + 299: 8,7 + 300: 8,6 + 301: 8,5 + 302: 8,4 + 303: 8,3 + 355: 8,18 + 356: 8,19 + 357: 8,20 + 376: 8,29 + 377: 8,28 + 378: 8,27 + 379: 8,25 + 380: 8,25 + 381: 8,24 + 382: 8,26 + 387: -2,-4 + 397: 1,-2 + 398: 1,-1 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineN + decals: + 229: -1,15 + 230: 0,15 + 231: 1,15 + 232: 2,15 + 233: 3,15 + 291: 7,15 + 316: 0,5 + 317: 1,5 + 318: 3,5 + 319: 2,5 + 320: 4,5 + 321: 5,5 + 338: -5,12 + 339: -4,12 + 340: -3,12 + 341: -1,12 + 342: -2,12 + 343: 1,12 + 344: 0,12 + 345: 2,12 + 346: 3,12 + 347: 5,12 + 348: 4,12 + 375: 7,33 + 392: 0,-3 + 393: -1,-3 + 394: -2,-3 + 395: -3,-3 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineS + decals: + 236: -1,14 + 237: 0,14 + 238: 1,14 + 239: 2,14 + 240: 3,14 + 305: 7,2 + 306: 6,2 + 307: 5,2 + 309: 3,3 + 310: 2,3 + 311: 1,3 + 312: 0,3 + 328: 5,10 + 331: -3,10 + 332: -4,10 + 333: -5,10 + 354: 7,17 + 385: -3,-5 + 389: 1,-3 + 390: 0,-3 + 391: -1,-3 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineW + decals: + 248: 2,17 + 249: 2,18 + 250: 2,19 + 251: 2,20 + 252: 2,21 + 314: -1,4 + 324: 6,6 + 325: 6,7 + 326: 6,8 + 327: 6,9 + 336: -6,11 + 349: 6,13 + 350: 6,14 + 358: 6,18 + 359: 6,19 + 360: 6,20 + 361: 6,21 + 362: 6,22 + 363: 6,23 + 364: 6,24 + 365: 6,25 + 366: 6,26 + 367: 6,27 + 368: 6,28 + 369: 6,29 + 370: 6,30 + 371: 6,31 + 372: 6,32 + 400: 1,-2 + 401: 1,-1 + 402: 1,0 + - node: + color: '#0E7F1BFF' + id: MiniTileWhiteCornerNe + decals: + 107: -20,5 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNe + decals: + 1: -8,6 + 12: -3,5 + 27: -11,5 + - node: + color: '#EFB341FF' + id: MiniTileWhiteCornerNe + decals: + 169: -10,13 + 173: -8,12 + 184: -11,9 + - node: + color: '#0E7F1BFF' + id: MiniTileWhiteCornerNw + decals: + 108: -22,5 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNw + decals: + 0: -9,6 + 26: -18,5 + - node: + color: '#EFB341FF' + id: MiniTileWhiteCornerNw + decals: + 168: -11,13 + - node: + color: '#0E7F1BFF' + id: MiniTileWhiteCornerSe + decals: + 109: -20,3 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSe + decals: + 10: -3,3 + 18: -11,3 + - node: + color: '#EFB341FF' + id: MiniTileWhiteCornerSe + decals: + 170: -8,11 + 183: -11,8 + - node: + color: '#0E7F1BFF' + id: MiniTileWhiteCornerSw + decals: + 110: -22,3 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSw + decals: + 4: -9,3 + 19: -18,3 + - node: + color: '#EFB341FF' + id: MiniTileWhiteCornerSw + decals: + 171: -11,11 + 181: -13,8 + - node: + color: '#0E7F1BFF' + id: MiniTileWhiteEndE + decals: + 112: -21,2 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteEndN + decals: + 36: -14,1 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteEndS + decals: + 37: -14,-1 + - node: + color: '#0E7F1BFF' + id: MiniTileWhiteEndW + decals: + 111: -22,2 + - node: + color: '#EFB341FF' + id: MiniTileWhiteEndW + decals: + 180: -14,9 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerNe + decals: + 17: -8,5 + - node: + color: '#EFB341FF' + id: MiniTileWhiteInnerNe + decals: + 175: -10,12 + - node: + color: '#EFB341FF' + id: MiniTileWhiteInnerSw + decals: + 187: -13,9 + - node: + color: '#0E7F1BFF' + id: MiniTileWhiteLineE + decals: + 114: -20,4 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineE + decals: + 11: -3,4 + 34: -11,4 + 38: -14,0 + - node: + color: '#0E7F1BFF' + id: MiniTileWhiteLineN + decals: + 113: -21,5 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineN + decals: + 13: -4,5 + 14: -5,5 + 15: -6,5 + 16: -7,5 + 28: -17,5 + 29: -16,5 + 30: -15,5 + 31: -14,5 + 32: -13,5 + 33: -12,5 + - node: + color: '#EFB341FF' + id: MiniTileWhiteLineN + decals: + 174: -9,12 + 185: -12,9 + 186: -13,9 + - node: + color: '#0E7F1BFF' + id: MiniTileWhiteLineS + decals: + 115: -21,3 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineS + decals: + 5: -8,3 + 6: -7,3 + 7: -6,3 + 8: -5,3 + 9: -4,3 + 20: -17,3 + 21: -16,3 + 22: -15,3 + 23: -14,3 + 24: -12,3 + 25: -13,3 + - node: + color: '#EFB341FF' + id: MiniTileWhiteLineS + decals: + 176: -9,11 + 177: -10,11 + 182: -12,8 + - node: + color: '#0E7F1BFF' + id: MiniTileWhiteLineW + decals: + 116: -22,4 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineW + decals: + 2: -9,5 + 3: -9,4 + 35: -18,4 + 39: -14,0 + - node: + color: '#EFB341FF' + id: MiniTileWhiteLineW + decals: + 172: -11,12 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 147: -18,10 + 148: -16,10 + 149: -18,8 + - node: + color: '#52B4E9FF' + id: WarnCornerGreyscaleSW + decals: + 70: -4,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 425: 12,16 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 426: 11,16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 190: -13,8 + - node: + color: '#52B4E996' + id: WarnCornerSmallGreyscaleNE + decals: + 540: -13,-4 + - node: + color: '#52B4E996' + id: WarnCornerSmallGreyscaleNW + decals: + 539: -11,-4 + - node: + color: '#52B4E9FF' + id: WarnCornerSmallGreyscaleNW + decals: + 69: -8,0 + - node: + color: '#52B4E996' + id: WarnCornerSmallGreyscaleSE + decals: + 568: -12,-4 + - node: + color: '#52B4E9FF' + id: WarnCornerSmallGreyscaleSE + decals: + 90: -16,1 + 91: -17,1 + - node: + color: '#52B4E9FF' + id: WarnCornerSmallGreyscaleSW + decals: + 73: -4,1 + 88: -18,1 + 89: -17,1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 275: 8,29 + 276: 8,20 + 411: 16,15 + 428: 12,15 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 410: 16,15 + 427: 11,15 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 274: 8,33 + 277: 8,24 + 493: 10,11 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 192: -13,9 + - node: + color: '#52B4E9FF' + id: WarnLineE + decals: + 101: -21,-1 + 102: -21,0 + 103: -21,1 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 156: -10,15 + 157: -10,16 + 158: -10,17 + 207: -5,15 + 208: -5,16 + 209: -5,17 + 210: -5,18 + 211: -1,17 + 212: -1,18 + 213: -1,19 + 214: -1,20 + 256: 3,17 + 257: 3,19 + 258: 3,21 + 265: 8,30 + 266: 8,31 + 267: 8,32 + 268: 8,21 + 269: 8,22 + 270: 8,23 + 407: 16,16 + 408: 16,17 + 492: 10,10 + 553: -5,19 + 554: -5,20 + 555: -1,21 + 556: -1,22 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 537: -13,-3 + 567: -12,-5 + - node: + color: '#52B4E9FF' + id: WarnLineGreyscaleE + decals: + 76: -5,7 + 77: -5,8 + 82: -17,-1 + 83: -17,0 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleN + decals: + 515: -10,-4 + 516: -9,-4 + 517: -8,-4 + 518: -7,-4 + 519: -6,-4 + 536: -12,-4 + - node: + color: '#52B4E9FF' + id: WarnLineGreyscaleN + decals: + 58: -11,0 + 59: -12,0 + 60: -13,0 + 67: -9,0 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleS + decals: + 520: -6,-4 + 521: -7,-4 + 522: -8,-4 + 523: -9,-4 + 524: -10,-4 + 566: -11,-4 + - node: + color: '#52B4E9FF' + id: WarnLineGreyscaleS + decals: + 61: -11,0 + 62: -12,0 + 63: -13,0 + 64: -8,0 + 65: -7,0 + 66: -9,0 + 71: -3,0 + 72: -5,1 + 86: -18,1 + 87: -16,1 + - node: + color: '#A020F0FF' + id: WarnLineGreyscaleS + decals: + 509: 10,3 + 510: 11,3 + 511: 12,3 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 538: -11,-3 + - node: + color: '#52B4E9FF' + id: WarnLineGreyscaleW + decals: + 68: -8,1 + 74: -5,7 + 75: -5,8 + 84: -17,-1 + 85: -17,0 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 131: -1,9 + 132: 0,9 + 133: 1,9 + 134: 2,9 + 135: 3,9 + 188: -11,8 + 189: -12,8 + 191: -14,9 + 478: 14,7 + 479: 13,7 + 480: 12,7 + 481: 11,7 + 482: 10,7 + 488: 14,11 + 489: 13,11 + 490: 12,11 + 491: 11,11 + 559: -2,9 + 560: 4,9 + - node: + color: '#52B4E996' + id: WarnLineS + decals: + 117: -22,3 + 118: -22,4 + 119: -22,5 + - node: + color: '#52B4E9FF' + id: WarnLineS + decals: + 98: -22,-1 + 99: -22,0 + 100: -22,1 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 153: -11,15 + 154: -11,16 + 155: -11,17 + 202: -5,14 + 203: -5,15 + 204: -5,16 + 205: -5,17 + 206: -5,18 + 215: -1,17 + 216: -1,18 + 217: -1,19 + 218: -1,20 + 405: 16,16 + 406: 16,17 + 549: -5,19 + 550: -5,20 + 551: -1,21 + 552: -1,22 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 136: -8,8 + 137: -9,8 + 150: -18,7 + 151: -17,7 + 152: -16,7 + 178: -8,12 + 179: -9,12 + 271: 8,34 + 272: 7,34 + 273: 6,34 + 409: 15,15 + 412: 17,15 + 423: 10,15 + 424: 13,15 + 475: 14,7 + 476: 13,7 + 477: 12,7 + 483: 14,11 + 484: 13,11 + 485: 12,11 + 486: 11,11 + 487: 10,11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 432: 17,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 431: 17,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 430: 16,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 429: 16,14 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 434: 16,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 433: 16,13 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 1,0: + 0: 65535 + 2,0: + 0: 65525 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 13298 + 3,1: + 0: 65523 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + 0,-2: + 0: 65297 + 0,-1: + 0: 65535 + 1,-1: + 0: 48015 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 45055 + -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 + -4,-1: + 0: 65518 + -3,-1: + 0: 65535 + -2,-1: + 0: 65535 + -2,-2: + 0: 65416 + -1,-2: + 0: 65280 + -1,-1: + 0: 65535 + -4,4: + 0: 20394 + -3,4: + 0: 12287 + -2,4: + 0: 61439 + -1,4: + 0: 65535 + -1,5: + 0: 61183 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 61694 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65279 + 1,7: + 0: 61422 + 2,4: + 0: 16383 + 2,5: + 0: 13107 + 2,6: + 0: 13107 + 2,7: + 0: 13107 + 3,4: + 0: 4095 + -6,0: + 0: 65535 + -6,1: + 0: 36863 + -6,2: + 0: 3976 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 61439 + -5,3: + 0: 12030 + 1,8: + 0: 61422 + 2,8: + 0: 13107 + -6,-1: + 0: 65314 + -5,-1: + 0: 65348 + 4,2: + 0: 61680 + 4,3: + 0: 63351 + 4,4: + 0: 3959 + 0,-3: + 0: 7936 + 1,-3: + 0: 12544 + 1,-2: + 0: 34958 + 2,-1: + 0: 17487 + 3,-1: + 0: 8879 + -4,-3: + 0: 12032 + -4,-2: + 0: 60962 + -3,-3: + 0: 20224 + -3,-2: + 0: 65348 + -2,-3: + 0: 36608 + -1,-3: + 0: 3840 + -4,5: + 0: 62788 + -3,5: + 0: 61986 + -2,5: + 0: 62190 + -2,6: + 0: 1578 + -1,6: + 0: 58083 + -1,7: + 0: 140 + 0,7: + 0: 12048 + -7,0: + 0: 7953 + -7,1: + 0: 7953 + -7,2: + 0: 19555 + -7,3: + 0: 34948 + -6,3: + 0: 4336 + 0,8: + 0: 3618 + -7,-1: + 0: 7959 + -7,-2: + 0: 51200 + -6,-2: + 0: 12032 + -5,-2: + 0: 18244 + -5,-3: + 0: 51200 + 4,0: + 0: 35956 + 4,1: + 0: 240 + 5,0: + 0: 4096 + 5,1: + 0: 12561 + 5,2: + 0: 63734 + 5,3: + 0: 63624 + 5,4: + 0: 3976 + 4,-1: + 0: 25360 + -6,4: + 0: 35939 + -6,5: + 0: 8 + -5,5: + 0: 2247 + -5,4: + 0: 11810 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - uid: 2522 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap +- proto: AdvMopItem + entities: + - uid: 3 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: AirAlarm + entities: + - uid: 15 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 913 + - 914 + - 912 + - 901 + - 911 + - 902 + type: DeviceNetwork + - devices: + - 1374 + - 1356 + - 1376 + - 1345 + - 1350 + - 1377 + - 1349 + - 1375 + - 1360 + - 1384 + - 1401 + - 1364 + - 1402 + - 1365 + - 913 + - 914 + - 912 + - 901 + - 911 + - 902 + type: DeviceList + - uid: 16 + components: + - pos: -14.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 903 + - 917 + type: DeviceNetwork + - devices: + - 1355 + - 1378 + - 1381 + - 1346 + - 1353 + - 1380 + - 1379 + - 1354 + - 1382 + - 1351 + - 1383 + - 1352 + - 913 + - 915 + - 916 + - 917 + - 918 + - 903 + type: DeviceList + - uid: 17 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1336 + - 1391 + - 1335 + - 1392 + - 1394 + - 1333 + - 1393 + - 1334 + - 1395 + - 1332 + type: DeviceNetwork + - devices: + - 926 + - 927 + - 928 + - 929 + - 907 + - 1336 + - 1391 + - 1335 + - 1392 + - 1394 + - 1333 + - 1393 + - 1334 + - 1395 + - 1332 + type: DeviceList + - uid: 18 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 930 + - 933 + - 934 + - 931 + - 932 + - 908 + type: DeviceNetwork + - devices: + - 1329 + - 1367 + - 1396 + - 1361 + - 1366 + - 1328 + - 930 + - 933 + - 934 + - 931 + - 932 + - 908 + type: DeviceList + - uid: 19 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 937 + - 935 + type: DeviceNetwork + - devices: + - 1368 + - 1330 + - 1331 + - 1369 + - 1387 + - 1342 + - 1370 + - 1343 + - 1373 + - 1344 + - 905 + - 906 + - 925 + - 921 + - 920 + - 919 + - 922 + - 923 + - 924 + - 935 + - 937 + type: DeviceList + - uid: 20 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 930 + - 933 + - 934 + - 931 + - 932 + - 908 + type: DeviceNetwork + - devices: + - 1359 + - 1372 + - 1358 + - 1371 + - 1386 + - 1347 + - 1399 + - 1362 + - 1385 + - 1348 + - 930 + - 933 + - 934 + - 931 + - 932 + - 908 + type: DeviceList +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 21 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1 + type: Transform +- proto: AirlockChemistry + entities: + - uid: 22 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 23 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + type: Transform +- proto: AirlockCommandLocked + entities: + - uid: 27 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 3.141592653589793 rad + pos: 16.5,14.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 34 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 35 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -9.5,14.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -10.5,14.5 + parent: 1 + type: Transform +- proto: AirlockEVAGlassLocked + entities: + - uid: 38 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 39 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,30.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,32.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: 3.141592653589793 rad + pos: 8.5,35.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: 6.5,35.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,21.5 + parent: 1 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 45 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 46 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 47 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 54 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockVirologyLocked + entities: + - uid: 55 + components: + - pos: -18.5,4.5 + parent: 1 + type: Transform +- proto: AlwaysPoweredWallLight + entities: + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 61 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 64 + components: + - pos: 8.5,35.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 9.5,32.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 6.5,35.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 9.5,30.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 70 + components: + - pos: -22.5,0.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: -22.5,-0.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: 17.5,12.5 + parent: 1 + type: Transform + - uid: 1822 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 1871 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 2088 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform + - uid: 2415 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 1 + type: Transform +- proto: BedsheetGreen + entities: + - uid: 86 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -22.5,-0.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -22.5,0.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 92 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 2420 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 2421 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 2422 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 2423 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform +- proto: BedsheetRed + entities: + - uid: 96 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform +- proto: BenchSteelLeft + entities: + - uid: 104 + components: + - pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 106 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 108 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,29.5 + parent: 1 + type: Transform +- proto: BenchSteelMiddle + entities: + - uid: 111 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 113 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 1 + type: Transform +- proto: BenchSteelRight + entities: + - uid: 114 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,31.5 + parent: 1 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 121 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform +- proto: BluespaceBeaker + entities: + - uid: 123 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 124 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 125 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2434 + components: + - pos: -4.548982,0.16582179 + parent: 1 + type: Transform + - sleepingAllowed: False + type: Physics + - uid: 2435 + components: + - pos: -4.548982,0.16582179 + parent: 1 + type: Transform + - sleepingAllowed: False + type: Physics + - uid: 2436 + components: + - pos: -4.548982,0.16582179 + parent: 1 + type: Transform + - sleepingAllowed: False + type: Physics + - uid: 2437 + components: + - pos: -4.548982,0.16582179 + parent: 1 + type: Transform + - sleepingAllowed: False + type: Physics + - uid: 2519 + components: + - pos: -4.548982,0.16582179 + parent: 1 + type: Transform + - sleepingAllowed: False + type: Physics + - uid: 2521 + components: + - pos: -4.548982,0.16582179 + parent: 1 + type: Transform + - sleepingAllowed: False + type: Physics +- proto: BoxBeaker + entities: + - uid: 126 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 127 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 128 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxBottle + entities: + - uid: 129 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 130 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 131 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxFlare + entities: + - uid: 2431 + components: + - pos: 11.672989,10.511342 + parent: 1 + type: Transform + - uid: 2432 + components: + - pos: 11.672989,10.511342 + parent: 1 + type: Transform + - uid: 2433 + components: + - pos: 11.672989,10.511342 + parent: 1 + type: Transform + - uid: 2449 + components: + - pos: 11.672989,10.511342 + parent: 1 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 2430 + components: + - pos: 11.207846,8.700965 + parent: 1 + type: Transform + - uid: 2505 + components: + - pos: 11.207846,8.700965 + parent: 1 + type: Transform + - uid: 2515 + components: + - pos: 11.207846,8.700965 + parent: 1 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 147 + components: + - pos: -13.687119,-3.4444265 + parent: 1 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 148 + components: + - pos: -13.562119,-3.6163015 + parent: 1 + type: Transform +- proto: BoxHandcuff + entities: + - uid: 146 + components: + - pos: 11.207846,8.700965 + parent: 1 + type: Transform + - uid: 2494 + components: + - pos: 11.207846,8.700965 + parent: 1 + type: Transform + - uid: 2501 + components: + - pos: 11.207846,8.700965 + parent: 1 + type: Transform +- proto: BoxInflatable + entities: + - uid: 152 + components: + - pos: -13.603695,8.84306 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: -13.447445,8.733685 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: -16.105898,7.8279896 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: -16.105898,7.7342396 + parent: 1 + type: Transform +- proto: BoxMagazinePistolSubMachineGunTopMounted + entities: + - uid: 156 + components: + - pos: 14.503235,6.6935053 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 14.51886,6.5841303 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 14.503235,6.3966303 + parent: 1 + type: Transform +- proto: BoxMagazineRifleHighVelocity + entities: + - uid: 159 + components: + - pos: 14.503235,6.6778803 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 14.503235,6.5372553 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 14.503235,6.4122553 + parent: 1 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 162 + components: + - pos: -2.836203,5.617304 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: -20.631887,5.7038546 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: -20.522512,5.6257296 + parent: 1 + type: Transform +- proto: BoxMRE + entities: + - uid: 165 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 1.515235,-3.5387702 + parent: 1 + type: Transform + - uid: 1670 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform + - uid: 2426 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform + - uid: 2429 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform + - uid: 2496 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform + - uid: 2497 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform + - uid: 2498 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform + - uid: 2504 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform + - uid: 2512 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform + - uid: 2514 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform + - uid: 2518 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform + - uid: 2520 + components: + - pos: 1.5338726,-3.522396 + parent: 1 + type: Transform +- proto: BoxNitrileGloves + entities: + - uid: 185 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 186 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 187 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxSyringe + entities: + - uid: 188 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 189 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 190 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxZiptie + entities: + - uid: 2425 + components: + - pos: 11.192221,8.68534 + parent: 1 + type: Transform + - uid: 2499 + components: + - pos: 11.192221,8.68534 + parent: 1 + type: Transform + - uid: 2502 + components: + - pos: 11.207846,8.700965 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 220 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: 7.5,17.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: 7.5,18.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: 7.5,19.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: 7.5,20.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: 7.5,22.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: 7.5,23.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: 7.5,24.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: 7.5,25.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: 7.5,26.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 7.5,28.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: 7.5,29.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 7.5,30.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: 7.5,31.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: 7.5,32.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: 7.5,33.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: -13.5,3.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 13.5,10.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 375 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 381 + components: + - pos: -12.5,9.5 + parent: 1 + type: Transform + - uid: 382 + components: + - pos: -14.5,9.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: -13.5,9.5 + parent: 1 + type: Transform + - uid: 384 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 385 + components: + - pos: -16.5,9.5 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: -16.5,8.5 + parent: 1 + type: Transform + - uid: 387 + components: + - pos: -16.5,10.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: -17.5,9.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: -12.5,8.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: -10.5,13.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -12.5,11.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -4.5,17.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -0.5,19.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: -0.5,20.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: -1.5,20.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -13.5,-0.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -15.5,4.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -16.5,4.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -17.5,4.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -18.5,4.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -20.5,4.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -21.5,4.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -22.5,3.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: -20.5,5.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: -20.5,3.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: -20.5,2.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: -20.5,1.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: -18.5,5.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: -18.5,3.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: -18.5,2.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -16.5,5.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: -16.5,3.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 15.5,15.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 16.5,15.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: 16.5,14.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: 16.5,13.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: 16.5,12.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: 17.5,13.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: 16.5,16.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: 16.5,17.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: 17.5,15.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 13.5,16.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: -13.5,-1.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: -16.5,11.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform +- proto: CableApcStack + entities: + - uid: 526 + components: + - pos: -11.461973,7.4275074 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: -11.461973,7.4275074 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 528 + components: + - pos: -11.5,11.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: -12.5,11.5 + parent: 1 + type: Transform + - uid: 530 + components: + - pos: -13.5,11.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform + - uid: 532 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 533 + components: + - pos: -11.5,13.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 535 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 536 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 537 + components: + - pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 538 + components: + - pos: -9.5,11.5 + parent: 1 + type: Transform + - uid: 539 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 541 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 542 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 543 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 544 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 546 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 555 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 560 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 562 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 563 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 564 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 565 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 566 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 567 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 568 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 569 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 571 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 573 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 574 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 575 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 576 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform +- proto: CableHVStack + entities: + - uid: 577 + components: + - pos: -11.461973,7.4431324 + parent: 1 + type: Transform + - uid: 578 + components: + - pos: -11.461973,7.4431324 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 579 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 581 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform + - uid: 582 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 583 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 584 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 585 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 586 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 587 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: CableMVStack + entities: + - uid: 588 + components: + - pos: -11.461973,7.4431324 + parent: 1 + type: Transform + - uid: 589 + components: + - pos: -11.461973,7.4431324 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 590 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 591 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 593 + components: + - pos: 17.5,13.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: 17.5,12.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 595 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 599 + components: + - rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 600 + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 601 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 606 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 607 + components: + - rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: 3.141592653589793 rad + pos: 12.5,16.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 609 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform +- proto: chem_master + entities: + - uid: 611 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform +- proto: ChemDispenser + entities: + - uid: 612 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 613 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - placedEntities: + - 2521 + - 2519 + - 2434 + - 2435 + - 2436 + - 2437 + type: SolutionHeater + - isPlaceable: False + type: PlaceableSurface + - uid: 614 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform +- proto: ChessBoard + entities: + - uid: 615 + components: + - pos: -19.452597,1.411099 + parent: 1 + type: Transform +- proto: CigCartonBlack + entities: + - uid: 616 + components: + - pos: 11.556568,14.666323 + parent: 1 + type: Transform +- proto: CloningPod + entities: + - uid: 617 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetJanitor + entities: + - uid: 2 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11 + - 12 + - 6 + - 14 + - 9 + - 13 + - 10 + - 7 + - 4 + - 3 + - 8 + - 5 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetL3Filled + entities: + - uid: 618 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetL3JanitorFilled + entities: + - uid: 620 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform +- proto: ClosetL3VirologyFilled + entities: + - uid: 621 + components: + - pos: -19.5,3.5 + parent: 1 + type: Transform +- proto: ClosetWallFireFilledRandom + entities: + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + type: Transform +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 624 + components: + - pos: -15.512499,1.8656251 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: -15.512499,1.7250001 + parent: 1 + type: Transform +- proto: ClothingBeltChiefEngineerFilled + entities: + - uid: 627 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 639 + components: + - flags: InContainer + type: MetaData + - parent: 638 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2479 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2484 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingBeltJanitorFilled + entities: + - uid: 4 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingBeltMedicalFilled + entities: + - uid: 650 + components: + - flags: InContainer + type: MetaData + - parent: 649 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 660 + components: + - flags: InContainer + type: MetaData + - parent: 659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2459 + components: + - flags: InContainer + type: MetaData + - parent: 2450 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2468 + components: + - flags: InContainer + type: MetaData + - parent: 2460 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingBeltSecurityFilled + entities: + - uid: 670 + components: + - flags: InContainer + type: MetaData + - parent: 669 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 683 + components: + - flags: InContainer + type: MetaData + - parent: 678 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 688 + components: + - flags: InContainer + type: MetaData + - parent: 687 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 703 + components: + - flags: InContainer + type: MetaData + - parent: 696 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 706 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingEyesGlassesMeson + entities: + - uid: 637 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 640 + components: + - flags: InContainer + type: MetaData + - parent: 638 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2475 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2488 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 675 + components: + - flags: InContainer + type: MetaData + - parent: 669 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 685 + components: + - flags: InContainer + type: MetaData + - parent: 678 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 693 + components: + - flags: InContainer + type: MetaData + - parent: 687 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 697 + components: + - flags: InContainer + type: MetaData + - parent: 696 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 707 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingEyesHudMedical + entities: + - uid: 191 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 192 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 193 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 194 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 195 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 651 + components: + - flags: InContainer + type: MetaData + - parent: 649 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 661 + components: + - flags: InContainer + type: MetaData + - parent: 659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2452 + components: + - flags: InContainer + type: MetaData + - parent: 2450 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2461 + components: + - flags: InContainer + type: MetaData + - parent: 2460 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 5 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 629 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 641 + components: + - flags: InContainer + type: MetaData + - parent: 638 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2471 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2489 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHandsGlovesCombat + entities: + - uid: 677 + components: + - flags: InContainer + type: MetaData + - parent: 669 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 679 + components: + - flags: InContainer + type: MetaData + - parent: 678 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 694 + components: + - flags: InContainer + type: MetaData + - parent: 687 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 698 + components: + - flags: InContainer + type: MetaData + - parent: 696 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 708 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHandsGlovesLatex + entities: + - uid: 721 + components: + - pos: -10.494837,-2.619924 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 652 + components: + - flags: InContainer + type: MetaData + - parent: 649 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 662 + components: + - flags: InContainer + type: MetaData + - parent: 659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2455 + components: + - flags: InContainer + type: MetaData + - parent: 2450 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2469 + components: + - flags: InContainer + type: MetaData + - parent: 2460 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHatCentcom + entities: + - uid: 722 + components: + - pos: 12.577686,14.634814 + parent: 1 + type: Transform +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 196 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 197 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 198 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 199 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 200 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHelmetERTEngineer + entities: + - uid: 630 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 642 + components: + - flags: InContainer + type: MetaData + - parent: 638 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2473 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2487 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHelmetERTJanitor + entities: + - uid: 6 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHelmetERTLeader + entities: + - uid: 709 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHelmetERTMedic + entities: + - uid: 653 + components: + - flags: InContainer + type: MetaData + - parent: 649 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 663 + components: + - flags: InContainer + type: MetaData + - parent: 659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2454 + components: + - flags: InContainer + type: MetaData + - parent: 2450 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2463 + components: + - flags: InContainer + type: MetaData + - parent: 2460 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHelmetERTSecurity + entities: + - uid: 673 + components: + - flags: InContainer + type: MetaData + - parent: 669 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 681 + components: + - flags: InContainer + type: MetaData + - parent: 678 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 692 + components: + - flags: InContainer + type: MetaData + - parent: 687 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 704 + components: + - flags: InContainer + type: MetaData + - parent: 696 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingMaskBreath + entities: + - uid: 723 + components: + - pos: -15.621874,1.4281251 + parent: 1 + type: Transform +- proto: ClothingMaskGasERT + entities: + - uid: 7 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 631 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 643 + components: + - flags: InContainer + type: MetaData + - parent: 638 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 654 + components: + - flags: InContainer + type: MetaData + - parent: 649 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 664 + components: + - flags: InContainer + type: MetaData + - parent: 659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 676 + components: + - flags: InContainer + type: MetaData + - parent: 669 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 686 + components: + - flags: InContainer + type: MetaData + - parent: 678 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 695 + components: + - flags: InContainer + type: MetaData + - parent: 687 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 699 + components: + - flags: InContainer + type: MetaData + - parent: 696 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 710 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2453 + components: + - flags: InContainer + type: MetaData + - parent: 2450 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2464 + components: + - flags: InContainer + type: MetaData + - parent: 2460 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2476 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2485 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingMaskSterile + entities: + - uid: 201 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 202 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 203 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 204 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 205 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 724 + components: + - pos: -10.479212,-2.369924 + parent: 1 + type: Transform +- proto: ClothingNeckStethoscope + entities: + - uid: 206 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 207 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 208 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 209 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 210 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 655 + components: + - flags: InContainer + type: MetaData + - parent: 649 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 665 + components: + - flags: InContainer + type: MetaData + - parent: 659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2458 + components: + - flags: InContainer + type: MetaData + - parent: 2450 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2467 + components: + - flags: InContainer + type: MetaData + - parent: 2460 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 8 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 632 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 644 + components: + - flags: InContainer + type: MetaData + - parent: 638 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 656 + components: + - flags: InContainer + type: MetaData + - parent: 649 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 666 + components: + - flags: InContainer + type: MetaData + - parent: 659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 674 + components: + - flags: InContainer + type: MetaData + - parent: 669 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 680 + components: + - flags: InContainer + type: MetaData + - parent: 678 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 689 + components: + - flags: InContainer + type: MetaData + - parent: 687 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 701 + components: + - flags: InContainer + type: MetaData + - parent: 696 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 711 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2451 + components: + - flags: InContainer + type: MetaData + - parent: 2450 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2462 + components: + - flags: InContainer + type: MetaData + - parent: 2460 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2472 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2483 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTEngineer + entities: + - uid: 725 + components: + - pos: 12.363798,10.655693 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 12.629423,10.671318 + parent: 1 + type: Transform + - uid: 729 + components: + - pos: 13.553246,10.656452 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: 13.318871,10.672077 + parent: 1 + type: Transform +- proto: ClothingOuterHardsuitERTJanitor + entities: + - uid: 9 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTLeaderFluff + entities: + - uid: 712 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTMedical + entities: + - uid: 727 + components: + - pos: 12.426298,12.655693 + parent: 1 + type: Transform + - uid: 728 + components: + - pos: 12.629423,12.640068 + parent: 1 + type: Transform + - uid: 1578 + components: + - pos: 13.584496,12.625202 + parent: 1 + type: Transform + - uid: 1581 + components: + - pos: 13.396996,12.625202 + parent: 1 + type: Transform +- proto: ClothingOuterHardsuitERTSecurity + entities: + - uid: 1579 + components: + - pos: 14.350121,12.656452 + parent: 1 + type: Transform + - uid: 1582 + components: + - pos: 14.568871,12.656452 + parent: 1 + type: Transform + - uid: 1583 + components: + - pos: 14.334496,10.718952 + parent: 1 + type: Transform + - uid: 1806 + components: + - pos: 14.553246,10.718952 + parent: 1 + type: Transform +- proto: ClothingShoesBootsMagAdv + entities: + - uid: 10 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 713 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 731 + components: + - pos: 14.537621,10.328327 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: 14.350121,10.312702 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: 12.363798,12.249443 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: 12.566923,12.249443 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: 12.410673,10.265068 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 12.598173,10.265068 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 14.365746,12.250202 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: 14.592072,12.255352 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: 13.350121,10.265827 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: 13.553246,10.265827 + parent: 1 + type: Transform + - uid: 1596 + components: + - pos: 13.350121,12.234577 + parent: 1 + type: Transform + - uid: 1597 + components: + - pos: 13.584496,12.218952 + parent: 1 + type: Transform +- proto: computerBodyScanner + entities: + - uid: 741 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + type: Transform + - uid: 742 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 1 + type: Transform +- proto: ComputerCloningConsole + entities: + - uid: 743 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform +- proto: ComputerComms + entities: + - uid: 744 + components: + - pos: 11.5,17.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 745 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 1 + type: Transform +- proto: ComputerId + entities: + - uid: 746 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 + type: Transform +- proto: ComputerRadar + entities: + - uid: 747 + components: + - pos: 12.5,17.5 + parent: 1 + type: Transform +- proto: CrateChemistrySecure + entities: + - uid: 122 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 132 + - 133 + - 134 + - 135 + - 136 + - 129 + - 137 + - 138 + - 139 + - 140 + - 123 + - 124 + - 125 + - 141 + - 126 + - 127 + - 128 + - 130 + - 131 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEngineeringAMEControl + entities: + - uid: 748 + components: + - pos: -7.5,16.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 755 + components: + - pos: -11.5,15.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEShielding + entities: + - uid: 749 + components: + - pos: -7.5,17.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: -8.5,17.5 + parent: 1 + type: Transform +- proto: CrateEngineeringCableBulk + entities: + - uid: 751 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform +- proto: CrateEngineeringGenerator + entities: + - uid: 752 + components: + - pos: -8.5,16.5 + parent: 1 + type: Transform +- proto: CrateEngineeringShuttle + entities: + - uid: 753 + components: + - pos: -7.5,15.5 + parent: 1 + type: Transform +- proto: CrateMedicalSecure + entities: + - uid: 184 + components: + - pos: -10.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: + - 210 + - 187 + - 209 + - 185 + - 206 + - 186 + - 207 + - 216 + - 217 + - 218 + - 208 + - 188 + - 196 + - 189 + - 197 + - 198 + - 199 + - 201 + - 202 + - 203 + - 204 + - 200 + - 205 + - 191 + - 211 + - 212 + - 213 + - 214 + - 190 + - 192 + - 193 + - 194 + - 195 + - 215 + - 219 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: Crematorium + entities: + - uid: 59 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.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 +- proto: CrewMonitoringServer + entities: + - uid: 757 + components: + - pos: 17.5,16.5 + parent: 1 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 758 + components: + - pos: -22.5,3.5 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 759 + components: + - rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 761 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 762 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 763 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 764 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 765 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 766 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 2500 + components: + - pos: -21.5,6.5 + parent: 1 + type: Transform +- proto: DisposalJunction + entities: + - uid: 767 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 768 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 769 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 770 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 771 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 772 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 774 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 775 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 776 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 777 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 778 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 779 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 780 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 781 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 782 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 783 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 784 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 785 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 786 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 787 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 788 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 789 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 790 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 791 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 1 + type: Transform + - uid: 792 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 793 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 794 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,9.5 + parent: 1 + type: Transform + - uid: 795 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,9.5 + parent: 1 + type: Transform + - uid: 796 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1 + type: Transform + - uid: 797 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 798 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,9.5 + parent: 1 + type: Transform + - uid: 799 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,9.5 + parent: 1 + type: Transform + - uid: 800 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,9.5 + parent: 1 + type: Transform + - uid: 801 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 802 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 803 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 804 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 805 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 806 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 807 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 808 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 809 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 810 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 811 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 812 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 813 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 814 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 815 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 816 + components: + - rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 817 + components: + - rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 818 + components: + - rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 819 + components: + - rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 820 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 2503 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 2517 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 821 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 822 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 823 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 1 + type: Transform + - uid: 824 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 2438 + components: + - rot: 3.141592653589793 rad + pos: -21.5,5.5 + parent: 1 + type: Transform + - uid: 2506 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 825 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 826 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 2508 + components: + - pos: -21.5,5.5 + parent: 1 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 828 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + type: Transform +- proto: DrinkBeerBottleFull + entities: + - uid: 829 + components: + - pos: 0.24880648,-0.2702334 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: 0.5300565,0.011016607 + parent: 1 + type: Transform +- proto: Dropper + entities: + - uid: 132 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 133 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 134 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 135 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 136 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: EmergencyHampter + entities: + - uid: 714 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 831 + components: + - desc: Какой-то мужик. + name: ua_No_Name48237 + type: MetaData + - pos: -19.549643,7.33531 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 832 + components: + - pos: -16.5,5.5 + parent: 1 + type: Transform + - uid: 833 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 834 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 835 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 838 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 839 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 841 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 842 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 845 + components: + - rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 848 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 849 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 850 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 851 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 854 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 855 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,22.5 + parent: 1 + type: Transform + - uid: 856 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 858 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 859 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 860 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 866 + components: + - rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 867 + components: + - rot: 3.141592653589793 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: 16.5,17.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: 14.5,12.5 + parent: 1 + type: Transform + - uid: 871 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,17.5 + parent: 1 + type: Transform + - uid: 872 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 1 + type: Transform + - uid: 873 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 1 + type: Transform + - uid: 874 + components: + - rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 875 + components: + - rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 876 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 877 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,17.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 880 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,15.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 884 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: -13.5,9.5 + parent: 1 + type: Transform + - uid: 886 + components: + - rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 887 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 1 + type: Transform + - uid: 888 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 889 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 890 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,7.5 + parent: 1 + type: Transform + - uid: 891 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + type: Transform +- proto: FaxMachineCentcom + entities: + - uid: 892 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 893 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 913 + - 914 + - 912 + - 901 + - 911 + - 902 + type: DeviceNetwork + - devices: + - 913 + - 914 + - 912 + - 901 + - 911 + - 902 + type: DeviceList + - uid: 894 + components: + - rot: 3.141592653589793 rad + pos: -14.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 913 + - 915 + - 916 + - 917 + - 918 + type: DeviceNetwork + - devices: + - 913 + - 915 + - 916 + - 917 + - 918 + type: DeviceList + - uid: 895 + components: + - pos: -21.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 917 + - 903 + type: DeviceNetwork + - devices: + - 917 + - 903 + type: DeviceList + - uid: 896 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 937 + - 935 + type: DeviceNetwork + - devices: + - 905 + - 906 + - 925 + - 921 + - 920 + - 919 + - 922 + - 923 + - 924 + - 935 + - 937 + type: DeviceList + - uid: 897 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 905 + - 906 + - 925 + type: DeviceNetwork + - devices: + - 905 + - 906 + - 925 + type: DeviceList + - uid: 898 + components: + - pos: 3.5,16.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 926 + - 927 + - 928 + - 929 + - 907 + type: DeviceNetwork + - devices: + - 926 + - 927 + - 928 + - 929 + - 907 + type: DeviceList + - uid: 899 + components: + - rot: 3.141592653589793 rad + pos: -8.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 930 + - 933 + - 934 + - 931 + - 932 + - 908 + type: DeviceNetwork + - devices: + - 930 + - 933 + - 934 + - 931 + - 932 + - 908 + type: DeviceList + - uid: 900 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 930 + - 933 + - 934 + - 931 + - 932 + - 908 + type: DeviceNetwork + - devices: + - 930 + - 933 + - 934 + - 931 + - 932 + - 908 + type: DeviceList +- proto: FirelockEdge + entities: + - uid: 901 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 893 + - 15 + type: DeviceNetwork + - uid: 902 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 893 + - 15 + type: DeviceNetwork + - uid: 903 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 895 + - 16 + type: DeviceNetwork + - uid: 904 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 897 + type: DeviceNetwork + - uid: 906 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 897 + type: DeviceNetwork + - uid: 907 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 898 + type: DeviceNetwork + - uid: 908 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 899 + - 18 + - 900 + - 20 + type: DeviceNetwork + - uid: 909 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 910 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 911 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 893 + - 15 + type: DeviceNetwork + - uid: 912 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 893 + - 15 + type: DeviceNetwork + - uid: 913 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 894 + - 893 + - 15 + type: DeviceNetwork + - uid: 914 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 893 + - 15 + type: DeviceNetwork + - uid: 915 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 894 + type: DeviceNetwork + - uid: 916 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 894 + type: DeviceNetwork + - uid: 917 + components: + - pos: -18.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 16 + - 894 + - 895 + type: DeviceNetwork + - uid: 918 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 894 + type: DeviceNetwork + - uid: 919 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 920 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 921 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 922 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 923 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 924 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 925 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 897 + type: DeviceNetwork + - uid: 926 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 898 + type: DeviceNetwork + - uid: 927 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 898 + type: DeviceNetwork + - uid: 928 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 898 + type: DeviceNetwork + - uid: 929 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 898 + type: DeviceNetwork + - uid: 930 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 899 + - 18 + - 900 + - 20 + type: DeviceNetwork + - uid: 931 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 899 + - 18 + - 900 + - 20 + type: DeviceNetwork + - uid: 932 + components: + - pos: -14.5,9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 899 + - 18 + - 900 + - 20 + type: DeviceNetwork + - uid: 933 + components: + - pos: -9.5,14.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 899 + - 18 + - 900 + - 20 + type: DeviceNetwork + - uid: 934 + components: + - pos: -10.5,14.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 899 + - 18 + - 900 + - 20 + type: DeviceNetwork + - uid: 935 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 896 + - 19 + type: DeviceNetwork + - uid: 936 + components: + - rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 937 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 896 + - 19 + type: DeviceNetwork +- proto: FlashlightSeclite + entities: + - uid: 11 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 628 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 657 + components: + - flags: InContainer + type: MetaData + - parent: 649 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 667 + components: + - flags: InContainer + type: MetaData + - parent: 659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 672 + components: + - flags: InContainer + type: MetaData + - parent: 669 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 682 + components: + - flags: InContainer + type: MetaData + - parent: 678 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 690 + components: + - flags: InContainer + type: MetaData + - parent: 687 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 700 + components: + - flags: InContainer + type: MetaData + - parent: 696 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 715 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2456 + components: + - flags: InContainer + type: MetaData + - parent: 2450 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2465 + components: + - flags: InContainer + type: MetaData + - parent: 2460 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2474 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2486 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FloorDrain + entities: + - uid: 938 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 939 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 940 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 2427 + components: + - rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: GasMinerNitrogenStation + entities: + - uid: 941 + components: + - rot: 3.141592653589793 rad + pos: -17.5,13.5 + parent: 1 + type: Transform +- proto: GasMinerOxygenStation + entities: + - uid: 942 + components: + - rot: 3.141592653589793 rad + pos: -15.5,13.5 + parent: 1 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 943 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 1 + type: Transform + - inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + type: GasMixer + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 944 + components: + - pos: -17.5,12.5 + parent: 1 + type: Transform + - uid: 945 + components: + - pos: -15.5,12.5 + parent: 1 + type: Transform + - uid: 946 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,8.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 947 + components: + - rot: 3.141592653589793 rad + pos: -17.5,9.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 948 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 949 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 950 + components: + - rot: 3.141592653589793 rad + pos: -5.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 951 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 952 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 953 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 954 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 955 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 956 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 957 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 958 + components: + - pos: 17.5,17.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 959 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 960 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 961 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 962 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 963 + components: + - pos: -13.5,8.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 964 + components: + - rot: 3.141592653589793 rad + pos: -13.5,7.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 965 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 966 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 967 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 968 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 969 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 970 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 971 + components: + - pos: 8.5,33.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 972 + components: + - pos: -7.5,15.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 973 + components: + - rot: 3.141592653589793 rad + pos: -9.5,15.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 974 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 975 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 976 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 977 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 978 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 979 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 980 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 981 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 982 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 983 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 984 + components: + - pos: 3.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 985 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 986 + components: + - pos: -13.5,-0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 987 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,9.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 988 + components: + - rot: 3.141592653589793 rad + pos: 6.5,28.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 989 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 990 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 991 + components: + - rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 992 + components: + - rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 993 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 994 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 995 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 996 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 997 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 998 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 999 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1000 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1001 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1002 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1003 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1004 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1005 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1006 + components: + - rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1007 + components: + - rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1008 + components: + - pos: 6.5,24.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1009 + components: + - rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1010 + components: + - rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1011 + components: + - rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1012 + components: + - rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1013 + components: + - rot: 3.141592653589793 rad + pos: 6.5,23.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1014 + components: + - rot: 3.141592653589793 rad + pos: 6.5,25.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1015 + components: + - rot: 3.141592653589793 rad + pos: 6.5,27.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1016 + components: + - rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1017 + components: + - rot: 3.141592653589793 rad + pos: 6.5,30.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1018 + components: + - rot: 3.141592653589793 rad + pos: 6.5,31.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1019 + components: + - rot: 3.141592653589793 rad + pos: 6.5,32.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1020 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1021 + components: + - rot: 3.141592653589793 rad + pos: 6.5,33.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1022 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1023 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1024 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1025 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1026 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1027 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1028 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1029 + components: + - rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1030 + components: + - rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1031 + components: + - rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1032 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1033 + components: + - rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1034 + components: + - rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1035 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1036 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1037 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1038 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1039 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1040 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1041 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1042 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1043 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1044 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1045 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1046 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1047 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1048 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1049 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1050 + components: + - rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1051 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1052 + components: + - rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1053 + components: + - rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1054 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1055 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1056 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1057 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1058 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1059 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1060 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1061 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1062 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1063 + components: + - rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1064 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1065 + components: + - pos: -17.5,0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1066 + components: + - pos: -17.5,3.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1067 + components: + - rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1068 + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1069 + components: + - pos: -17.5,4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1070 + components: + - pos: -17.5,2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1071 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1072 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1073 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1074 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1075 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1076 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1077 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1078 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1079 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1080 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1081 + components: + - rot: 3.141592653589793 rad + pos: 17.5,16.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1082 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1083 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1084 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1085 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1086 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1087 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1088 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1089 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1090 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1091 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1092 + components: + - pos: -22.5,4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1093 + components: + - pos: -22.5,3.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1094 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1095 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1096 + components: + - rot: 3.141592653589793 rad + pos: -22.5,0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1097 + components: + - rot: 3.141592653589793 rad + pos: -13.5,4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1098 + components: + - rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1099 + components: + - rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1100 + components: + - rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1101 + components: + - rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1102 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1103 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1104 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1105 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1106 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1107 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1108 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 1109 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,8.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1110 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,8.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1111 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,8.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1112 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,7.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1113 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1114 + components: + - rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1115 + components: + - rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1116 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1117 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1118 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1119 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1120 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1121 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1122 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1123 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1124 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1125 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1126 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1127 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1128 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1129 + components: + - rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1130 + components: + - rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1131 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1132 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1133 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1134 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1135 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1136 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1137 + components: + - rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1138 + components: + - rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1139 + components: + - rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1140 + components: + - rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1141 + components: + - rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1142 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1143 + components: + - rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1144 + components: + - rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1145 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1146 + components: + - rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1147 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1148 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1149 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1150 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1151 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1152 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1153 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1154 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1155 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1156 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1157 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1158 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1159 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1160 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1161 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1162 + components: + - pos: -12.5,2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1163 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1164 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1165 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 1166 + components: + - pos: -16.5,0.5 + parent: 1 + type: Transform + - uid: 1167 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1168 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1169 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1170 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1171 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1172 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1173 + components: + - rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1174 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1175 + components: + - rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1176 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1177 + components: + - rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1178 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1179 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1180 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1181 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1182 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1183 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1184 + components: + - rot: 3.141592653589793 rad + pos: 12.5,15.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1185 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1186 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1187 + components: + - rot: 3.141592653589793 rad + pos: 16.5,15.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1188 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1189 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1190 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1191 + components: + - pos: 8.5,32.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1192 + components: + - pos: 8.5,31.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1193 + components: + - pos: 8.5,30.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1194 + components: + - pos: 8.5,29.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1195 + components: + - pos: 8.5,28.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1196 + components: + - pos: 8.5,26.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1197 + components: + - pos: 8.5,25.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1198 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1199 + components: + - pos: 8.5,23.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1200 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1201 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1202 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1203 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1204 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1205 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1206 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1207 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1208 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1209 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1210 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1211 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1212 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1213 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1214 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1215 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1216 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1217 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1218 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1219 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1220 + components: + - rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1221 + components: + - rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1222 + components: + - rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1223 + components: + - rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1224 + components: + - rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1225 + components: + - rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1226 + components: + - rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1227 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,15.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1228 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1229 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1230 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1231 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1232 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1233 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1234 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1235 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1236 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1237 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1238 + components: + - rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1239 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1240 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1241 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1242 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1243 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1244 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1245 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1246 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1247 + components: + - pos: -13.5,-1.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1248 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1249 + components: + - pos: -13.5,-3.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1250 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1251 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1252 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1253 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1254 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1255 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1256 + components: + - pos: -12.5,-1.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1257 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1258 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1259 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1260 + components: + - pos: -15.5,11.5 + parent: 1 + type: Transform + - uid: 1261 + components: + - pos: -17.5,11.5 + parent: 1 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 1262 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1263 + components: + - pos: -12.5,9.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1264 + components: + - rot: 3.141592653589793 rad + pos: -10.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1265 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1266 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1267 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1268 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1269 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1270 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1271 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1272 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,18.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1273 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1274 + components: + - rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1275 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1276 + components: + - rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1277 + components: + - rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1278 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1279 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1280 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1281 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1282 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1283 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1284 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1285 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1286 + components: + - rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1287 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1288 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1289 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1290 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1291 + components: + - pos: -15.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1292 + components: + - pos: -17.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1293 + components: + - pos: -21.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1294 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1295 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1296 + components: + - rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1297 + components: + - rot: 3.141592653589793 rad + pos: -8.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1298 + components: + - rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1299 + components: + - rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1300 + components: + - rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1301 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1302 + components: + - rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1303 + components: + - rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1304 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1305 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1306 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1307 + components: + - rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1308 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1309 + components: + - rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1310 + components: + - rot: 3.141592653589793 rad + pos: -11.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1311 + components: + - pos: -12.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1312 + components: + - rot: 3.141592653589793 rad + pos: -14.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1313 + components: + - pos: -16.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1314 + components: + - rot: 3.141592653589793 rad + pos: -20.5,3.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1315 + components: + - rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1316 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1317 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,27.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1318 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1319 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1320 + components: + - rot: 3.141592653589793 rad + pos: -18.5,13.5 + parent: 1 + type: Transform + - uid: 1321 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1322 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1323 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 1324 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 1325 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - uid: 1326 + components: + - pos: -17.5,10.5 + parent: 1 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1327 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,8.5 + parent: 1 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 1328 + components: + - rot: 3.141592653589793 rad + pos: -12.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1329 + components: + - rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1330 + components: + - rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1331 + components: + - rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1332 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1333 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,17.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1334 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1335 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1336 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1337 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1338 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1339 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,34.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1340 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1341 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,26.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1342 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1343 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1344 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1345 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1346 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1347 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1348 + components: + - pos: 11.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1349 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1350 + components: + - rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1351 + components: + - rot: 3.141592653589793 rad + pos: -21.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1352 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1353 + components: + - rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1354 + components: + - rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1355 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1356 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1357 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1358 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1359 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1360 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1361 + components: + - pos: -10.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1362 + components: + - rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1363 + components: + - rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1364 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1365 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 1366 + components: + - pos: -11.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1367 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1368 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1369 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1370 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1371 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1372 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1373 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1374 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1375 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1376 + components: + - rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1377 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1378 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1379 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1380 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1381 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1382 + components: + - pos: -20.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1383 + components: + - rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1384 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1385 + components: + - pos: 12.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1386 + components: + - pos: 16.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1387 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1388 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1389 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1390 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1391 + components: + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1392 + components: + - rot: 3.141592653589793 rad + pos: -0.5,15.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1393 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1394 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1395 + components: + - pos: 3.5,23.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1396 + components: + - pos: -9.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1397 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1398 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1399 + components: + - rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1400 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1401 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1402 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF0000FF' + type: AtmosPipeColor +- proto: PortableGeneratorSuperPacman + entities: + - uid: 1403 + components: + - pos: -11.5,13.5 + parent: 1 + type: Transform + - uid: 1404 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 1405 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 1406 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 1407 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 1410 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 1411 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,33.5 + parent: 1 + type: Transform + - uid: 1412 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + type: Transform + - uid: 1413 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 1 + type: Transform + - uid: 1414 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 1 + type: Transform + - uid: 1415 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,27.5 + parent: 1 + type: Transform + - uid: 1416 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,26.5 + parent: 1 + type: Transform + - uid: 1417 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 1419 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 1420 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 1421 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 1 + type: Transform + - uid: 1422 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,35.5 + parent: 1 + type: Transform + - uid: 1423 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 1424 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 1425 + components: + - rot: 3.141592653589793 rad + pos: 11.5,18.5 + parent: 1 + type: Transform + - uid: 1426 + components: + - rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 1427 + components: + - rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 1428 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 1 + type: Transform + - uid: 1429 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 1430 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 1 + type: Transform + - uid: 1431 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 1 + type: Transform + - uid: 1432 + components: + - rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 1 + type: Transform + - uid: 1433 + components: + - rot: 3.141592653589793 rad + pos: 12.5,18.5 + parent: 1 + type: Transform + - uid: 1434 + components: + - rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 1 + type: Transform + - uid: 1435 + components: + - pos: 18.5,13.5 + parent: 1 + type: Transform + - uid: 1436 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - uid: 1437 + components: + - pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 1438 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - uid: 1439 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 1440 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 1441 + components: + - pos: 18.5,12.5 + parent: 1 + type: Transform + - uid: 1442 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 1443 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 1444 + components: + - rot: 3.141592653589793 rad + pos: 3.5,34.5 + parent: 1 + type: Transform + - uid: 1445 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 1446 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 1447 + components: + - rot: 3.141592653589793 rad + pos: 2.5,34.5 + parent: 1 + type: Transform + - uid: 1448 + components: + - rot: 3.141592653589793 rad + pos: 1.5,34.5 + parent: 1 + type: Transform + - uid: 1449 + components: + - rot: 3.141592653589793 rad + pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 1450 + components: + - rot: 3.141592653589793 rad + pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 1451 + components: + - rot: 3.141592653589793 rad + pos: 1.5,31.5 + parent: 1 + type: Transform + - uid: 1452 + components: + - rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 1453 + components: + - rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 1 + type: Transform + - uid: 1454 + components: + - rot: 3.141592653589793 rad + pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 1455 + components: + - rot: 3.141592653589793 rad + pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 1457 + components: + - pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 1458 + components: + - rot: 3.141592653589793 rad + pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 1459 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 1460 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - uid: 1464 + components: + - rot: 3.141592653589793 rad + pos: -7.5,23.5 + parent: 1 + type: Transform + - uid: 1465 + components: + - rot: 3.141592653589793 rad + pos: -12.5,23.5 + parent: 1 + type: Transform + - uid: 1466 + components: + - rot: 3.141592653589793 rad + pos: -13.5,23.5 + parent: 1 + type: Transform + - uid: 1467 + components: + - rot: 3.141592653589793 rad + pos: -11.5,23.5 + parent: 1 + type: Transform + - uid: 1468 + components: + - rot: 3.141592653589793 rad + pos: -8.5,23.5 + parent: 1 + type: Transform + - uid: 1469 + components: + - rot: 3.141592653589793 rad + pos: -9.5,23.5 + parent: 1 + type: Transform + - uid: 1470 + components: + - pos: -6.5,26.5 + parent: 1 + type: Transform + - uid: 1471 + components: + - rot: 3.141592653589793 rad + pos: -23.5,15.5 + parent: 1 + type: Transform + - uid: 1472 + components: + - rot: 3.141592653589793 rad + pos: -16.5,22.5 + parent: 1 + type: Transform + - uid: 1473 + components: + - rot: 3.141592653589793 rad + pos: -17.5,20.5 + parent: 1 + type: Transform + - uid: 1474 + components: + - rot: 3.141592653589793 rad + pos: -18.5,20.5 + parent: 1 + type: Transform + - uid: 1475 + components: + - rot: 3.141592653589793 rad + pos: -20.5,20.5 + parent: 1 + type: Transform + - uid: 1476 + components: + - rot: 3.141592653589793 rad + pos: -20.5,19.5 + parent: 1 + type: Transform + - uid: 1477 + components: + - rot: 3.141592653589793 rad + pos: -20.5,18.5 + parent: 1 + type: Transform + - uid: 1478 + components: + - rot: 3.141592653589793 rad + pos: -21.5,17.5 + parent: 1 + type: Transform + - uid: 1479 + components: + - rot: 3.141592653589793 rad + pos: -24.5,14.5 + parent: 1 + type: Transform + - uid: 1480 + components: + - rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 1 + type: Transform + - uid: 1481 + components: + - rot: 3.141592653589793 rad + pos: -23.5,16.5 + parent: 1 + type: Transform + - uid: 1482 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 1483 + components: + - rot: 3.141592653589793 rad + pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 1484 + components: + - rot: 3.141592653589793 rad + pos: -26.5,9.5 + parent: 1 + type: Transform + - uid: 1485 + components: + - rot: 3.141592653589793 rad + pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 1486 + components: + - rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 1487 + components: + - rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 1 + type: Transform + - uid: 1488 + components: + - rot: 3.141592653589793 rad + pos: -27.5,3.5 + parent: 1 + type: Transform + - uid: 1489 + components: + - rot: 3.141592653589793 rad + pos: -27.5,5.5 + parent: 1 + type: Transform + - uid: 1490 + components: + - rot: 3.141592653589793 rad + pos: -27.5,0.5 + parent: 1 + type: Transform + - uid: 1491 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-0.5 + parent: 1 + type: Transform + - uid: 1492 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-0.5 + parent: 1 + type: Transform + - uid: 1493 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-1.5 + parent: 1 + type: Transform + - uid: 1494 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-3.5 + parent: 1 + type: Transform + - uid: 1495 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-3.5 + parent: 1 + type: Transform + - uid: 1496 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 1497 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-5.5 + parent: 1 + type: Transform + - uid: 1498 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-5.5 + parent: 1 + type: Transform + - uid: 1499 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-5.5 + parent: 1 + type: Transform + - uid: 1500 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-7.5 + parent: 1 + type: Transform + - uid: 1501 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-9.5 + parent: 1 + type: Transform + - uid: 1502 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-9.5 + parent: 1 + type: Transform + - uid: 1503 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-9.5 + parent: 1 + type: Transform + - uid: 1504 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 1505 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-9.5 + parent: 1 + type: Transform + - uid: 1506 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 1 + type: Transform + - uid: 1507 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-6.5 + parent: 1 + type: Transform + - uid: 1508 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 1 + type: Transform + - uid: 1509 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 1510 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 1511 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 1512 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 1513 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 1514 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 1515 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 1516 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 1517 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 1518 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 1519 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 1520 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 1521 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 1522 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 1523 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 1524 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 1525 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 1526 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 1527 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-3.5 + parent: 1 + type: Transform + - uid: 1528 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 1529 + components: + - rot: 3.141592653589793 rad + pos: 20.5,6.5 + parent: 1 + type: Transform + - uid: 1530 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 1 + type: Transform + - uid: 1531 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 1532 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 1 + type: Transform + - uid: 1533 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-0.5 + parent: 1 + type: Transform + - uid: 1534 + components: + - rot: 3.141592653589793 rad + pos: 18.5,1.5 + parent: 1 + type: Transform + - uid: 1535 + components: + - rot: 3.141592653589793 rad + pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 1536 + components: + - rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 1 + type: Transform + - uid: 1537 + components: + - rot: 3.141592653589793 rad + pos: 20.5,7.5 + parent: 1 + type: Transform + - uid: 1538 + components: + - rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 1 + type: Transform + - uid: 1539 + components: + - rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 1 + type: Transform + - uid: 1540 + components: + - rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 1 + type: Transform + - uid: 1541 + components: + - rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 1 + type: Transform + - uid: 1542 + components: + - rot: 3.141592653589793 rad + pos: 23.5,9.5 + parent: 1 + type: Transform + - uid: 1543 + components: + - rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 1 + type: Transform + - uid: 1544 + components: + - rot: 3.141592653589793 rad + pos: 23.5,12.5 + parent: 1 + type: Transform + - uid: 1545 + components: + - rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 1 + type: Transform + - uid: 1546 + components: + - rot: 3.141592653589793 rad + pos: 23.5,15.5 + parent: 1 + type: Transform + - uid: 1547 + components: + - rot: 3.141592653589793 rad + pos: 23.5,18.5 + parent: 1 + type: Transform + - uid: 1548 + components: + - rot: 3.141592653589793 rad + pos: 21.5,18.5 + parent: 1 + type: Transform + - uid: 1549 + components: + - rot: 3.141592653589793 rad + pos: 20.5,18.5 + parent: 1 + type: Transform + - uid: 1550 + components: + - rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 1 + type: Transform + - uid: 1731 + components: + - pos: -6.5,24.5 + parent: 1 + type: Transform + - uid: 2321 + components: + - pos: -1.5,28.5 + parent: 1 + type: Transform + - uid: 2390 + components: + - pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 2391 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 2509 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1 + type: Transform + - uid: 2510 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 1 + type: Transform +- proto: GrilleBroken + entities: + - uid: 1456 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,23.5 + parent: 1 + type: Transform + - uid: 1551 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 1552 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 1553 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 1554 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 1555 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 1556 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 1 + type: Transform + - uid: 1557 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 1558 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,23.5 + parent: 1 + type: Transform + - uid: 1559 + components: + - pos: -27.5,-2.5 + parent: 1 + type: Transform + - uid: 1560 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + type: Transform + - uid: 1561 + components: + - rot: 3.141592653589793 rad + pos: -27.5,2.5 + parent: 1 + type: Transform + - uid: 1562 + components: + - rot: 3.141592653589793 rad + pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 1563 + components: + - pos: -25.5,11.5 + parent: 1 + type: Transform + - uid: 1564 + components: + - pos: -22.5,17.5 + parent: 1 + type: Transform + - uid: 1565 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,23.5 + parent: 1 + type: Transform + - uid: 1566 + components: + - pos: 1.5,33.5 + parent: 1 + type: Transform + - uid: 1568 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,34.5 + parent: 1 + type: Transform + - uid: 1569 + components: + - pos: 4.5,34.5 + parent: 1 + type: Transform + - uid: 1570 + components: + - rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 1 + type: Transform + - uid: 1571 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 1 + type: Transform + - uid: 1572 + components: + - rot: 3.141592653589793 rad + pos: 22.5,8.5 + parent: 1 + type: Transform + - uid: 1573 + components: + - pos: 20.5,5.5 + parent: 1 + type: Transform + - uid: 1574 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 1 + type: Transform + - uid: 1575 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 2387 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,25.5 + parent: 1 + type: Transform +- proto: HampterKrah + entities: + - uid: 1576 + components: + - pos: 2.4216707,-3.5797577 + parent: 1 + type: Transform +- proto: HampterMed + entities: + - uid: 1577 + components: + - pos: -3.5873346,5.6309385 + parent: 1 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 142 + components: + - pos: 11.235489,10.511342 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: 11.235489,10.511342 + parent: 1 + type: Transform + - uid: 1598 + components: + - pos: 11.235489,10.511342 + parent: 1 + type: Transform + - uid: 1599 + components: + - pos: 11.235489,10.511342 + parent: 1 + type: Transform + - uid: 1600 + components: + - pos: 11.235489,10.511342 + parent: 1 + type: Transform + - uid: 1601 + components: + - pos: 11.235489,10.511342 + parent: 1 + type: Transform + - uid: 2440 + components: + - pos: 11.235489,10.511342 + parent: 1 + type: Transform + - uid: 2516 + components: + - pos: 11.235489,10.511342 + parent: 1 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 1584 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 1585 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 1586 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform +- proto: HolofanProjector + entities: + - uid: 1587 + components: + - pos: -13.541195,8.28056 + parent: 1 + type: Transform + - uid: 1588 + components: + - pos: -16.637148,7.8123646 + parent: 1 + type: Transform + - uid: 1589 + components: + - pos: -16.637148,7.6717396 + parent: 1 + type: Transform +- proto: Holoprojector + entities: + - uid: 1590 + components: + - rot: -1.5707963267948966 rad + pos: 11.913149,4.676386 + parent: 1 + type: Transform +- proto: HospitalCurtains + entities: + - uid: 1591 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 1592 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform +- proto: Hypospray + entities: + - uid: 211 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 212 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 213 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 214 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 215 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 658 + components: + - flags: InContainer + type: MetaData + - parent: 649 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 668 + components: + - flags: InContainer + type: MetaData + - parent: 659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2457 + components: + - flags: InContainer + type: MetaData + - parent: 2450 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2466 + components: + - flags: InContainer + type: MetaData + - parent: 2460 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: IntercomEngineering + entities: + - uid: 1593 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform +- proto: IntercomMedical + entities: + - uid: 1594 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 1595 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + type: Transform +- proto: JetpackBlackFilled + entities: + - uid: 2441 + components: + - pos: 11.641739,10.730092 + parent: 1 + type: Transform + - uid: 2442 + components: + - pos: 11.641739,10.730092 + parent: 1 + type: Transform + - uid: 2443 + components: + - pos: 11.641739,10.730092 + parent: 1 + type: Transform + - uid: 2444 + components: + - pos: 11.641739,10.730092 + parent: 1 + type: Transform + - uid: 2445 + components: + - pos: 11.641739,10.730092 + parent: 1 + type: Transform + - uid: 2446 + components: + - pos: 11.641739,10.730092 + parent: 1 + type: Transform + - uid: 2447 + components: + - pos: 11.641739,10.730092 + parent: 1 + type: Transform + - uid: 2448 + components: + - pos: 11.641739,10.730092 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 1602 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 1603 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 1604 + components: + - pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 1605 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform +- proto: Lamp + entities: + - uid: 1606 + components: + - rot: 1.5707963267948966 rad + pos: -13.515244,-3.9131765 + parent: 1 + type: Transform +- proto: Lighter + entities: + - uid: 1607 + components: + - pos: 12.103443,14.525698 + parent: 1 + type: Transform +- proto: LockerAtmosphericsFilled + entities: + - uid: 1608 + components: + - pos: -17.5,7.5 + parent: 1 + type: Transform +- proto: LockerCaptain + entities: + - uid: 705 + components: + - pos: 17.5,13.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: + - 720 + - 714 + - 711 + - 710 + - 707 + - 715 + - 708 + - 718 + - 706 + - 719 + - 709 + - 717 + - 712 + - 716 + - 713 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 1609 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform +- proto: LockerEngineer + entities: + - uid: 626 + components: + - pos: 0.5,18.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: + - 634 + - 633 + - 635 + - 629 + - 636 + - 631 + - 627 + - 632 + - 630 + - 628 + - 637 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 638 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 645 + - 639 + - 644 + - 646 + - 647 + - 640 + - 648 + - 641 + - 643 + - 642 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 2470 + components: + - pos: -1.5,21.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: + - 2474 + - 2473 + - 2472 + - 2471 + - 2475 + - 2476 + - 2477 + - 2478 + - 2479 + - 2480 + - 2481 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 2482 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2486 + - 2485 + - 2484 + - 2483 + - 2487 + - 2488 + - 2489 + - 2490 + - 2491 + - 2492 + - 2493 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerMedical + entities: + - uid: 649 + components: + - pos: 0.5,20.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: + - 654 + - 658 + - 650 + - 656 + - 653 + - 657 + - 655 + - 652 + - 651 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 659 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 661 + - 667 + - 665 + - 664 + - 662 + - 663 + - 666 + - 660 + - 668 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 2450 + components: + - pos: 0.5,21.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: + - 2459 + - 2458 + - 2457 + - 2456 + - 2455 + - 2454 + - 2451 + - 2452 + - 2453 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 2460 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2463 + - 2462 + - 2461 + - 2464 + - 2465 + - 2466 + - 2467 + - 2468 + - 2469 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerMedicine + entities: + - uid: 1610 + components: + - pos: -12.5,1.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: + - 1617 + - 1618 + - 1611 + - 1619 + - 1612 + - 1613 + - 1614 + - 1615 + - 1616 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 1620 + components: + - pos: -11.5,1.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: + - 1621 + - 1622 + - 1627 + - 1628 + - 1629 + - 1623 + - 1624 + - 1625 + - 1626 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSecurity + entities: + - uid: 669 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + 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: + - 670 + - 671 + - 672 + - 673 + - 674 + - 675 + - 676 + - 677 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 678 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + 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: + - 679 + - 680 + - 681 + - 682 + - 683 + - 684 + - 685 + - 686 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 687 + components: + - pos: -1.5,20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + 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: + - 688 + - 689 + - 690 + - 691 + - 692 + - 693 + - 694 + - 695 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 696 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + 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: + - 697 + - 698 + - 699 + - 700 + - 701 + - 702 + - 703 + - 704 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerWallMedicalFilled + entities: + - uid: 1630 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 1631 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: MaterialBiomass + entities: + - uid: 1632 + components: + - rot: -1.5707963267948966 rad + pos: -8.566401,1.2871039 + parent: 1 + type: Transform + - uid: 1633 + components: + - rot: -1.5707963267948966 rad + pos: -8.566401,1.2871039 + parent: 1 + type: Transform + - uid: 1634 + components: + - rot: -1.5707963267948966 rad + pos: -8.566401,1.2871039 + parent: 1 + type: Transform + - uid: 1635 + components: + - rot: -1.5707963267948966 rad + pos: -8.566401,1.2871039 + parent: 1 + type: Transform +- proto: MaterialCloth1 + entities: + - uid: 1636 + components: + - desc: Для вытирания своего тела, да + name: полотенце + type: MetaData + - pos: 3.4162674,24.561844 + parent: 1 + type: Transform +- proto: MedicalBed + entities: + - uid: 1637 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 1638 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 1639 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform +- proto: MedicalScanner + entities: + - uid: 1640 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 1621 + components: + - flags: InContainer + type: MetaData + - parent: 1620 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1622 + components: + - flags: InContainer + type: MetaData + - parent: 1620 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1623 + components: + - flags: InContainer + type: MetaData + - parent: 1620 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MedkitBurnFilled + entities: + - uid: 1611 + components: + - flags: InContainer + type: MetaData + - parent: 1610 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1612 + components: + - flags: InContainer + type: MetaData + - parent: 1610 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1613 + components: + - flags: InContainer + type: MetaData + - parent: 1610 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MedkitCombatFilled + entities: + - uid: 1614 + components: + - flags: InContainer + type: MetaData + - parent: 1610 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1615 + components: + - flags: InContainer + type: MetaData + - parent: 1610 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1616 + components: + - flags: InContainer + type: MetaData + - parent: 1610 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MedkitOxygenFilled + entities: + - uid: 1624 + components: + - flags: InContainer + type: MetaData + - parent: 1620 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1625 + components: + - flags: InContainer + type: MetaData + - parent: 1620 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1626 + components: + - flags: InContainer + type: MetaData + - parent: 1620 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MedkitRadiationFilled + entities: + - uid: 1617 + components: + - flags: InContainer + type: MetaData + - parent: 1610 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1618 + components: + - flags: InContainer + type: MetaData + - parent: 1610 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1619 + components: + - flags: InContainer + type: MetaData + - parent: 1610 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MedkitToxinFilled + entities: + - uid: 1627 + components: + - flags: InContainer + type: MetaData + - parent: 1620 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1628 + components: + - flags: InContainer + type: MetaData + - parent: 1620 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1629 + components: + - flags: InContainer + type: MetaData + - parent: 1620 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Mirror + entities: + - uid: 1641 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,21.5 + parent: 1 + type: Transform + - uid: 1642 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 1643 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,19.5 + parent: 1 + type: Transform +- proto: MopBucket + entities: + - uid: 1644 + components: + - pos: 11.897524,3.7701359 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 1645 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 1646 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 1647 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 1648 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 1649 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 1650 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 1651 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 1652 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 1653 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 1654 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform +- proto: Multitool + entities: + - uid: 1655 + components: + - pos: -8.234255,1.2902579 + parent: 1 + type: Transform +- proto: NitrogenTankFilled + entities: + - uid: 12 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 716 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: NitrousOxideTankFilled + entities: + - uid: 1657 + components: + - pos: -15.231249,1.5843751 + parent: 1 + type: Transform +- proto: OperatingTable + entities: + - uid: 1658 + components: + - pos: -17.5,-0.5 + parent: 1 + type: Transform + - uid: 1659 + components: + - pos: -15.5,-0.5 + parent: 1 + type: Transform +- proto: OxygenCanister + entities: + - uid: 1660 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform +- proto: OxygenTankFilled + entities: + - uid: 717 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: PaperBin10 + entities: + - uid: 1661 + components: + - rot: 3.141592653589793 rad + pos: 13.351419,17.5873 + parent: 1 + type: Transform + - uid: 1662 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform +- proto: Pen + entities: + - uid: 1663 + components: + - rot: -1.5707963267948966 rad + pos: -12.952744,-4.4131765 + parent: 1 + type: Transform +- proto: PinpointerUniversal + entities: + - uid: 718 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: PortableScrubber + entities: + - uid: 1664 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 1665 + components: + - pos: 6.5,28.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 1666 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 1667 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 1668 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 1669 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 1671 + components: + - pos: 6.5,17.5 + parent: 1 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 1672 + components: + - pos: -17.5,5.5 + parent: 1 + type: Transform +- proto: PowerCellHyper + entities: + - uid: 1673 + components: + - pos: -13.68182,7.8899345 + parent: 1 + type: Transform + - uid: 1674 + components: + - pos: -13.384945,7.8899345 + parent: 1 + type: Transform + - uid: 1675 + components: + - pos: -16.730898,7.4061146 + parent: 1 + type: Transform + - uid: 1676 + components: + - pos: -16.590273,7.4061146 + parent: 1 + type: Transform + - uid: 1677 + components: + - pos: 12.288149,4.785761 + parent: 1 + type: Transform + - uid: 1678 + components: + - pos: 12.444399,4.785761 + parent: 1 + type: Transform + - uid: 2428 + components: + - pos: -13.384592,7.8890915 + parent: 1 + type: Transform + - uid: 2507 + components: + - pos: -13.384592,7.8890915 + parent: 1 + type: Transform + - uid: 2511 + components: + - pos: -13.681467,7.8890915 + parent: 1 + type: Transform + - uid: 2513 + components: + - pos: -13.665842,7.8890915 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 1679 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 1680 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 2424 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 56 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 57 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1681 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1682 + components: + - rot: 3.141592653589793 rad + pos: -19.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1683 + components: + - rot: 3.141592653589793 rad + pos: -22.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1684 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1685 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1686 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1687 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1688 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1689 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1690 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1691 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1692 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1693 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1694 + components: + - pos: -17.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1695 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1696 + components: + - rot: 3.141592653589793 rad + pos: -10.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1697 + components: + - rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1698 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1699 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1700 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1701 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1702 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1703 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1704 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1705 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1706 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1707 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1708 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,17.5 + parent: 1 + type: Transform + - uid: 1709 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1710 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1711 + components: + - rot: 3.141592653589793 rad + pos: -12.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1712 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1713 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1714 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1715 + components: + - rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1716 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1717 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1718 + components: + - pos: -15.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1719 + components: + - pos: -17.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1720 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1721 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1722 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1723 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1724 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1725 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1726 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1727 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1728 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1729 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1730 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1733 + components: + - rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1734 + components: + - rot: 3.141592653589793 rad + pos: -5.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1736 + components: + - rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1737 + components: + - rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1738 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1739 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1740 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1741 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1742 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1743 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1744 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1745 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1746 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1747 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1748 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1749 + components: + - rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1750 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1751 + components: + - rot: 3.141592653589793 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1752 + components: + - rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1753 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1754 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1755 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1756 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1757 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1758 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1759 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1760 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1761 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1762 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1763 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1764 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1765 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1766 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1767 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1768 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1769 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1770 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1771 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1772 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,29.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1773 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1774 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1775 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1776 + components: + - rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1777 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1778 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1779 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1780 + components: + - rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1781 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1782 + components: + - rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1783 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1784 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1785 + components: + - rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1786 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1787 + components: + - pos: 11.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1788 + components: + - pos: 14.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1789 + components: + - rot: 3.141592653589793 rad + pos: 14.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1790 + components: + - rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1791 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1792 + components: + - rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 2416 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 2417 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 2418 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 2419 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 2439 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound +- proto: PoweredSmallLight + entities: + - uid: 1793 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 1794 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 1580 + components: + - pos: 14.5,10.5 + parent: 1 + type: Transform + - uid: 1656 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 1795 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 1796 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 1797 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - uid: 1798 + components: + - pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 1799 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 1800 + components: + - pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 1801 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 1802 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 1803 + components: + - rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 1 + type: Transform + - uid: 1804 + components: + - rot: 3.141592653589793 rad + pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 1805 + components: + - rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 1807 + components: + - rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1 + type: Transform + - uid: 1808 + components: + - rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 1809 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform +- proto: RandomFoodBakedSingle + entities: + - uid: 1810 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: RandomFoodBakedWhole + entities: + - uid: 1811 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 1812 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 1813 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 1814 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 1815 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 1816 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 1817 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 1818 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 1819 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 1820 + components: + - pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 1821 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - uid: 1823 + components: + - pos: 17.5,14.5 + parent: 1 + type: Transform +- proto: RandomSoap + entities: + - uid: 1824 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 1825 + components: + - rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 1826 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 1827 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 1828 + components: + - pos: 6.5,19.5 + parent: 1 + type: Transform + - uid: 1829 + components: + - pos: 8.5,33.5 + parent: 1 + type: Transform + - uid: 1830 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 1831 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 1832 + components: + - pos: -15.5,4.5 + parent: 1 + type: Transform +- proto: RandomVending + entities: + - uid: 1833 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 1834 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 1835 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 1836 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 1837 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 1838 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform +- proto: RCD + entities: + - uid: 633 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 645 + components: + - flags: InContainer + type: MetaData + - parent: 638 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1839 + components: + - rot: -1.5707963267948966 rad + pos: -13.02557,7.5930595 + parent: 1 + type: Transform + - uid: 2481 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2493 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: RCDAmmo + entities: + - uid: 634 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 635 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 636 + components: + - flags: InContainer + type: MetaData + - parent: 626 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 646 + components: + - flags: InContainer + type: MetaData + - parent: 638 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 647 + components: + - flags: InContainer + type: MetaData + - parent: 638 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 648 + components: + - flags: InContainer + type: MetaData + - parent: 638 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1840 + components: + - rot: 1.5707963267948966 rad + pos: -12.36932,7.7961845 + parent: 1 + type: Transform + - uid: 1841 + components: + - rot: 1.5707963267948966 rad + pos: -12.36932,7.7961845 + parent: 1 + type: Transform + - uid: 1842 + components: + - rot: 1.5707963267948966 rad + pos: -12.36932,7.7961845 + parent: 1 + type: Transform + - uid: 1843 + components: + - rot: 1.5707963267948966 rad + pos: -12.36932,7.7961845 + parent: 1 + type: Transform + - uid: 1844 + components: + - rot: 1.5707963267948966 rad + pos: -12.36932,7.7961845 + parent: 1 + type: Transform + - uid: 2477 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2478 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2480 + components: + - flags: InContainer + type: MetaData + - parent: 2470 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2490 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2491 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2492 + components: + - flags: InContainer + type: MetaData + - parent: 2482 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ReinforcedPlasmaWindow + entities: + - uid: 1845 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,11.5 + parent: 1 + type: Transform + - uid: 1846 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 1418 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 1847 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - uid: 1848 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 1 + type: Transform + - uid: 1849 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 1 + type: Transform + - uid: 1850 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,35.5 + parent: 1 + type: Transform + - uid: 1851 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 1852 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 1853 + components: + - rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 1854 + components: + - rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 1855 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 1856 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 1857 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 1 + type: Transform + - uid: 1858 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 1 + type: Transform + - uid: 1859 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 1 + type: Transform + - uid: 1860 + components: + - rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 1 + type: Transform + - uid: 1861 + components: + - rot: 3.141592653589793 rad + pos: 12.5,18.5 + parent: 1 + type: Transform + - uid: 1862 + components: + - rot: 3.141592653589793 rad + pos: 11.5,18.5 + parent: 1 + type: Transform + - uid: 1863 + components: + - rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 1 + type: Transform + - uid: 1864 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 1865 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,33.5 + parent: 1 + type: Transform + - uid: 1866 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 1867 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + type: Transform + - uid: 1868 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 1869 + components: + - pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 1870 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - uid: 1873 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 1875 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,27.5 + parent: 1 + type: Transform + - uid: 1876 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,26.5 + parent: 1 + type: Transform + - uid: 1877 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 1 + type: Transform + - uid: 1878 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 1879 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 1880 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 1881 + components: + - pos: 18.5,13.5 + parent: 1 + type: Transform + - uid: 1882 + components: + - pos: 18.5,12.5 + parent: 1 + type: Transform + - uid: 1883 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 1884 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 1885 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 2142 + components: + - pos: -0.5,23.5 + parent: 1 + type: Transform +- proto: RiotBulletShield + entities: + - uid: 1886 + components: + - pos: 12.378235,6.6466303 + parent: 1 + type: Transform + - uid: 1887 + components: + - pos: 12.534485,6.6310053 + parent: 1 + type: Transform + - uid: 1888 + components: + - pos: 12.67511,6.6310053 + parent: 1 + type: Transform +- proto: RiotShield + entities: + - uid: 1889 + components: + - pos: 12.70636,6.4591303 + parent: 1 + type: Transform + - uid: 1890 + components: + - pos: 12.565735,6.4591303 + parent: 1 + type: Transform + - uid: 1891 + components: + - pos: 12.42511,6.4591303 + parent: 1 + type: Transform +- proto: RubberStampApproved + entities: + - uid: 1892 + components: + - pos: 13.757669,17.8373 + parent: 1 + type: Transform +- proto: RubberStampCentcom + entities: + - uid: 1893 + components: + - pos: 13.757669,17.540424 + parent: 1 + type: Transform +- proto: RubberStampDenied + entities: + - uid: 1894 + components: + - pos: 13.757669,17.7123 + parent: 1 + type: Transform +- proto: SheetGlass + entities: + - uid: 1895 + components: + - pos: -11.446348,7.5056324 + parent: 1 + type: Transform + - uid: 1896 + components: + - pos: -11.446348,7.5056324 + parent: 1 + type: Transform + - uid: 1897 + components: + - pos: -11.446348,7.5056324 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 137 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 138 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 139 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 140 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 141 + components: + - flags: InContainer + type: MetaData + - parent: 122 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SheetPlasteel + entities: + - uid: 1898 + components: + - pos: -11.470959,7.482976 + parent: 1 + type: Transform + - uid: 1899 + components: + - pos: -11.470959,7.482976 + parent: 1 + type: Transform + - uid: 1900 + components: + - pos: -11.470959,7.482976 + parent: 1 + type: Transform + - uid: 1901 + components: + - pos: -11.470959,7.482976 + parent: 1 + type: Transform + - uid: 1902 + components: + - pos: -11.470959,7.482976 + parent: 1 + type: Transform +- proto: SheetRGlass + entities: + - uid: 1903 + components: + - pos: -11.493223,7.4587574 + parent: 1 + type: Transform + - uid: 1904 + components: + - pos: -11.493223,7.4587574 + parent: 1 + type: Transform + - uid: 1905 + components: + - pos: -11.493223,7.4587574 + parent: 1 + type: Transform +- proto: SheetRPGlass + entities: + - uid: 1906 + components: + - pos: -11.477598,7.4431324 + parent: 1 + type: Transform + - uid: 1907 + components: + - pos: -11.477598,7.4431324 + parent: 1 + type: Transform + - uid: 1908 + components: + - pos: -11.477598,7.4431324 + parent: 1 + type: Transform +- proto: SheetSteel + entities: + - uid: 1909 + components: + - pos: -11.424084,7.498601 + parent: 1 + type: Transform + - uid: 1910 + components: + - pos: -11.424084,7.498601 + parent: 1 + type: Transform + - uid: 1911 + components: + - pos: -11.424084,7.498601 + parent: 1 + type: Transform + - uid: 1912 + components: + - pos: -11.424084,7.498601 + parent: 1 + type: Transform + - uid: 1913 + components: + - pos: -11.424084,7.498601 + parent: 1 + type: Transform +- proto: SignArmory + entities: + - uid: 1914 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + type: Transform +- proto: SignAtmos + entities: + - uid: 1915 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,8.5 + parent: 1 + type: Transform +- proto: SignBridge + entities: + - uid: 1916 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform +- proto: SignEngineering + entities: + - uid: 1917 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + type: Transform +- proto: SignEVA + entities: + - uid: 1918 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform +- proto: SignMedical + entities: + - uid: 1919 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: SignMorgue + entities: + - uid: 1920 + components: + - pos: -12.5,-1.5 + parent: 1 + type: Transform +- proto: SignShipDock + entities: + - uid: 1921 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1 + type: Transform +- proto: SignSurgery + entities: + - uid: 1922 + components: + - pos: -15.5,2.5 + parent: 1 + type: Transform +- proto: SignVirology + entities: + - uid: 1923 + components: + - pos: -18.5,5.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 1924 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 1925 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 1926 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 1927 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 1928 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 1929 + components: + - pos: -11.5,11.5 + parent: 1 + type: Transform + - autoRechargeRate: 8000000 + autoRecharge: True + type: BatterySelfRecharger + - uid: 1930 + components: + - pos: -12.5,11.5 + parent: 1 + type: Transform + - autoRechargeRate: 8000000 + autoRecharge: True + type: BatterySelfRecharger + - uid: 1931 + components: + - pos: -13.5,11.5 + parent: 1 + type: Transform + - autoRechargeRate: 8000000 + autoRecharge: True + type: BatterySelfRecharger +- proto: SoapNT + entities: + - uid: 1932 + components: + - pos: 4.5256424,24.530594 + parent: 1 + type: Transform +- proto: SpawnMobCleanBot + entities: + - uid: 1933 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 1934 + components: + - pos: 7.5,24.5 + parent: 1 + type: Transform + - uid: 1935 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform +- proto: SpawnMobMedibot + entities: + - uid: 1936 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform +- proto: SpawnPointERTEventERTEngineerEVA + entities: + - uid: 2531 + components: + - pos: -9.5,17.5 + parent: 1 + type: Transform + - uid: 2532 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 2533 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 2534 + components: + - pos: -10.5,13.5 + parent: 1 + type: Transform +- proto: SpawnPointERTEventERTLeaderEVA + entities: + - uid: 2535 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointERTEventERTMedicalEVA + entities: + - uid: 2527 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 2528 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 2529 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 2530 + components: + - pos: -12.5,4.5 + parent: 1 + type: Transform +- proto: SpawnPointERTEventERTSecurityEVA + entities: + - uid: 2523 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 2524 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 2525 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 2526 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 1937 + components: + - rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 1938 + components: + - pos: 11.319399,4.723261 + parent: 1 + type: Transform + - uid: 1939 + components: + - pos: 11.506899,4.723261 + parent: 1 + type: Transform + - uid: 1940 + components: + - pos: 11.678774,4.707636 + parent: 1 + type: Transform + - uid: 1941 + components: + - pos: 11.678774,4.567011 + parent: 1 + type: Transform + - uid: 1942 + components: + - pos: 11.475649,4.567011 + parent: 1 + type: Transform + - uid: 1943 + components: + - pos: 11.335024,4.567011 + parent: 1 + type: Transform +- proto: StasisBed + entities: + - uid: 1944 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform +- proto: Stunbaton + entities: + - uid: 1945 + components: + - pos: 11.239096,8.59159 + parent: 1 + type: Transform + - uid: 1946 + components: + - pos: 11.239096,8.59159 + parent: 1 + type: Transform + - uid: 1947 + components: + - pos: 11.239096,8.59159 + parent: 1 + type: Transform + - uid: 1948 + components: + - pos: 11.239096,8.59159 + parent: 1 + type: Transform + - uid: 1949 + components: + - pos: 11.239096,8.59159 + parent: 1 + type: Transform + - uid: 1982 + components: + - pos: 11.239096,8.59159 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 1951 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 1952 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 1953 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 1954 + components: + - pos: 17.5,17.5 + parent: 1 + type: Transform +- proto: SyringeBluespace + entities: + - uid: 216 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 217 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 218 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 219 + components: + - flags: InContainer + type: MetaData + - parent: 184 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: TableReinforced + entities: + - uid: 603 + components: + - pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 1955 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 1956 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 1957 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 1958 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 1959 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,8.5 + parent: 1 + type: Transform + - uid: 1960 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,7.5 + parent: 1 + type: Transform + - uid: 1961 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 1962 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 1963 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,7.5 + parent: 1 + type: Transform + - uid: 1964 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 1965 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 1966 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 1967 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 1968 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 1969 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 1970 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 1971 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 1972 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 1973 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 1974 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 1975 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 1976 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 1977 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 1978 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 1979 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 1980 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 1981 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 1983 + components: + - rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 1984 + components: + - rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 1985 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 1986 + components: + - pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 1987 + components: + - pos: -13.5,-3.5 + parent: 1 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 1988 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 1989 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 1990 + components: + - pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 1991 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 1992 + components: + - pos: -20.5,5.5 + parent: 1 + type: Transform +- proto: TelecomServerFilled + entities: + - uid: 1993 + components: + - pos: 15.5,17.5 + parent: 1 + type: Transform + - uid: 1994 + components: + - pos: 15.5,16.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 1995 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 1996 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 1997 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 1 + type: Transform +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 1998 + components: + - pos: -12.694241,5.5293202 + parent: 1 + type: Transform +- proto: ToyRubberDuck + entities: + - uid: 1999 + components: + - pos: 2.4475174,24.655594 + parent: 1 + type: Transform +- proto: Truncheon + entities: + - uid: 144 + components: + - pos: 11.332846,8.513465 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 11.332846,8.513465 + parent: 1 + type: Transform + - uid: 1950 + components: + - pos: 11.332846,8.513465 + parent: 1 + type: Transform + - uid: 2000 + components: + - pos: 11.332846,8.513465 + parent: 1 + type: Transform + - uid: 2001 + components: + - pos: 11.332846,8.513465 + parent: 1 + type: Transform + - uid: 2002 + components: + - pos: 11.332846,8.513465 + parent: 1 + type: Transform +- proto: Vaccinator + entities: + - uid: 2003 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform +- proto: VehicleKeyJanicart + entities: + - uid: 2004 + components: + - pos: 12.515272,4.554459 + parent: 1 + type: Transform +- proto: VendingMachineAmmo + entities: + - uid: 151 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,6.5 + parent: 1 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 2005 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,14.5 + parent: 1 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 2006 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,-2.5 + parent: 1 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 2007 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 2008 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-4.5 + parent: 1 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 756 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,16.5 + parent: 1 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 2009 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,6.5 + parent: 1 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 2010 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,6.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 2011 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,12.5 + parent: 1 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 2012 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,9.5 + parent: 1 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 754 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,17.5 + parent: 1 + type: Transform +- proto: VirusologHampter + entities: + - uid: 2013 + components: + - pos: -19.93943,5.556874 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 1463 + components: + - pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 1567 + components: + - pos: -2.5,21.5 + parent: 1 + type: Transform + - uid: 2014 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 2015 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 2016 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 2017 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 2018 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 2019 + components: + - rot: 3.141592653589793 rad + pos: -12.5,14.5 + parent: 1 + type: Transform + - uid: 2020 + components: + - rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 2021 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 2022 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 2023 + components: + - pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 2024 + components: + - rot: 3.141592653589793 rad + pos: -11.5,14.5 + parent: 1 + type: Transform + - uid: 2025 + components: + - pos: -12.5,17.5 + parent: 1 + type: Transform + - uid: 2026 + components: + - rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 1 + type: Transform + - uid: 2027 + components: + - rot: 3.141592653589793 rad + pos: -8.5,14.5 + parent: 1 + type: Transform + - uid: 2028 + components: + - rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 2029 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,13.5 + parent: 1 + type: Transform + - uid: 2030 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 2031 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 2032 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,14.5 + parent: 1 + type: Transform + - uid: 2033 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 2034 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,13.5 + parent: 1 + type: Transform + - uid: 2035 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 2036 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 2037 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 2038 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 2039 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 2040 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 2041 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 2042 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 2043 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 2044 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 2045 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 2046 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,6.5 + parent: 1 + type: Transform + - uid: 2047 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 2048 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 2049 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,12.5 + parent: 1 + type: Transform + - uid: 2050 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 2051 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,9.5 + parent: 1 + type: Transform + - uid: 2052 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 2053 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 2054 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 2055 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,11.5 + parent: 1 + type: Transform + - uid: 2056 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 2057 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,11.5 + parent: 1 + type: Transform + - uid: 2058 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 2059 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 2060 + components: + - pos: -18.5,6.5 + parent: 1 + type: Transform + - uid: 2061 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 1 + type: Transform + - uid: 2062 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,6.5 + parent: 1 + type: Transform + - uid: 2063 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,6.5 + parent: 1 + type: Transform + - uid: 2064 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,6.5 + parent: 1 + type: Transform + - uid: 2065 + components: + - pos: -14.5,7.5 + parent: 1 + type: Transform + - uid: 2066 + components: + - pos: -21.5,6.5 + parent: 1 + type: Transform + - uid: 2067 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 2068 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 2069 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 2070 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 2071 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 2072 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 2073 + components: + - rot: 3.141592653589793 rad + pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 2074 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + type: Transform + - uid: 2075 + components: + - pos: 18.5,15.5 + parent: 1 + type: Transform + - uid: 2076 + components: + - rot: 3.141592653589793 rad + pos: -16.5,11.5 + parent: 1 + type: Transform + - uid: 2077 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 2078 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 2079 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 2080 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 2081 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 2082 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 2083 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 2084 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 2085 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 2086 + components: + - pos: -6.5,16.5 + parent: 1 + type: Transform + - uid: 2087 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 2089 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 2090 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 2091 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 2092 + components: + - pos: -6.5,18.5 + parent: 1 + type: Transform + - uid: 2093 + components: + - pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 2094 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 2095 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 2096 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 2097 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 2098 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 2099 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 2100 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 2101 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 2102 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 2103 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 2104 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 2105 + components: + - pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 2106 + components: + - pos: 5.5,25.5 + parent: 1 + type: Transform + - uid: 2107 + components: + - pos: 5.5,23.5 + parent: 1 + type: Transform + - uid: 2108 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform + - uid: 2109 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 2110 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform + - uid: 2111 + components: + - pos: -12.5,15.5 + parent: 1 + type: Transform + - uid: 2112 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 2113 + components: + - pos: 5.5,31.5 + parent: 1 + type: Transform + - uid: 2114 + components: + - pos: 5.5,30.5 + parent: 1 + type: Transform + - uid: 2115 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,24.5 + parent: 1 + type: Transform + - uid: 2116 + components: + - pos: 5.5,29.5 + parent: 1 + type: Transform + - uid: 2117 + components: + - rot: 3.141592653589793 rad + pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 2118 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1 + type: Transform + - uid: 2119 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,29.5 + parent: 1 + type: Transform + - uid: 2120 + components: + - pos: 5.5,22.5 + parent: 1 + type: Transform + - uid: 2121 + components: + - rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 2122 + components: + - pos: -6.5,15.5 + parent: 1 + type: Transform + - uid: 2123 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 2124 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 2125 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 2126 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 2127 + components: + - pos: -2.5,17.5 + parent: 1 + type: Transform + - uid: 2128 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 2129 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 2130 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 2131 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 2132 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 2133 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,33.5 + parent: 1 + type: Transform + - uid: 2134 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 2135 + components: + - pos: 4.5,25.5 + parent: 1 + type: Transform + - uid: 2136 + components: + - pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 2137 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 2138 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 2139 + components: + - pos: 5.5,16.5 + parent: 1 + type: Transform + - uid: 2140 + components: + - rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 1 + type: Transform + - uid: 2141 + components: + - rot: 3.141592653589793 rad + pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 2143 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - uid: 2144 + components: + - pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 2145 + components: + - pos: 3.5,25.5 + parent: 1 + type: Transform + - uid: 2146 + components: + - pos: 2.5,25.5 + parent: 1 + type: Transform + - uid: 2147 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 2148 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 2149 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 2150 + components: + - pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 2151 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 2152 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 2153 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 2154 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform + - uid: 2155 + components: + - pos: 1.5,20.5 + parent: 1 + type: Transform + - uid: 2156 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 2157 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 1 + type: Transform + - uid: 2158 + components: + - rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 2159 + components: + - rot: 3.141592653589793 rad + pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 2160 + components: + - rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 2161 + components: + - rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 2162 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,34.5 + parent: 1 + type: Transform + - uid: 2163 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,26.5 + parent: 1 + type: Transform + - uid: 2164 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,34.5 + parent: 1 + type: Transform + - uid: 2165 + components: + - pos: 17.5,11.5 + parent: 1 + type: Transform + - uid: 2166 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 2167 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 2168 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 2169 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 2170 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 2171 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 2172 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 2173 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 2174 + components: + - rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 2175 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 2176 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 2177 + components: + - rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 1 + type: Transform + - uid: 2178 + components: + - rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 2179 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 2180 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 2181 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 2182 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 2183 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 2184 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 2185 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 2186 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 2187 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 2188 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 2189 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 2190 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 2191 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 2192 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 2193 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 2194 + components: + - pos: 9.5,17.5 + parent: 1 + type: Transform + - uid: 2195 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 2196 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 2197 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 2198 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 2199 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 2200 + components: + - pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 2201 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 2202 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 2203 + components: + - pos: 9.5,18.5 + parent: 1 + type: Transform + - uid: 2204 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 2205 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 2206 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 2207 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 2208 + components: + - rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 2209 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 2210 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 2211 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 2212 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 2213 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 2214 + components: + - rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 2215 + components: + - rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 2216 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,8.5 + parent: 1 + type: Transform + - uid: 2217 + components: + - rot: 3.141592653589793 rad + pos: -12.5,10.5 + parent: 1 + type: Transform + - uid: 2218 + components: + - rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 2219 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 2220 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 2221 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 2222 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 2223 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 2224 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 2225 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 2226 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 2227 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 2228 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 2229 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 2230 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 2231 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 2232 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 2233 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 2234 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 2235 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 2236 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,10.5 + parent: 1 + type: Transform + - uid: 2237 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 1 + type: Transform + - uid: 2238 + components: + - rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 2239 + components: + - rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 1 + type: Transform + - uid: 2240 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 2241 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 1 + type: Transform + - uid: 2242 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 2243 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 2244 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 2245 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 2246 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 2247 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 2248 + components: + - rot: 3.141592653589793 rad + pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 2249 + components: + - rot: 3.141592653589793 rad + pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 2250 + components: + - rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 2251 + components: + - rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 2252 + components: + - rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 2253 + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 2254 + components: + - rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 2255 + components: + - rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 2256 + components: + - rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 2257 + components: + - rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 2258 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 2259 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 2260 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 2261 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 2262 + components: + - pos: -12.5,2.5 + parent: 1 + type: Transform + - uid: 2263 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 2264 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 2265 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 2266 + components: + - pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 2267 + components: + - pos: -20.5,6.5 + parent: 1 + type: Transform + - uid: 2268 + components: + - pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 2269 + components: + - pos: -23.5,1.5 + parent: 1 + type: Transform + - uid: 2270 + components: + - pos: -23.5,3.5 + parent: 1 + type: Transform + - uid: 2271 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 2272 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 2273 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 1 + type: Transform + - uid: 2274 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 2275 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1 + type: Transform + - uid: 2276 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 1 + type: Transform + - uid: 2277 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1 + type: Transform + - uid: 2278 + components: + - pos: -18.5,0.5 + parent: 1 + type: Transform + - uid: 2279 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 2280 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 1 + type: Transform + - uid: 2281 + components: + - pos: 18.5,17.5 + parent: 1 + type: Transform + - uid: 2282 + components: + - pos: 16.5,18.5 + parent: 1 + type: Transform + - uid: 2283 + components: + - pos: 17.5,18.5 + parent: 1 + type: Transform + - uid: 2284 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 2285 + components: + - pos: 15.5,18.5 + parent: 1 + type: Transform + - uid: 2286 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 1 + type: Transform + - uid: 2287 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1 + type: Transform + - uid: 2288 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 2289 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 2290 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,2.5 + parent: 1 + type: Transform + - uid: 2291 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 1 + type: Transform + - uid: 2292 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1 + type: Transform + - uid: 2293 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + type: Transform + - uid: 2294 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 1 + type: Transform + - uid: 2295 + components: + - pos: 16.5,11.5 + parent: 1 + type: Transform + - uid: 2296 + components: + - pos: 18.5,16.5 + parent: 1 + type: Transform + - uid: 2297 + components: + - pos: 18.5,14.5 + parent: 1 + type: Transform + - uid: 2298 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform + - uid: 2299 + components: + - rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 1 + type: Transform + - uid: 2300 + components: + - rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 1 + type: Transform + - uid: 2301 + components: + - rot: 3.141592653589793 rad + pos: -19.5,10.5 + parent: 1 + type: Transform + - uid: 2302 + components: + - rot: 3.141592653589793 rad + pos: -20.5,9.5 + parent: 1 + type: Transform + - uid: 2303 + components: + - rot: 3.141592653589793 rad + pos: -20.5,8.5 + parent: 1 + type: Transform + - uid: 2304 + components: + - rot: 3.141592653589793 rad + pos: -20.5,7.5 + parent: 1 + type: Transform + - uid: 2305 + components: + - rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 2306 + components: + - pos: -11.5,18.5 + parent: 1 + type: Transform + - uid: 2307 + components: + - pos: -8.5,18.5 + parent: 1 + type: Transform + - uid: 2308 + components: + - pos: -7.5,18.5 + parent: 1 + type: Transform + - uid: 2309 + components: + - rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 1 + type: Transform + - uid: 2310 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 2311 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 2312 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 2313 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 2314 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 2315 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 2316 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 2317 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 2320 + components: + - pos: -6.5,19.5 + parent: 1 + type: Transform + - uid: 2414 + components: + - pos: -6.5,20.5 + parent: 1 + type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 1735 + components: + - pos: -6.5,21.5 + parent: 1 + type: Transform + - uid: 2318 + components: + - pos: -18.5,14.5 + parent: 1 + type: Transform + - uid: 2319 + components: + - pos: -12.5,18.5 + parent: 1 + type: Transform + - uid: 2322 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,35.5 + parent: 1 + type: Transform + - uid: 2323 + components: + - pos: 5.5,35.5 + parent: 1 + type: Transform + - uid: 2324 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 2325 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 2326 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 2327 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 2328 + components: + - rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 1 + type: Transform + - uid: 2329 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 2330 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,18.5 + parent: 1 + type: Transform + - uid: 2331 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 1 + type: Transform + - uid: 2332 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 2333 + components: + - rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 2334 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 2386 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 149 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform +- proto: WaterCooler + entities: + - uid: 2335 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 2336 + components: + - pos: -13.5,7.5 + parent: 1 + type: Transform + - uid: 2337 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 2495 + components: + - pos: 3.5,15.5 + parent: 1 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 13 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 671 + components: + - flags: InContainer + type: MetaData + - parent: 669 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 684 + components: + - flags: InContainer + type: MetaData + - parent: 678 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 691 + components: + - flags: InContainer + type: MetaData + - parent: 687 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 702 + components: + - flags: InContainer + type: MetaData + - parent: 696 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 719 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeaponPulseCarbine + entities: + - uid: 2338 + components: + - pos: 13.48761,8.662255 + parent: 1 + type: Transform + - uid: 2339 + components: + - pos: 13.48761,8.537255 + parent: 1 + type: Transform +- proto: WeaponPulsePistol + entities: + - uid: 720 + components: + - flags: InContainer + type: MetaData + - parent: 705 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2340 + components: + - pos: 13.378235,8.36538 + parent: 1 + type: Transform + - uid: 2341 + components: + - pos: 13.58136,8.36538 + parent: 1 + type: Transform +- proto: WeaponPulseRifle + entities: + - uid: 2342 + components: + - pos: 12.534485,8.724755 + parent: 1 + type: Transform + - uid: 2343 + components: + - pos: 12.534485,8.568505 + parent: 1 + type: Transform + - uid: 2344 + components: + - pos: 12.534485,8.381005 + parent: 1 + type: Transform +- proto: WeaponRifleLecter + entities: + - uid: 2345 + components: + - pos: 14.440735,8.506005 + parent: 1 + type: Transform + - uid: 2346 + components: + - pos: 14.440735,8.381005 + parent: 1 + type: Transform + - uid: 2347 + components: + - pos: 14.458244,8.619274 + parent: 1 + type: Transform +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 2348 + components: + - pos: 13.51886,6.6310053 + parent: 1 + type: Transform + - uid: 2349 + components: + - pos: 13.51886,6.5216303 + parent: 1 + type: Transform + - uid: 2350 + components: + - pos: 13.51886,6.4278803 + parent: 1 + type: Transform +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 2351 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform +- proto: WetFloorSign + entities: + - uid: 2352 + components: + - pos: 12.381899,3.9263859 + parent: 1 + type: Transform + - uid: 2353 + components: + - pos: 12.569399,3.9263859 + parent: 1 + type: Transform + - uid: 2354 + components: + - pos: 12.741274,3.9420109 + parent: 1 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 2355 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 1 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 2356 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 2357 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 2358 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 2359 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 2360 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 2361 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 1 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 2362 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 2363 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 2364 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 2365 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 2366 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 2367 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 2368 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 2369 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 2370 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform +- proto: Window + entities: + - uid: 1461 + components: + - pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 1462 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 1732 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 1408 + components: + - rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 1409 + components: + - rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 1872 + components: + - rot: 3.141592653589793 rad + pos: -1.5,22.5 + parent: 1 + type: Transform + - uid: 1874 + components: + - rot: 3.141592653589793 rad + pos: -3.5,20.5 + parent: 1 + type: Transform + - uid: 2371 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,13.5 + parent: 1 + type: Transform + - uid: 2372 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 1 + type: Transform + - uid: 2373 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 2374 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 2375 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 2376 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 2377 + components: + - rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 2378 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 2379 + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 2380 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 2381 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 2382 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 2383 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 2384 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 2385 + components: + - pos: -20.5,2.5 + parent: 1 + type: Transform + - uid: 2388 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 2389 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 2392 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 2393 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 2394 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 2395 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 2396 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 2397 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 2398 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 2399 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 2400 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 2401 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 2402 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 2403 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 2404 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 2405 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 2406 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 2407 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 2408 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,8.5 + parent: 1 + type: Transform + - uid: 2409 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 2410 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 2411 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 2412 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 2413 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform +- proto: YellowOxygenTankFilled + entities: + - uid: 14 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +... diff --git a/Resources/Maps/White/Whitebox.yml b/Resources/Maps/White/Whitebox.yml index 6afe142909..eb5a4fecf1 100644 --- a/Resources/Maps/White/Whitebox.yml +++ b/Resources/Maps/White/Whitebox.yml @@ -3,41 +3,41 @@ meta: postmapinit: false tilemap: 0: Space - 8: FloorAsteroidSand - 9: FloorAsteroidSandDug - 15: FloorBar - 18: FloorBlueCircuit - 20: FloorBrokenWood - 21: FloorCarpetClown - 26: FloorClown - 30: FloorDark - 36: FloorDarkMono - 45: FloorEighties - 48: FloorFreezer - 49: FloorGlass - 51: FloorGrass - 62: FloorHydro - 64: FloorKitchen - 65: FloorLaundry - 66: FloorLino - 68: FloorMetalDiamond - 69: FloorMime - 73: FloorMono - 78: FloorPlanetGrass - 81: FloorReinforced - 84: FloorShowroom - 86: FloorShuttleOrange - 91: FloorSnow - 93: FloorSteel - 100: FloorSteelDirty - 105: FloorSteelMono - 111: FloorTechMaint - 112: FloorTechMaint2 - 115: FloorWhite - 128: FloorWood - 129: FloorWoodTile - 130: Lattice - 131: Plating + 9: FloorAsteroidSand + 10: FloorAsteroidSandDug + 16: FloorBar + 19: FloorBlueCircuit + 21: FloorBrokenWood + 22: FloorCarpetClown + 27: FloorClown + 31: FloorDark + 37: FloorDarkMono + 46: FloorEighties + 49: FloorFreezer + 52: FloorGrass + 63: FloorHydro + 65: FloorKitchen + 66: FloorLaundry + 67: FloorLino + 69: FloorMetalDiamond + 70: FloorMime + 74: FloorMono + 79: FloorPlanetGrass + 81: FloorRGlass + 82: FloorReinforced + 85: FloorShowroom + 87: FloorShuttleOrange + 92: FloorSnow + 94: FloorSteel + 101: FloorSteelDirty + 106: FloorSteelMono + 112: FloorTechMaint + 113: FloorTechMaint2 + 116: FloorWhite + 129: FloorWood + 130: FloorWoodTile + 131: Lattice + 132: Plating entities: - proto: "" entities: @@ -63,407 +63,407 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: XQAAAAAAgwAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABJAAAAAAAHgAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAHgAAAAABHgAAAAACHgAAAAACJAAAAAADHgAAAAADJAAAAAABHgAAAAABHgAAAAABgwAAAAAAHgAAAAABHgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAXQAAAAABgwAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAJAAAAAAAHgAAAAADHgAAAAADgwAAAAAAJAAAAAADHgAAAAAAEgAAAAAAJAAAAAACEgAAAAAAXQAAAAADgwAAAAAAHgAAAAACHgAAAAADHgAAAAACJAAAAAADJAAAAAABHgAAAAADHgAAAAACHgAAAAAAgwAAAAAAHgAAAAACEgAAAAAAEgAAAAAAHgAAAAACHgAAAAADXQAAAAABgwAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAABgwAAAAAAHgAAAAADEgAAAAAAEgAAAAAAHgAAAAADHgAAAAADXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACEgAAAAAAEgAAAAAAHgAAAAADXQAAAAACXQAAAAADXQAAAAABJAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABXQAAAAAAXQAAAAADXQAAAAADJAAAAAABXQAAAAABJAAAAAAAXQAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAADXQAAAAABXQAAAAABXQAAAAACJAAAAAADgwAAAAAAJAAAAAABgwAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAABXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAABXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAXQAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAABHgAAAAADXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAJAAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABJAAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAD + tiles: XgAAAAAAhAAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABJQAAAAAAHwAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAHwAAAAABHwAAAAACHwAAAAACJQAAAAADHwAAAAADJQAAAAABHwAAAAABHwAAAAABhAAAAAAAHwAAAAABHwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXgAAAAABhAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAJQAAAAAAHwAAAAADHwAAAAADhAAAAAAAJQAAAAADHwAAAAAAEwAAAAAAJQAAAAACEwAAAAAAXgAAAAADhAAAAAAAHwAAAAACHwAAAAADHwAAAAACJQAAAAADJQAAAAABHwAAAAADHwAAAAACHwAAAAAAhAAAAAAAHwAAAAACEwAAAAAAEwAAAAAAHwAAAAACHwAAAAADXgAAAAABhAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABhAAAAAAAHwAAAAADEwAAAAAAEwAAAAAAHwAAAAADHwAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACEwAAAAAAEwAAAAAAHwAAAAADXgAAAAACXgAAAAADXgAAAAABJQAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABXgAAAAAAXgAAAAADXgAAAAADJQAAAAABXgAAAAABJQAAAAAAXgAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADXgAAAAABXgAAAAABXgAAAAACJQAAAAADhAAAAAAAJQAAAAABhAAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAABXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAABXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAXgAAAAADhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAACJQAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAJQAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAABJQAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAAD version: 6 0,0: ind: 0,0 - tiles: XQAAAAADXQAAAAADXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAABgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAACXQAAAAACXQAAAAACgwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAACcwAAAAADXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADgwAAAAAAcwAAAAAAcwAAAAABgwAAAAAAcwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAACcwAAAAADcwAAAAADcwAAAAADgwAAAAAAJAAAAAADgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAACcwAAAAACcwAAAAACcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAACgAAAAAABFAAAAAAAgAAAAAACXQAAAAABXQAAAAADcwAAAAACcwAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAACgAAAAAABgAAAAAADgwAAAAAAXQAAAAABXQAAAAAAgwAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAADgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAABgwAAAAAAgwAAAAAAcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAAAgAAAAAABgAAAAAADXQAAAAABXQAAAAADJAAAAAABJAAAAAAAXQAAAAADXQAAAAABXQAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAFAAAAAABgAAAAAAAgAAAAAABgwAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAAAgAAAAAADgAAAAAAAgAAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAADgAAAAAADgAAAAAADgwAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAgAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAFAAAAAAGgAAAAAABgAAAAAAAgAAAAAACXQAAAAADXQAAAAACgwAAAAAAgAAAAAABgAAAAAABgAAAAAACgwAAAAAAgAAAAAABXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAADgAAAAAADgAAAAAACgwAAAAAAXQAAAAABXQAAAAABgwAAAAAAgAAAAAACgAAAAAADgAAAAAABgwAAAAAAgAAAAAAA + tiles: XgAAAAADXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAACXgAAAAACXgAAAAAChAAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAACdAAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADhAAAAAAAdAAAAAAAdAAAAAABhAAAAAAAdAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAACdAAAAAADdAAAAAADdAAAAAADhAAAAAAAJQAAAAADhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAACdAAAAAACdAAAAAACdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAABFQAAAAAAgQAAAAACXgAAAAABXgAAAAADdAAAAAACdAAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAABgQAAAAADhAAAAAAAXgAAAAABXgAAAAAAhAAAAAAAdAAAAAAAdAAAAAABdAAAAAAAdAAAAAADhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAAAgQAAAAABgQAAAAADXgAAAAABXgAAAAADJQAAAAABJQAAAAAAXgAAAAADXgAAAAABXgAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAFQAAAAABgQAAAAAAgQAAAAABhAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAADgQAAAAAAgQAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADgQAAAAADgQAAAAADhAAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAgQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAFQAAAAAGgQAAAAABgQAAAAAAgQAAAAACXgAAAAADXgAAAAAChAAAAAAAgQAAAAABgQAAAAABgQAAAAAChAAAAAAAgQAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADgQAAAAADgQAAAAAChAAAAAAAXgAAAAABXgAAAAABhAAAAAAAgQAAAAACgQAAAAADgQAAAAABhAAAAAAAgQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAACgAAAAAAAgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADFAAAAAAGgAAAAAABgwAAAAAAXQAAAAADXQAAAAABEgAAAAAAEgAAAAAAHgAAAAACHgAAAAACgwAAAAAAgAAAAAADgAAAAAABFAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgwAAAAAAXQAAAAADXQAAAAACJAAAAAAAEgAAAAAAHgAAAAACJAAAAAAAgwAAAAAAgAAAAAABgAAAAAABgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgwAAAAAAXQAAAAAAXQAAAAACHgAAAAABEgAAAAAAEgAAAAAAHgAAAAAAgwAAAAAAgAAAAAAAgAAAAAABgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgwAAAAAAXQAAAAABXQAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAHgAAAAABgwAAAAAAFAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAJAAAAAADQAAAAAAAQAAAAAAAgwAAAAAAXQAAAAAAXQAAAAABEgAAAAAAEgAAAAAAJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABgwAAAAAAJAAAAAABgwAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAXQAAAAAAJAAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAAAgwAAAAAAJAAAAAADgwAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAABXQAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAACXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABJAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACJAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADJAAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAC + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAAAgQAAAAADgQAAAAAAgQAAAAAAgQAAAAADFQAAAAAGgQAAAAABhAAAAAAAXgAAAAADXgAAAAABEwAAAAAAEwAAAAAAHwAAAAACHwAAAAAChAAAAAAAgQAAAAADgQAAAAABFQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAhAAAAAAAXgAAAAADXgAAAAACJQAAAAAAEwAAAAAAHwAAAAACJQAAAAAAhAAAAAAAgQAAAAABgQAAAAABgQAAAAABQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAhAAAAAAAXgAAAAAAXgAAAAACHwAAAAABEwAAAAAAEwAAAAAAHwAAAAAAhAAAAAAAgQAAAAAAgQAAAAABgQAAAAABQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAhAAAAAAAXgAAAAABXgAAAAAAHwAAAAAAEwAAAAAAEwAAAAAAHwAAAAABhAAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAJQAAAAADQQAAAAAAQQAAAAAAhAAAAAAAXgAAAAAAXgAAAAABEwAAAAAAEwAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAABhAAAAAAAJQAAAAABhAAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAXgAAAAAAJQAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAhAAAAAAAJQAAAAADhAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABXgAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAABJQAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAACJQAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADJQAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAAC version: 6 -1,0: ind: -1,0 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAgwAAAAAAJAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACgwAAAAAAJAAAAAACXQAAAAABJAAAAAAAXQAAAAAAJAAAAAADXQAAAAADJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADgwAAAAAAXQAAAAABXQAAAAABgwAAAAAAJAAAAAADXQAAAAADJAAAAAAAXQAAAAADJAAAAAAAXQAAAAAAJAAAAAACgwAAAAAAXQAAAAAAXQAAAAADgwAAAAAAHgAAAAADgwAAAAAAXQAAAAABXQAAAAACgwAAAAAAJAAAAAAAXQAAAAACJAAAAAACXQAAAAADJAAAAAACXQAAAAAAJAAAAAADgwAAAAAAXQAAAAADXQAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAXQAAAAADXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAHgAAAAADgwAAAAAAXQAAAAADXQAAAAADgwAAAAAAJAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAACJAAAAAACgwAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABgwAAAAAAXQAAAAAAXQAAAAABgwAAAAAAJAAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABJAAAAAABgwAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACgwAAAAAAXQAAAAADXQAAAAACgwAAAAAAJAAAAAAAJAAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAJAAAAAADgwAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABgwAAAAAAXQAAAAACXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAADbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAACbwAAAAAAgwAAAAAAgwAAAAAAgAAAAAACgAAAAAACgAAAAAADgwAAAAAAgwAAAAAAcAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABgwAAAAAAXQAAAAACXQAAAAACgwAAAAAAcAAAAAAAgwAAAAAAgAAAAAACgAAAAAABgAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAgwAAAAAAXQAAAAADXQAAAAADgwAAAAAAgAAAAAAAgAAAAAACgAAAAAAAgAAAAAADgAAAAAABgwAAAAAAgAAAAAAAFAAAAAAFXQAAAAAAXQAAAAABXQAAAAADXQAAAAACgwAAAAAAXQAAAAAAXQAAAAAD + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAhAAAAAAAJQAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAABJQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAChAAAAAAAJQAAAAACXgAAAAABJQAAAAAAXgAAAAAAJQAAAAADXgAAAAADJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAXgAAAAABXgAAAAABhAAAAAAAJQAAAAADXgAAAAADJQAAAAAAXgAAAAADJQAAAAAAXgAAAAAAJQAAAAAChAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAHwAAAAADhAAAAAAAXgAAAAABXgAAAAAChAAAAAAAJQAAAAAAXgAAAAACJQAAAAACXgAAAAADJQAAAAACXgAAAAAAJQAAAAADhAAAAAAAXgAAAAADXgAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAHwAAAAADhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAJQAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAACJQAAAAAChAAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAABhAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAJQAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAABJQAAAAABhAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAADhAAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAAChAAAAAAAXgAAAAADXgAAAAAChAAAAAAAJQAAAAAAJQAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAJQAAAAADhAAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABhAAAAAAAXgAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACcAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAACgQAAAAADhAAAAAAAhAAAAAAAcQAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAABhAAAAAAAXgAAAAACXgAAAAAChAAAAAAAcQAAAAAAhAAAAAAAgQAAAAACgQAAAAABgQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAAAhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAgQAAAAAAgQAAAAACgQAAAAAAgQAAAAADgQAAAAABhAAAAAAAgQAAAAAAFQAAAAAFXgAAAAAAXgAAAAABXgAAAAADXgAAAAAChAAAAAAAXgAAAAAAXgAAAAAD version: 6 1,-1: ind: 1,-1 - tiles: XQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADJAAAAAACJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAJAAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABJAAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADJAAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABgwAAAAAAgAAAAAACFAAAAAAAgAAAAAADgAAAAAABgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAADgAAAAAAAgAAAAAABFAAAAAAAgAAAAAABgAAAAAAAXQAAAAACgwAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAACgAAAAAACgAAAAAABgAAAAAACgAAAAAABgAAAAAACgAAAAAADXQAAAAACgwAAAAAAgAAAAAAAgAAAAAAAgAAAAAACFAAAAAAFgAAAAAADgAAAAAAAgAAAAAADgAAAAAACgAAAAAACgAAAAAACgwAAAAAAgwAAAAAADwAAAAACgwAAAAAAXQAAAAABgwAAAAAAgAAAAAACgAAAAAADgAAAAAAAgAAAAAABgAAAAAAAgAAAAAAAgAAAAAACgAAAAAADgAAAAAADgAAAAAABgwAAAAAADwAAAAABDwAAAAABDwAAAAADXQAAAAABgwAAAAAAgAAAAAACgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAWwAAAAAHWwAAAAAHgAAAAAADgAAAAAABgAAAAAABgwAAAAAADwAAAAAADwAAAAADDwAAAAADXQAAAAABgwAAAAAAgAAAAAADgAAAAAADgAAAAAACgAAAAAABgAAAAAAAWwAAAAAGWwAAAAACgAAAAAACgAAAAAACgAAAAAADgwAAAAAADwAAAAABDwAAAAAADwAAAAAAXQAAAAACgwAAAAAAFAAAAAAAgAAAAAADgAAAAAACgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAAgAAAAAACgAAAAAAAgAAAAAACgwAAAAAADwAAAAACDwAAAAADHgAAAAACXQAAAAADgwAAAAAAgAAAAAADgAAAAAABgAAAAAACgAAAAAAAgAAAAAABgAAAAAAAgAAAAAACgAAAAAAAgAAAAAABgwAAAAAAgwAAAAAADwAAAAAADwAAAAAADwAAAAACXQAAAAAAgwAAAAAAgAAAAAABgQAAAAAAgQAAAAACgQAAAAAAgQAAAAADgQAAAAABgQAAAAABgAAAAAAAgAAAAAAAgAAAAAABgwAAAAAAgwAAAAAAgAAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgAAAAAAAgQAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAACgQAAAAAAFAAAAAAGgAAAAAACgAAAAAADgAAAAAACgAAAAAACFAAAAAAAgAAAAAABXQAAAAADgwAAAAAAgAAAAAADgQAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAgQAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAACgAAAAAABgAAAAAAAgAAAAAAC + tiles: XgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADJQAAAAACJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAJQAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAABJQAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADJQAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAgQAAAAACFQAAAAAAgQAAAAADgQAAAAABgQAAAAAAgQAAAAABgQAAAAABgQAAAAABgQAAAAADgQAAAAAAgQAAAAABFQAAAAAAgQAAAAABgQAAAAAAXgAAAAAChAAAAAAAgQAAAAAAgQAAAAADgQAAAAADgQAAAAADgQAAAAADgQAAAAAAgQAAAAADgQAAAAACgQAAAAACgQAAAAABgQAAAAACgQAAAAABgQAAAAACgQAAAAADXgAAAAAChAAAAAAAgQAAAAAAgQAAAAAAgQAAAAACFQAAAAAFgQAAAAADgQAAAAAAgQAAAAADgQAAAAACgQAAAAACgQAAAAAChAAAAAAAhAAAAAAAEAAAAAAChAAAAAAAXgAAAAABhAAAAAAAgQAAAAACgQAAAAADgQAAAAAAgQAAAAABgQAAAAAAgQAAAAAAgQAAAAACgQAAAAADgQAAAAADgQAAAAABhAAAAAAAEAAAAAABEAAAAAABEAAAAAADXgAAAAABhAAAAAAAgQAAAAACgQAAAAADgQAAAAADgQAAAAAAgQAAAAAANAAAAAAANAAAAAAAgQAAAAADgQAAAAABgQAAAAABhAAAAAAAEAAAAAAAEAAAAAADEAAAAAADXgAAAAABhAAAAAAAgQAAAAADgQAAAAADgQAAAAACgQAAAAABgQAAAAAANAAAAAAANAAAAAAAgQAAAAACgQAAAAACgQAAAAADhAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAXgAAAAAChAAAAAAAFQAAAAAAgQAAAAADgQAAAAACgQAAAAAAgQAAAAAAgQAAAAADgQAAAAAAgQAAAAACgQAAAAAAgQAAAAAChAAAAAAAEAAAAAACEAAAAAADHwAAAAACXgAAAAADhAAAAAAAgQAAAAADgQAAAAABgQAAAAACgQAAAAAAgQAAAAABgQAAAAAAgQAAAAACgQAAAAAAgQAAAAABhAAAAAAAhAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACXgAAAAAAhAAAAAAAgQAAAAABggAAAAAAggAAAAACggAAAAAAggAAAAADggAAAAABggAAAAABgQAAAAAAgQAAAAAAgQAAAAABhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAgQAAAAAAggAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAACggAAAAAAFQAAAAAGgQAAAAACgQAAAAADgQAAAAACgQAAAAACFQAAAAAAgQAAAAABXgAAAAADhAAAAAAAgQAAAAADggAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAggAAAAADgQAAAAAAgQAAAAADgQAAAAADgQAAAAACgQAAAAABgQAAAAAAgQAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: XQAAAAAAXQAAAAADXQAAAAABgwAAAAAAcAAAAAAAHgAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAgwAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABJAAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAJAAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADJAAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACgwAAAAAAXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADJAAAAAABgwAAAAAAXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACgwAAAAAAXQAAAAABXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADJAAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADJAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABJAAAAAABXQAAAAAAXQAAAAAAXQAAAAAA + tiles: XgAAAAAAXgAAAAADXgAAAAABhAAAAAAAcQAAAAAAHwAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAcQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAAChAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAABhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAABJQAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAABhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAJQAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADJQAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAAChAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAADJQAAAAABhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAAChAAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAAChAAAAAAAXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADJQAAAAADXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAADJQAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAABJQAAAAABXgAAAAAAXgAAAAAAXgAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: XQAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABgwAAAAAAJAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACJAAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABgwAAAAAAJAAAAAADXQAAAAACJAAAAAAAXQAAAAADgwAAAAAAXQAAAAADXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAABXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAACXQAAAAADaQAAAAACgwAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACgwAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABgwAAAAAAXQAAAAACXQAAAAAAXQAAAAADaQAAAAACgwAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAACaQAAAAABgwAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACgwAAAAAAXQAAAAADXQAAAAABXQAAAAAAaQAAAAACgwAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADJAAAAAACXQAAAAACXQAAAAACXQAAAAACaQAAAAADgwAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADgwAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAJAAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABgwAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACJAAAAAADXQAAAAABXQAAAAACgwAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADgwAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAHgAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAgwAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADgwAAAAAAcAAAAAAAHgAAAAADgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAgwAAAAAAXQAAAAADXQAAAAAD + tiles: XgAAAAAAXgAAAAAAhAAAAAAAJQAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAABhAAAAAAAJQAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACJQAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABhAAAAAAAJQAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABhAAAAAAAJQAAAAADXgAAAAACJQAAAAAAXgAAAAADhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAADagAAAAAChAAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAChAAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABhAAAAAAAXgAAAAACXgAAAAAAXgAAAAADagAAAAAChAAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAACagAAAAABhAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAChAAAAAAAXgAAAAADXgAAAAABXgAAAAAAagAAAAAChAAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAADJQAAAAACXgAAAAACXgAAAAACXgAAAAACagAAAAADhAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADhAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAJQAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAABhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACJQAAAAADXgAAAAABXgAAAAAChAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADhAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAHwAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAADhAAAAAAAcQAAAAAAHwAAAAADhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAAAhAAAAAAAXgAAAAADXgAAAAAD version: 6 1,-2: ind: 1,-2 - tiles: XQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACJAAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAgwAAAAAAcwAAAAACcwAAAAAAcwAAAAABJAAAAAADgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAXQAAAAACgwAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHgAAAAADgwAAAAAAJAAAAAABcwAAAAADcwAAAAABcwAAAAAAJAAAAAAAcwAAAAACcwAAAAACcwAAAAABXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAABJAAAAAACcwAAAAACcwAAAAAAcwAAAAACXQAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAAAgwAAAAAAJAAAAAABcwAAAAABcwAAAAACcwAAAAABgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADXQAAAAABgwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAABgwAAAAAAgwAAAAAAJAAAAAADJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAADJAAAAAACcwAAAAABcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAADcwAAAAACXQAAAAABgwAAAAAAJAAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADJAAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAAAJAAAAAACgwAAAAAAgwAAAAAAcwAAAAABgwAAAAAAcwAAAAABgwAAAAAAgwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAACcwAAAAADXQAAAAADgwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACJAAAAAADgwAAAAAAJAAAAAADcwAAAAACcwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAABJAAAAAABgwAAAAAAgwAAAAAAcwAAAAACcwAAAAADgwAAAAAAJAAAAAABcwAAAAAAcwAAAAACcwAAAAADXQAAAAACgwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAABJAAAAAABgwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAACXQAAAAADgwAAAAAAJAAAAAABJAAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAACXQAAAAAAgwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAXQAAAAACgwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAABXQAAAAABgwAAAAAAJAAAAAAAJAAAAAADcwAAAAACJAAAAAAAJAAAAAABgwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAADcwAAAAAC + tiles: XgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACJQAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAhAAAAAAAdAAAAAACdAAAAAAAdAAAAAABJQAAAAADhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAXgAAAAAChAAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAADhAAAAAAAJQAAAAABdAAAAAADdAAAAAABdAAAAAAAJQAAAAAAdAAAAAACdAAAAAACdAAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAABJQAAAAACdAAAAAACdAAAAAAAdAAAAAACXgAAAAAAdAAAAAABdAAAAAABdAAAAAADdAAAAAADdAAAAAACdAAAAAAAhAAAAAAAJQAAAAABdAAAAAABdAAAAAACdAAAAAABhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAADXgAAAAABhAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAJQAAAAADJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAAAdAAAAAADJQAAAAACdAAAAAABdAAAAAABdAAAAAAAdAAAAAABdAAAAAAAdAAAAAACdAAAAAADdAAAAAACXgAAAAABhAAAAAAAJQAAAAABdAAAAAAAdAAAAAAAdAAAAAACdAAAAAADJQAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAADdAAAAAADdAAAAAACdAAAAAADdAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAdAAAAAABhAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAdAAAAAACdAAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAADdAAAAAACdAAAAAADXgAAAAADhAAAAAAAdAAAAAAAdAAAAAACdAAAAAAAdAAAAAACJQAAAAADhAAAAAAAJQAAAAADdAAAAAACdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAdAAAAAAAdAAAAAABdAAAAAADdAAAAAABJQAAAAABhAAAAAAAhAAAAAAAdAAAAAACdAAAAAADhAAAAAAAJQAAAAABdAAAAAAAdAAAAAACdAAAAAADXgAAAAAChAAAAAAAdAAAAAACdAAAAAAAdAAAAAADdAAAAAABJQAAAAABhAAAAAAAdAAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAACdAAAAAACdAAAAAADdAAAAAACXgAAAAADhAAAAAAAJQAAAAABJQAAAAACdAAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAABdAAAAAAAdAAAAAACdAAAAAACXgAAAAAAhAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAdAAAAAACdAAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAADdAAAAAABdAAAAAACdAAAAAADdAAAAAAAdAAAAAAAXgAAAAAChAAAAAAAdAAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAADdAAAAAADdAAAAAADdAAAAAABdAAAAAAAdAAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAABXgAAAAABhAAAAAAAJQAAAAAAJQAAAAADdAAAAAACJQAAAAAAJQAAAAABhAAAAAAAdAAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAABdAAAAAACdAAAAAADdAAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: XQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABJAAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABJAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABJAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAJAAAAAADgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAJAAAAAABJAAAAAABXQAAAAADXQAAAAACJAAAAAACJAAAAAACgwAAAAAAXQAAAAAAXQAAAAABHgAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAJAAAAAACJAAAAAADgwAAAAAAXQAAAAAAXQAAAAABHgAAAAADHgAAAAABgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHgAAAAADJAAAAAACgwAAAAAAggAAAAAAggAAAAAAgwAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABgwAAAAAAXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAJAAAAAACJAAAAAABHgAAAAABHgAAAAADgwAAAAAAggAAAAAAggAAAAAAgwAAAAAAJAAAAAABgAAAAAADgAAAAAAAgwAAAAAAJAAAAAABgwAAAAAAHgAAAAABgwAAAAAAXQAAAAABXQAAAAABJAAAAAADHgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAACgAAAAAACgAAAAAAAgwAAAAAAcwAAAAABgwAAAAAAHgAAAAADgwAAAAAAXQAAAAADXQAAAAADJAAAAAADHgAAAAADgwAAAAAAggAAAAAAggAAAAAAgwAAAAAAgAAAAAABgAAAAAADgAAAAAACMAAAAAAAcwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAXQAAAAACXQAAAAABJAAAAAAAHgAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAXQAAAAABXQAAAAACHgAAAAACHgAAAAADgwAAAAAAggAAAAAAgwAAAAAAJAAAAAACJAAAAAABgAAAAAACgAAAAAABJAAAAAACgAAAAAAAgAAAAAACFAAAAAAFgwAAAAAAXQAAAAACXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFAAAAAAEgAAAAAAAgAAAAAADgAAAAAAAJAAAAAADgAAAAAABgAAAAAACgAAAAAABgwAAAAAAXQAAAAADXQAAAAAAHgAAAAABMQAAAAABHgAAAAAAHgAAAAADHgAAAAABgAAAAAADJAAAAAACJAAAAAADJAAAAAABJAAAAAABgAAAAAABgAAAAAACgAAAAAADgwAAAAAAXQAAAAADXQAAAAAA + tiles: XgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABJQAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAABJQAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAABJQAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAJQAAAAADhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAAAJQAAAAABJQAAAAABXgAAAAADXgAAAAACJQAAAAACJQAAAAAChAAAAAAAXgAAAAAAXgAAAAABHwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAAAJQAAAAACJQAAAAADhAAAAAAAXgAAAAAAXgAAAAABHwAAAAADHwAAAAABhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAHwAAAAADJQAAAAAChAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAABhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAJQAAAAACJQAAAAABHwAAAAABHwAAAAADhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAJQAAAAABgQAAAAADgQAAAAAAhAAAAAAAJQAAAAABhAAAAAAAHwAAAAABhAAAAAAAXgAAAAABXgAAAAABJQAAAAADHwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAACgQAAAAACgQAAAAAAhAAAAAAAdAAAAAABhAAAAAAAHwAAAAADhAAAAAAAXgAAAAADXgAAAAADJQAAAAADHwAAAAADhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgQAAAAABgQAAAAADgQAAAAACMQAAAAAAdAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAXgAAAAACXgAAAAABJQAAAAAAHwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAXgAAAAABXgAAAAACHwAAAAACHwAAAAADhAAAAAAAgwAAAAAAhAAAAAAAJQAAAAACJQAAAAABgQAAAAACgQAAAAABJQAAAAACgQAAAAAAgQAAAAACFQAAAAAFhAAAAAAAXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAFQAAAAAEgQAAAAAAgQAAAAADgQAAAAAAJQAAAAADgQAAAAABgQAAAAACgQAAAAABhAAAAAAAXgAAAAADXgAAAAAAHwAAAAABUQAAAAAAHwAAAAAAHwAAAAADHwAAAAABgQAAAAADJQAAAAACJQAAAAADJQAAAAABJQAAAAABgQAAAAABgQAAAAACgQAAAAADhAAAAAAAXgAAAAADXgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: XQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAJAAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAJAAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAACJAAAAAABJAAAAAABgwAAAAAAJAAAAAABJAAAAAADJAAAAAADgwAAAAAAHgAAAAADgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAJAAAAAADHgAAAAADXQAAAAABWwAAAAADJAAAAAABXQAAAAACgAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAHgAAAAACgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAACHgAAAAACHgAAAAACXQAAAAACWwAAAAAHJAAAAAACgwAAAAAAgAAAAAACgAAAAAACgAAAAAADgQAAAAADHgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAADHgAAAAABHgAAAAAAXQAAAAABWwAAAAAHJAAAAAACgwAAAAAAJAAAAAACgAAAAAAAJAAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAggAAAAAAggAAAAAAgwAAAAAAHgAAAAADHgAAAAAAHgAAAAADXQAAAAADWwAAAAAMJAAAAAAAgwAAAAAAgwAAAAAAJAAAAAADgwAAAAAAgwAAAAAAJAAAAAACgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACXQAAAAACJAAAAAABJAAAAAABgwAAAAAAgAAAAAADgAAAAAADJAAAAAADHgAAAAABHgAAAAADJAAAAAADgwAAAAAAAAAAAAAAgwAAAAAAHgAAAAACHgAAAAACHgAAAAAAXQAAAAABgwAAAAAAJAAAAAABgwAAAAAAgAAAAAADgAAAAAAAJAAAAAADHgAAAAAAHgAAAAACJAAAAAADgwAAAAAAggAAAAAAgwAAAAAAHgAAAAACJAAAAAADJAAAAAAAJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAHgAAAAACJAAAAAAAJAAAAAADXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAABHgAAAAADgwAAAAAAggAAAAAAgwAAAAAAHgAAAAABJAAAAAACJAAAAAAAXQAAAAADgwAAAAAAgwAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAACHgAAAAACgwAAAAAAggAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAACXQAAAAACgwAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADXQAAAAACgwAAAAAAHgAAAAAAHgAAAAABHgAAAAACJAAAAAABJAAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAABHgAAAAAAMQAAAAAAHgAAAAAAMQAAAAAB + tiles: XgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAJQAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAJQAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAAAJQAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACJQAAAAABJQAAAAABhAAAAAAAJQAAAAABJQAAAAADJQAAAAADhAAAAAAAHwAAAAADhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAJQAAAAADHwAAAAADXgAAAAABNAAAAAAAJQAAAAABXgAAAAACgQAAAAACgQAAAAAAgQAAAAAAggAAAAAAHwAAAAAChAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAACHwAAAAACHwAAAAACXgAAAAACNAAAAAAAJQAAAAAChAAAAAAAgQAAAAACgQAAAAACgQAAAAADggAAAAADHwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAADHwAAAAABHwAAAAAAXgAAAAABNAAAAAAAJQAAAAAChAAAAAAAJQAAAAACgQAAAAAAJQAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAHwAAAAADHwAAAAAAHwAAAAADXgAAAAADNAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACXgAAAAACJQAAAAABJQAAAAABhAAAAAAAgQAAAAADgQAAAAADJQAAAAADHwAAAAABHwAAAAADJQAAAAADhAAAAAAAAAAAAAAAhAAAAAAAHwAAAAACHwAAAAACHwAAAAAAXgAAAAABhAAAAAAAJQAAAAABhAAAAAAAgQAAAAADgQAAAAAAJQAAAAADHwAAAAAAHwAAAAACJQAAAAADhAAAAAAAgwAAAAAAhAAAAAAAHwAAAAACJQAAAAADJQAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAHwAAAAACJQAAAAAAJQAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAABHwAAAAADhAAAAAAAgwAAAAAAhAAAAAAAHwAAAAABJQAAAAACJQAAAAAAXgAAAAADhAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAACHwAAAAAChAAAAAAAgwAAAAAAhAAAAAAAHwAAAAACHwAAAAADHwAAAAACXgAAAAAChAAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADXgAAAAAChAAAAAAAHwAAAAAAHwAAAAABHwAAAAACJQAAAAABJQAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAAAUQAAAAAAHwAAAAAAUQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: HgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAHgAAAAACgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABJAAAAAADXQAAAAAAXQAAAAADXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAACXQAAAAADgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAXQAAAAACgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAXQAAAAABgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAJAAAAAADJAAAAAAAJAAAAAACXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAXQAAAAABgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADJAAAAAABJAAAAAAAJAAAAAACXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABJAAAAAAAJAAAAAABJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAARAAAAAAAgwAAAAAARAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAARAAAAAAARAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: HwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAHwAAAAAChAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABJQAAAAADXgAAAAAAXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAACXgAAAAADhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAEwAAAAAAXgAAAAAChAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAEwAAAAAAXgAAAAABhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAJQAAAAADJQAAAAAAJQAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAEwAAAAAAXgAAAAABhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADJQAAAAABJQAAAAAAJQAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABJQAAAAAAJQAAAAABJQAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAARQAAAAAAhAAAAAAARQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAARQAAAAAARQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACJAAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADJAAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAJQAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACJQAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAACJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAADJQAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAXQAAAAACXQAAAAACAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAACXQAAAAAAgwAAAAAAXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADgwAAAAAAXQAAAAACXQAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAADJAAAAAABJAAAAAAAHgAAAAAAJAAAAAABgwAAAAAAXQAAAAACXQAAAAACggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADgwAAAAAAXQAAAAACXQAAAAABAAAAAAAAgwAAAAAAHgAAAAACHgAAAAABgwAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAADJAAAAAABJAAAAAACJAAAAAADHgAAAAABgwAAAAAAXQAAAAACXQAAAAAAggAAAAAAgwAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAXQAAAAABXQAAAAADAAAAAAAAgwAAAAAAHgAAAAACHgAAAAADgwAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAJAAAAAADJAAAAAABJAAAAAADHgAAAAAAgwAAAAAAXQAAAAACXQAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAgwAAAAAAXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAHgAAAAAAHgAAAAACHgAAAAABJAAAAAADJAAAAAABHgAAAAAAHgAAAAADHgAAAAACgwAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAXgAAAAACXgAAAAACAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAAAhAAAAAAAXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAADhAAAAAAAXgAAAAACXgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADJQAAAAABJQAAAAAAHwAAAAAAJQAAAAABhAAAAAAAXgAAAAACXgAAAAACgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADhAAAAAAAXgAAAAACXgAAAAABAAAAAAAAhAAAAAAAHwAAAAACHwAAAAABhAAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADJQAAAAABJQAAAAACJQAAAAADHwAAAAABhAAAAAAAXgAAAAACXgAAAAAAgwAAAAAAhAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAXgAAAAABXgAAAAADAAAAAAAAhAAAAAAAHwAAAAACHwAAAAADhAAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAJQAAAAADJQAAAAABJQAAAAADHwAAAAAAhAAAAAAAXgAAAAACXgAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAhAAAAAAAXgAAAAADXgAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAHwAAAAAAHwAAAAACHwAAAAABJQAAAAADJQAAAAABHwAAAAAAHwAAAAADHwAAAAAChAAAAAAAJQAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: XQAAAAADXQAAAAACgwAAAAAAJAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABJAAAAAADJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAADgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAADXQAAAAABJAAAAAAAgwAAAAAAJAAAAAABJAAAAAABJAAAAAACJAAAAAABJAAAAAADJAAAAAACgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAABgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAABJAAAAAABgwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAACJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAJAAAAAAAJAAAAAACJAAAAAACJAAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAADJAAAAAACgwAAAAAAXQAAAAABXQAAAAAAgwAAAAAAJAAAAAADJAAAAAACJAAAAAACJAAAAAABJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAADJAAAAAABgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAgQAAAAABgAAAAAADgAAAAAAAgAAAAAABgQAAAAADgwAAAAAAgwAAAAAAXQAAAAADXQAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgQAAAAAAgAAAAAACgAAAAAABgAAAAAAAgQAAAAACcAAAAAAAgwAAAAAAXQAAAAADXQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAHgAAAAADHgAAAAACgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAgwAAAAAAgwAAAAAASQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABgwAAAAAAgAAAAAACgAAAAAABgAAAAAABHgAAAAABgwAAAAAAHgAAAAADHgAAAAAA + tiles: XgAAAAADXgAAAAAChAAAAAAAJQAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABJQAAAAADJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADhAAAAAAAJQAAAAAAXgAAAAAAXgAAAAADXgAAAAABJQAAAAAAhAAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAABJQAAAAADJQAAAAAChAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABJQAAAAABhAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACJQAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADJQAAAAAChAAAAAAAXgAAAAABXgAAAAAAhAAAAAAAJQAAAAADJQAAAAACJQAAAAACJQAAAAABJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADJQAAAAABhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAhAAAAAAAggAAAAABgQAAAAADgQAAAAAAgQAAAAABggAAAAADhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAggAAAAAAgQAAAAACgQAAAAABgQAAAAAAggAAAAACcQAAAAAAhAAAAAAAXgAAAAADXgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADHwAAAAAChAAAAAAAhAAAAAAAJQAAAAAAXgAAAAAAhAAAAAAAhAAAAAAASgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABhAAAAAAAgQAAAAACgQAAAAABgQAAAAABHwAAAAABhAAAAAAAHwAAAAADHwAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAACJAAAAAAAJAAAAAAAcwAAAAAAcwAAAAADgwAAAAAAcwAAAAADcwAAAAABJAAAAAADgwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAACgwAAAAAAgwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAACgwAAAAAAcwAAAAAAcwAAAAADJAAAAAAAgwAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAACgwAAAAAAgwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAgwAAAAAAcwAAAAACHgAAAAAAHgAAAAAAHgAAAAADcAAAAAAAgwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAABcwAAAAABgwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAACHgAAAAACgwAAAAAAgwAAAAAAHgAAAAADgwAAAAAAcwAAAAADJAAAAAADJAAAAAACcwAAAAACcwAAAAAAgwAAAAAAcwAAAAACcwAAAAADcwAAAAACgwAAAAAAJAAAAAAAHgAAAAAAJAAAAAADHgAAAAAD + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACJQAAAAAAJQAAAAAAdAAAAAAAdAAAAAADhAAAAAAAdAAAAAADdAAAAAABJQAAAAADhAAAAAAAdAAAAAABdAAAAAADdAAAAAACdAAAAAAChAAAAAAAhAAAAAAAdAAAAAABdAAAAAAAdAAAAAACdAAAAAABdAAAAAAChAAAAAAAdAAAAAAAdAAAAAADJQAAAAAAhAAAAAAAdAAAAAACdAAAAAADdAAAAAADdAAAAAAChAAAAAAAhAAAAAAAdAAAAAACdAAAAAABdAAAAAABdAAAAAACdAAAAAACdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAhAAAAAAAdAAAAAACHwAAAAAAHwAAAAAAHwAAAAADcQAAAAAAhAAAAAAAdAAAAAACdAAAAAABdAAAAAABdAAAAAABdAAAAAABhAAAAAAAdAAAAAADdAAAAAAAdAAAAAABdAAAAAACdAAAAAACHwAAAAAChAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAdAAAAAADJQAAAAADJQAAAAACdAAAAAACdAAAAAAAhAAAAAAAdAAAAAACdAAAAAADdAAAAAAChAAAAAAAJQAAAAAAHwAAAAAAJQAAAAADHwAAAAAD version: 6 1,0: ind: 1,0 - tiles: gwAAAAAAgwAAAAAADwAAAAADgwAAAAAAgQAAAAAAgQAAAAADgQAAAAADgQAAAAADgQAAAAACHgAAAAABHgAAAAAAHgAAAAACgwAAAAAAgAAAAAACgAAAAAAAgAAAAAADcwAAAAADcwAAAAACcwAAAAABgwAAAAAAgwAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADwAAAAADgwAAAAAAgwAAAAAAJAAAAAACgAAAAAADFAAAAAABcwAAAAADgwAAAAAAcwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACgwAAAAAAJAAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAADgwAAAAAADwAAAAADDwAAAAAADwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAACcwAAAAADcwAAAAADgwAAAAAARQAAAAAARQAAAAAARQAAAAAAXQAAAAAADwAAAAABDwAAAAACDwAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAADcwAAAAADJAAAAAACgwAAAAAARQAAAAAARQAAAAAARQAAAAAAgwAAAAAADwAAAAADDwAAAAACDwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACcwAAAAACJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAABgwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAXQAAAAABXQAAAAACgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAABXQAAAAADXQAAAAABXQAAAAABgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAXQAAAAAAXQAAAAABgwAAAAAAXQAAAAACXQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAXQAAAAABXQAAAAACXQAAAAADgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAFQAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAgAAAAAACgAAAAAADgwAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgAAAAAABgAAAAAABgwAAAAAAXQAAAAACXQAAAAADJAAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + tiles: hAAAAAAAhAAAAAAAEAAAAAADhAAAAAAAggAAAAAAggAAAAADggAAAAADggAAAAADggAAAAACHwAAAAABHwAAAAAAHwAAAAAChAAAAAAAgQAAAAACgQAAAAAAgQAAAAADdAAAAAADdAAAAAACdAAAAAABhAAAAAAAhAAAAAAAGwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEAAAAAADhAAAAAAAhAAAAAAAJQAAAAACgQAAAAADFQAAAAABdAAAAAADhAAAAAAAdAAAAAAAhAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAhAAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAJQAAAAAAhAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAhAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAADhAAAAAAAEAAAAAADEAAAAAAAEAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAADdAAAAAADhAAAAAAARgAAAAAARgAAAAAARgAAAAAAXgAAAAAAEAAAAAABEAAAAAACEAAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAADdAAAAAADJQAAAAAChAAAAAAARgAAAAAARgAAAAAARgAAAAAAhAAAAAAAEAAAAAADEAAAAAACEAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACdAAAAAACJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAChAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAABXgAAAAAChAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAADhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABXgAAAAADXgAAAAABXgAAAAABhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAAAXgAAAAABhAAAAAAAXgAAAAACXgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAXgAAAAABXgAAAAACXgAAAAADhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAACgQAAAAADhAAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAAChAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAABgQAAAAABhAAAAAAAXgAAAAACXgAAAAADJQAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAADhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA version: 6 0,1: ind: 0,1 - tiles: XQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADJAAAAAABXQAAAAABXQAAAAABXQAAAAACgwAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABJAAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAJAAAAAAAXQAAAAACXQAAAAABXQAAAAADgwAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAABgwAAAAAAHgAAAAAAHgAAAAABHgAAAAABXQAAAAABXQAAAAABXQAAAAACgwAAAAAAJAAAAAACXQAAAAABJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADgAAAAAADgwAAAAAAHgAAAAACJAAAAAAAHgAAAAADXQAAAAADXQAAAAAAXQAAAAACgwAAAAAAJAAAAAACXQAAAAACJAAAAAABgwAAAAAAgAAAAAAAgAAAAAACgAAAAAABgAAAAAACgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAXQAAAAADHgAAAAACXQAAAAABgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgAAAAAACgAAAAAADgAAAAAABgAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAgwAAAAAAgAAAAAABgAAAAAADgAAAAAAAgAAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAgAAAAAAAgAAAAAACgAAAAAABgAAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADJAAAAAAAXQAAAAACJAAAAAADgwAAAAAAgAAAAAACFAAAAAACgAAAAAABgAAAAAABXQAAAAAAXQAAAAACHgAAAAACXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACJAAAAAADXQAAAAAAJAAAAAADXQAAAAABgwAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAC + tiles: XgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAADJQAAAAABXgAAAAABXgAAAAABXgAAAAAChAAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABJQAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAJQAAAAAAXgAAAAACXgAAAAABXgAAAAADhAAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABhAAAAAAAHwAAAAAAHwAAAAABHwAAAAABXgAAAAABXgAAAAABXgAAAAAChAAAAAAAJQAAAAACXgAAAAABJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADgQAAAAADhAAAAAAAHwAAAAACJQAAAAAAHwAAAAADXgAAAAADXgAAAAAAXgAAAAAChAAAAAAAJQAAAAACXgAAAAACJQAAAAABhAAAAAAAgQAAAAAAgQAAAAACgQAAAAABgQAAAAAChAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAXgAAAAADHwAAAAACXgAAAAABhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAgQAAAAACgQAAAAADgQAAAAABgQAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAhAAAAAAAgQAAAAABgQAAAAADgQAAAAAAgQAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAAAgQAAAAAAgQAAAAACgQAAAAABgQAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADJQAAAAAAXgAAAAACJQAAAAADhAAAAAAAgQAAAAACFQAAAAACgQAAAAABgQAAAAABXgAAAAAAXgAAAAACHwAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACJQAAAAADXgAAAAAAJQAAAAADXgAAAAABhAAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAAC version: 6 -1,1: ind: -1,1 - tiles: gwAAAAAAgAAAAAACgAAAAAABgAAAAAADgAAAAAABgAAAAAABgwAAAAAAgAAAAAABgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAABgwAAAAAAXQAAAAABXQAAAAABgwAAAAAAgAAAAAADgAAAAAACgAAAAAADgAAAAAAAgAAAAAAAgwAAAAAAgAAAAAACgAAAAAABgAAAAAACgAAAAAADFAAAAAAFgAAAAAAAgwAAAAAAXQAAAAABXQAAAAADgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACgwAAAAAAgwAAAAAAJAAAAAABJAAAAAAAJAAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADJAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADgwAAAAAAHgAAAAACHgAAAAAAJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAAAHgAAAAABJAAAAAACgwAAAAAAXQAAAAAAXQAAAAACXQAAAAABHgAAAAADXQAAAAABXQAAAAADXQAAAAADgwAAAAAAXQAAAAADXQAAAAAAXQAAAAACgwAAAAAAHgAAAAADHgAAAAADJAAAAAAAgwAAAAAAXQAAAAAAXQAAAAABXQAAAAABHgAAAAAAXQAAAAAAXQAAAAADXQAAAAACgwAAAAAAXQAAAAAAXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAcwAAAAADgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAAAgwAAAAAAcwAAAAADcwAAAAADcwAAAAACgwAAAAAAXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAgwAAAAAAcwAAAAACcwAAAAAAcwAAAAACgwAAAAAAXQAAAAADXQAAAAACgwAAAAAAgAAAAAACgAAAAAAAgwAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAADgwAAAAAAcwAAAAADcwAAAAADJAAAAAABgwAAAAAAXQAAAAABXQAAAAAAgwAAAAAAgAAAAAACgAAAAAABXQAAAAAB + tiles: hAAAAAAAgQAAAAACgQAAAAABgQAAAAADgQAAAAABgQAAAAABhAAAAAAAgQAAAAABgQAAAAADgQAAAAADgQAAAAAAgQAAAAAAgQAAAAABhAAAAAAAXgAAAAABXgAAAAABhAAAAAAAgQAAAAADgQAAAAACgQAAAAADgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAACgQAAAAABgQAAAAACgQAAAAADFQAAAAAFgQAAAAAAhAAAAAAAXgAAAAABXgAAAAADhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAJQAAAAABJQAAAAAAJQAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAADJQAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADhAAAAAAAHwAAAAACHwAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAAAHwAAAAABJQAAAAAChAAAAAAAXgAAAAAAXgAAAAACXgAAAAABHwAAAAADXgAAAAABXgAAAAADXgAAAAADhAAAAAAAXgAAAAADXgAAAAAAXgAAAAAChAAAAAAAHwAAAAADHwAAAAADJQAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABHwAAAAAAXgAAAAAAXgAAAAADXgAAAAAChAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAAChAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAhAAAAAAAdAAAAAACdAAAAAAAdAAAAAAChAAAAAAAXgAAAAADXgAAAAAChAAAAAAAgQAAAAACgQAAAAAAhAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAADhAAAAAAAdAAAAAADdAAAAAADJQAAAAABhAAAAAAAXgAAAAABXgAAAAAAhAAAAAAAgQAAAAACgQAAAAABXgAAAAAB version: 6 1,1: ind: 1,1 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAVAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACMAAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABMAAAAAAAJAAAAAABgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABMAAAAAAAJAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAACgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACHgAAAAABgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAADgAAAAAAAgAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAADgAAAAAABgAAAAAADgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgAAAAAAAFAAAAAACgAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgAAAAAACgAAAAAADHgAAAAACgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgAAAAAAAgAAAAAABHgAAAAADgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAXQAAAAACXQAAAAABXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAMQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACMQAAAAAAJQAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABMQAAAAAAJQAAAAABhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABMQAAAAAAJQAAAAADhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAAChAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAABhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAADgQAAAAAAgQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAADgQAAAAABgQAAAAADhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgQAAAAAAFQAAAAACgQAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgQAAAAACgQAAAAADHwAAAAAChAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgQAAAAAAgQAAAAABHwAAAAADhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXgAAAAACXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: HgAAAAABHgAAAAADHgAAAAABHgAAAAAAJAAAAAADgwAAAAAAJAAAAAACcwAAAAACJAAAAAADgwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAgAAAAAADgAAAAAADgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADJAAAAAADgwAAAAAAJAAAAAADJAAAAAADgwAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADgwAAAAAAXQAAAAADXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADgwAAAAAAJAAAAAADHgAAAAACJAAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABgwAAAAAAHgAAAAADHgAAAAABHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAgwAAAAAAJAAAAAADHgAAAAACJAAAAAADAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAHgAAAAAAHgAAAAACHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAJAAAAAADHgAAAAABJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAAAHgAAAAADJAAAAAACgwAAAAAAXQAAAAADXQAAAAAAXQAAAAADgwAAAAAAJAAAAAABHgAAAAAAJAAAAAABgAAAAAADgAAAAAABgAAAAAAAgwAAAAAAHgAAAAADHgAAAAABHgAAAAACJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAAAgAAAAAAAgwAAAAAAHgAAAAAAHgAAAAABHgAAAAADJAAAAAACgwAAAAAAXQAAAAADXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAADgAAAAAADgAAAAAADgwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAACgwAAAAAAggAAAAAAggAAAAAAggAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAACgAAAAAACgAAAAAABgAAAAAADgwAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAgwAAAAAAMwAAAAAAHgAAAAAAMwAAAAAA + tiles: HwAAAAABHwAAAAADHwAAAAABHwAAAAAAJQAAAAADhAAAAAAAJQAAAAACdAAAAAACJQAAAAADhAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAgQAAAAADgQAAAAADhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADJQAAAAADhAAAAAAAJQAAAAADJQAAAAADhAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAJQAAAAADHwAAAAACJQAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAABhAAAAAAAHwAAAAADHwAAAAABHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAAhAAAAAAAJQAAAAADHwAAAAACJQAAAAADAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAJQAAAAADHwAAAAABJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAAAHwAAAAADJQAAAAAChAAAAAAAXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAJQAAAAABHwAAAAAAJQAAAAABgQAAAAADgQAAAAABgQAAAAAAhAAAAAAAHwAAAAADHwAAAAABHwAAAAACJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAAAgQAAAAAAhAAAAAAAHwAAAAAAHwAAAAABHwAAAAADJQAAAAAChAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADgQAAAAADgQAAAAADhAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAChAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAACgQAAAAACgQAAAAABgQAAAAADhAAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAhAAAAAAANAAAAAAAHwAAAAAANAAAAAAA version: 6 0,2: ind: 0,2 - tiles: XQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADgwAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADJAAAAAABXQAAAAADXQAAAAACXQAAAAADJAAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACgwAAAAAAJAAAAAABJAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACJAAAAAADXQAAAAACXQAAAAADXQAAAAACgwAAAAAAJAAAAAABJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAAAHgAAAAABXQAAAAAAJAAAAAAAXQAAAAABXQAAAAAAXQAAAAACJAAAAAACHgAAAAACHgAAAAABJAAAAAADJAAAAAABgwAAAAAAJAAAAAAAJAAAAAACHgAAAAABHgAAAAADgwAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAXQAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAJAAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAACXQAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADJAAAAAABgwAAAAAAgAAAAAABgAAAAAAAgAAAAAAAgAAAAAADJAAAAAAAHgAAAAADJAAAAAACJAAAAAAAJAAAAAADgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADJAAAAAAAgwAAAAAAFAAAAAAEgAAAAAADgAAAAAAAgAAAAAABJAAAAAADHgAAAAADJAAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAJAAAAAADHgAAAAAAJAAAAAADHgAAAAABJAAAAAAAgwAAAAAAgAAAAAACgAAAAAABgAAAAAABHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABHgAAAAADJAAAAAACHgAAAAACJAAAAAADgwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACHgAAAAABJAAAAAACHgAAAAAAJAAAAAACgwAAAAAAgAAAAAAAgAAAAAAAFAAAAAAEHgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAHgAAAAADHgAAAAACMwAAAAAAHgAAAAABMwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAA + tiles: XgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADhAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAADJQAAAAABXgAAAAADXgAAAAACXgAAAAADJQAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAAChAAAAAAAJQAAAAABJQAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAACJQAAAAADXgAAAAACXgAAAAADXgAAAAAChAAAAAAAJQAAAAABJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAAAHwAAAAABXgAAAAAAJQAAAAAAXgAAAAABXgAAAAAAXgAAAAACJQAAAAACHwAAAAACHwAAAAABJQAAAAADJQAAAAABhAAAAAAAJQAAAAAAJQAAAAACHwAAAAABHwAAAAADhAAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAXgAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAJQAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACXgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADJQAAAAABhAAAAAAAgQAAAAABgQAAAAAAgQAAAAAAgQAAAAADJQAAAAAAHwAAAAADJQAAAAACJQAAAAAAJQAAAAADhAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADJQAAAAAAhAAAAAAAFQAAAAAEgQAAAAADgQAAAAAAgQAAAAABJQAAAAADHwAAAAADJQAAAAAAJQAAAAAAJQAAAAAAhAAAAAAAJQAAAAADHwAAAAAAJQAAAAADHwAAAAABJQAAAAAAhAAAAAAAgQAAAAACgQAAAAABgQAAAAABHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABHwAAAAADJQAAAAACHwAAAAACJQAAAAADhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACHwAAAAABJQAAAAACHwAAAAAAJQAAAAAChAAAAAAAgQAAAAAAgQAAAAAAFQAAAAAEHwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHwAAAAADHwAAAAACNAAAAAAAHwAAAAABNAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: JAAAAAACXQAAAAACXQAAAAAAXQAAAAABgwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADJAAAAAABgwAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAJAAAAAABXQAAAAADXQAAAAABXQAAAAACVAAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADJAAAAAACgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAXQAAAAABXQAAAAAAJAAAAAAAgwAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADJAAAAAADHgAAAAABgwAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAABgwAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAFAAAAAAAgwAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAADgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAgwAAAAAAXQAAAAADXQAAAAAAXQAAAAABgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAJAAAAAACXQAAAAAAXQAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAXQAAAAACXQAAAAABJAAAAAACgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAABXQAAAAACXQAAAAABgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAABJAAAAAAAXQAAAAADgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: JQAAAAACXgAAAAACXgAAAAAAXgAAAAABhAAAAAAAJQAAAAAAJQAAAAAAXgAAAAAAXgAAAAADJQAAAAABhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAJQAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADJQAAAAAChAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAXgAAAAABXgAAAAAAJQAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAADJQAAAAADHwAAAAABhAAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAABhAAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAChAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAFQAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAADhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAABhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAChAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAJQAAAAACXgAAAAAAXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAACXgAAAAABJQAAAAAChAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAABhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABJQAAAAAAXgAAAAADhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAA + tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAA version: 6 2,0: ind: 2,0 - tiles: gQAAAAAAgQAAAAAAgwAAAAAAJAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAJAAAAAADJAAAAAAAgwAAAAAAPgAAAAAAPgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAPgAAAAAAgQAAAAACgQAAAAADgwAAAAAAgwAAAAAAHgAAAAACgwAAAAAAVAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAJAAAAAACXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAJAAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAXQAAAAABXQAAAAADXQAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAA + tiles: ggAAAAAAggAAAAAAhAAAAAAAJQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAJQAAAAADJQAAAAAAhAAAAAAAPwAAAAAAPwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAPwAAAAAAggAAAAACggAAAAADhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAVQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAJQAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAJQAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAABXgAAAAADXgAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: gwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAXQAAAAACXQAAAAADgwAAAAAAcAAAAAAAgwAAAAAAgAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADgAAAAAAAgAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACgwAAAAAAgAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACgAAAAAABgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAACJAAAAAACJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAADXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAABHgAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAA + tiles: hAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAACXgAAAAADhAAAAAAAcQAAAAAAhAAAAAAAgQAAAAADhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAADgQAAAAAAgQAAAAADhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAChAAAAAAAgQAAAAADhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACgQAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAACJQAAAAACJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAADXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAABHwAAAAAChAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAAChAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAADJAAAAAACJAAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAADJAAAAAACJAAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAMAAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAMAAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAMAAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAADJQAAAAACJQAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAADJQAAAAACJQAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAMQAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAMQAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAMQAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAA version: 6 0,3: ind: 0,3 - tiles: HgAAAAAAHgAAAAABMwAAAAAAHgAAAAABMwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAAAHwAAAAABNAAAAAAAHwAAAAABNAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAABhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: gwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABgwAAAAAAggAAAAAAgwAAAAAAXQAAAAADHgAAAAACgwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACgwAAAAAAAAAAAAAAgwAAAAAAXQAAAAABEgAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAXQAAAAABEgAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAXQAAAAACEgAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAgwAAAAAA + tiles: hAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAABhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAABhAAAAAAAgwAAAAAAhAAAAAAAXgAAAAADHwAAAAAChAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAAChAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABEwAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAXgAAAAABEwAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACEwAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: bwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAACgwAAAAAAgAAAAAADgAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgwAAAAAAgAAAAAACgAAAAAAAgwAAAAAAgwAAAAAAgAAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAADgwAAAAAAgAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgwAAAAAAgAAAAAABgwAAAAAAgAAAAAADgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgAAAAAAAgwAAAAAAgAAAAAABgwAAAAAAgwAAAAAAgAAAAAAAgAAAAAADgwAAAAAAgAAAAAACgwAAAAAAgwAAAAAAgAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAACgAAAAAABgwAAAAAAgAAAAAADgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAAChAAAAAAAgQAAAAADgQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABhAAAAAAAgQAAAAACgQAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAADhAAAAAAAgQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABhAAAAAAAgQAAAAABhAAAAAAAgQAAAAADhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAgQAAAAABhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAADhAAAAAAAgQAAAAAChAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAACgQAAAAABhAAAAAAAgQAAAAADhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAACgQAAAAAChAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: ggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAggAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAA + tiles: gwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAA version: 6 -4,0: ind: -4,0 - tiles: XQAAAAADJAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAXQAAAAAAgwAAAAAAXQAAAAADXQAAAAABJAAAAAABXQAAAAACJAAAAAACXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAXQAAAAABgwAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAbwAAAAAAXQAAAAADgwAAAAAAJAAAAAAAJAAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAA + tiles: XgAAAAADJQAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAhAAAAAAAXgAAAAAAJQAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAXgAAAAAAhAAAAAAAXgAAAAADXgAAAAABJQAAAAABXgAAAAACJQAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAABhAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAADhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAADhAAAAAAAJQAAAAAAJQAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACgwAAAAAAXQAAAAACXQAAAAAAXQAAAAADaQAAAAACaQAAAAACaQAAAAACaQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABgwAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAXQAAAAADXQAAAAACXQAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAABXQAAAAADXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAABXQAAAAACXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAXgAAAAACXgAAAAAAXgAAAAADagAAAAACagAAAAACagAAAAACagAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAABhAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAAAhAAAAAAA version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAACXQAAAAABXQAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAaQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAaQAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADgwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABgwAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACgwAAAAAAXQAAAAAAXQAAAAACXQAAAAAAaQAAAAAAaQAAAAACaQAAAAABaQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAXQAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAagAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAagAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAABhAAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAChAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAagAAAAAAagAAAAACagAAAAABagAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: XQAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACXQAAAAADgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADXQAAAAACgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgwAAAAAAXQAAAAABgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgwAAAAAAXQAAAAABJAAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABgwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgwAAAAAAXQAAAAABJAAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACgwAAAAAAXQAAAAABXQAAAAACXQAAAAADgwAAAAAAXQAAAAACgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAHgAAAAAAXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAHgAAAAAAXQAAAAADXQAAAAADJAAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAHgAAAAABXQAAAAADXQAAAAADJAAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAHgAAAAACXQAAAAADXQAAAAABJAAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAC + tiles: XgAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACXgAAAAADhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADXgAAAAAChAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAhAAAAAAAXgAAAAABhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAhAAAAAAAXgAAAAABJQAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABhAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAhAAAAAAAXgAAAAABJQAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAChAAAAAAAXgAAAAABXgAAAAACXgAAAAADhAAAAAAAXgAAAAAChAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAHwAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAHwAAAAAAXgAAAAADXgAAAAADJQAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAChAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAHwAAAAABXgAAAAADXgAAAAADJQAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAAChAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAHwAAAAACXgAAAAADXgAAAAABJQAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAAC version: 6 -3,-1: ind: -3,-1 - tiles: gwAAAAAAcwAAAAACcwAAAAABgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADcwAAAAAAcwAAAAABcwAAAAADgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAcwAAAAABcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAADHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADcwAAAAABcwAAAAABcwAAAAAAgwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgwAAAAAAXQAAAAADXQAAAAADXQAAAAACHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAcwAAAAACcwAAAAABgwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgwAAAAAAXQAAAAAAXQAAAAACXQAAAAADHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACcwAAAAACcwAAAAACcwAAAAADgwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAACHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAcwAAAAADgwAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABHgAAAAADgwAAAAAAXQAAAAADXQAAAAACXQAAAAADHgAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABHgAAAAADgwAAAAAAXQAAAAABXQAAAAABXQAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAABgwAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABJAAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACJAAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADJAAAAAADXQAAAAABXQAAAAADXQAAAAAC + tiles: hAAAAAAAdAAAAAACdAAAAAABhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADdAAAAAAAdAAAAAABdAAAAAADhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAdAAAAAABdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAADHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADdAAAAAABdAAAAAABdAAAAAAAhAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAACHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAdAAAAAACdAAAAAABhAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAADHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACdAAAAAACdAAAAAACdAAAAAADhAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAACHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAdAAAAAADhAAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAABHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAADHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAABHwAAAAADhAAAAAAAXgAAAAADXgAAAAACXgAAAAADHwAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAABHwAAAAADhAAAAAAAXgAAAAABXgAAAAABXgAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABhAAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAABJQAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACJQAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAADJQAAAAADXgAAAAABXgAAAAADXgAAAAAC version: 6 3,0: ind: 3,0 - tiles: PgAAAAAAPgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAADgAAAAAAAgAAAAAABgAAAAAACgAAAAAACgwAAAAAAHgAAAAADHgAAAAADHgAAAAADQgAAAAAAPgAAAAAAPgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAADgAAAAAADgAAAAAACgAAAAAADgAAAAAACgAAAAAAAgwAAAAAAHgAAAAADHgAAAAADgwAAAAAAQgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAACgAAAAAAAgAAAAAACgAAAAAACgAAAAAAAgAAAAAABgwAAAAAAHgAAAAADHgAAAAADgwAAAAAAQgAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAAAgAAAAAABgAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAQgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAVgAAAAAAVgAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAVgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAcwAAAAADXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: PwAAAAAAPwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAADgQAAAAAAgQAAAAABgQAAAAACgQAAAAAChAAAAAAAHwAAAAADHwAAAAADHwAAAAADQwAAAAAAPwAAAAAAPwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADgQAAAAADgQAAAAACgQAAAAADgQAAAAACgQAAAAAAhAAAAAAAHwAAAAADHwAAAAADhAAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAAAgQAAAAACgQAAAAACgQAAAAAAgQAAAAABhAAAAAAAHwAAAAADHwAAAAADhAAAAAAAQwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAABgQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAVwAAAAAAVwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAVwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAdAAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: gwAAAAAAJAAAAAAAJAAAAAADJAAAAAABgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAJAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADJAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABJAAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAACgwAAAAAAXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAHgAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJAAAAAABJAAAAAABgwAAAAAAPgAAAAAAXQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAgwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgwAAAAAAJAAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACgAAAAAAAQAAAAAAAQAAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAACQAAAAAAAQAAAAAAAgwAAAAAAJAAAAAACXQAAAAABXQAAAAAAPgAAAAAAPgAAAAAAXQAAAAABgwAAAAAAQAAAAAAAQAAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAQAAAAAAAQAAAAAAAHgAAAAABPgAAAAAAXQAAAAADXQAAAAACHgAAAAADHgAAAAACXQAAAAAAHgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHgAAAAABPgAAAAAAXQAAAAADXQAAAAADHgAAAAADHgAAAAABXQAAAAADgwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJAAAAAABJAAAAAABJAAAAAABJAAAAAAAgwAAAAAAJAAAAAABXQAAAAABXQAAAAABPgAAAAAAPgAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAJAAAAAAAgwAAAAAAPgAAAAAAPgAAAAAAJAAAAAABJAAAAAADJAAAAAAAJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgQAAAAAAgQAAAAAAgwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgwAAAAAAJAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + tiles: hAAAAAAAJQAAAAAAJQAAAAADJQAAAAABhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAJQAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAADJQAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAABJQAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAChAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAHwAAAAABQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAJQAAAAABJQAAAAABhAAAAAAAPwAAAAAAXgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAhAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAhAAAAAAAJQAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACgQAAAAAAQQAAAAAAQQAAAAAAdAAAAAADdAAAAAADdAAAAAAAdAAAAAACQQAAAAAAQQAAAAAAhAAAAAAAJQAAAAACXgAAAAABXgAAAAAAPwAAAAAAPwAAAAAAXgAAAAABhAAAAAAAQQAAAAAAQQAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAAAQQAAAAAAQQAAAAAAHwAAAAABPwAAAAAAXgAAAAADXgAAAAACHwAAAAADHwAAAAACXgAAAAAAHwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHwAAAAABPwAAAAAAXgAAAAADXgAAAAADHwAAAAADHwAAAAABXgAAAAADhAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAAAhAAAAAAAJQAAAAABXgAAAAABXgAAAAABPwAAAAAAPwAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAJQAAAAAAhAAAAAAAPwAAAAAAPwAAAAAAJQAAAAABJQAAAAADJQAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAggAAAAAAggAAAAAAhAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAhAAAAAAAJQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAA version: 6 3,1: ind: 3,1 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAALQAAAAAAgwAAAAAALQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAALQAAAAAALQAAAAAALQAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAALQAAAAAALQAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAALQAAAAAALQAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAALgAAAAAAhAAAAAAALgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAALgAAAAAALgAAAAAALgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAALgAAAAAALgAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAALgAAAAAALgAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,1: ind: 4,1 - tiles: HgAAAAABgwAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADQgAAAAAAgwAAAAAAQgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAACgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAABgwAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAABgwAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAABhAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADQwAAAAAAhAAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: QgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAACCQAAAAAACQAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAACCQAAAAAACQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAAACQAAAAAACQAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAZAAAAAAAgwAAAAAAZAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: QwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACCgAAAAAACgAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAACgAAAAAACgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAACCgAAAAAACgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAACgAAAAAACgAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAChAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAZQAAAAAAhAAAAAAAZQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 5,0: ind: 5,0 - tiles: ggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAABHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABJAAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACJAAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAABJAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADgwAAAAAAXQAAAAABXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAABgwAAAAAAgAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAACgAAAAAABgAAAAAADgAAAAAACgAAAAAABPgAAAAAAPgAAAAAAgwAAAAAAXQAAAAAAXQAAAAABXQAAAAAAgAAAAAAAgAAAAAABgAAAAAAAgAAAAAACgAAAAAACgAAAAAABgAAAAAADgAAAAAABgAAAAAABgAAAAAADXQAAAAAAJAAAAAADgwAAAAAAXQAAAAADXQAAAAACXQAAAAADgAAAAAADgAAAAAACgAAAAAADgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAAAXQAAAAACJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAAAgAAAAAABgAAAAAADgAAAAAACgAAAAAAAgAAAAAACgAAAAAABgAAAAAAAgAAAAAAAXQAAAAAAJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAACgAAAAAADgAAAAAAAgAAAAAAAgAAAAAABgAAAAAADgAAAAAADgAAAAAAAgAAAAAABgAAAAAACgAAAAAADXQAAAAACJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAACgAAAAAACgAAAAAABgAAAAAAAgAAAAAACgAAAAAADXQAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAAAgAAAAAADgAAAAAABgAAAAAAAgAAAAAAAgAAAAAACgAAAAAADgwAAAAAAgwAAAAAAgAAAAAAAgwAAAAAAXQAAAAADJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAABgAAAAAADgAAAAAABgAAAAAADgAAAAAAAgAAAAAAAgwAAAAAAgAAAAAAAgAAAAAABgAAAAAABPgAAAAAAPgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAAAgAAAAAADgAAAAAAAgAAAAAABgAAAAAAAgAAAAAAAgAAAAAACgwAAAAAAgAAAAAABgAAAAAABgAAAAAACPgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAADgAAAAAABgAAAAAADgAAAAAACgAAAAAACgAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAPgAAAAAAPgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgwAAAAAAHgAAAAACHgAAAAACgwAAAAAAQgAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAABHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAABJQAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAADXgAAAAACJQAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAABJQAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADhAAAAAAAXgAAAAABXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAABhAAAAAAAgQAAAAABgQAAAAABgQAAAAAAgQAAAAAAgQAAAAACgQAAAAABgQAAAAADgQAAAAACgQAAAAABPwAAAAAAPwAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAgQAAAAAAgQAAAAABgQAAAAAAgQAAAAACgQAAAAACgQAAAAABgQAAAAADgQAAAAABgQAAAAABgQAAAAADXgAAAAAAJQAAAAADhAAAAAAAXgAAAAADXgAAAAACXgAAAAADgQAAAAADgQAAAAACgQAAAAADgQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAACgQAAAAACgQAAAAAAXgAAAAACJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAABgQAAAAADgQAAAAACgQAAAAAAgQAAAAACgQAAAAABgQAAAAAAgQAAAAAAXgAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAADgQAAAAAAgQAAAAAAgQAAAAABgQAAAAADgQAAAAADgQAAAAAAgQAAAAABgQAAAAACgQAAAAADXgAAAAACJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADgQAAAAACgQAAAAACgQAAAAACgQAAAAADgQAAAAACgQAAAAACgQAAAAABgQAAAAAAgQAAAAACgQAAAAADXgAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAADgQAAAAABgQAAAAAAgQAAAAAAgQAAAAACgQAAAAADhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAXgAAAAADJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAABgQAAAAADgQAAAAABgQAAAAADgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAABgQAAAAABPwAAAAAAPwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAADgQAAAAAAgQAAAAABgQAAAAAAgQAAAAAAgQAAAAAChAAAAAAAgQAAAAABgQAAAAABgQAAAAACPwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADgQAAAAABgQAAAAADgQAAAAACgQAAAAACgQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAPwAAAAAAPwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAADgQAAAAADhAAAAAAAHwAAAAACHwAAAAAChAAAAAAAQwAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAaQAAAAABaQAAAAACaQAAAAAAaQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAagAAAAABagAAAAACagAAAAAAagAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAB version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABgwAAAAAAXQAAAAAAXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACgwAAAAAAgAAAAAADgAAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAgwAAAAAAgAAAAAACgAAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAaQAAAAAAaQAAAAABaQAAAAAAaQAAAAADaQAAAAACXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAACcwAAAAADcwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAABhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAChAAAAAAAgQAAAAADgQAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAAAhAAAAAAAgQAAAAACgQAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAADagAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAADdAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAD version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgAAAAAACFAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgAAAAAADFAAAAAABgAAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAFAAAAAADgAAAAAACgAAAAAABFAAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAFAAAAAABgAAAAAADgwAAAAAAgwAAAAAAFAAAAAAFgwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgQAAAAACFQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAgQAAAAADFQAAAAABgQAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAFQAAAAADgQAAAAACgQAAAAABFQAAAAAGhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAFQAAAAABgQAAAAADhAAAAAAAhAAAAAAAFQAAAAAFhAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACRAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAADhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAChAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAADhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACRQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAChAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: gwAAAAAAgwAAAAAAJAAAAAACJAAAAAACUQAAAAAAUQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACJAAAAAAAXQAAAAADXQAAAAACXQAAAAACgwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABJAAAAAADXQAAAAACXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAACJAAAAAABJAAAAAACgwAAAAAAJAAAAAACJAAAAAAAJAAAAAAAJAAAAAADJAAAAAABJAAAAAAAgwAAAAAAJAAAAAABJAAAAAAAJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAHgAAAAAAHgAAAAABEgAAAAAAHgAAAAAAHgAAAAADEgAAAAAAgwAAAAAAHgAAAAACXQAAAAAAXQAAAAADXQAAAAABgwAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADHgAAAAABHgAAAAADEgAAAAAAHgAAAAADHgAAAAACEgAAAAAAgwAAAAAAHgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADHgAAAAAAHgAAAAACEgAAAAAAHgAAAAADHgAAAAACHgAAAAACgwAAAAAAHgAAAAACXQAAAAACXQAAAAAAXQAAAAABgwAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABHgAAAAABEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABXQAAAAABXQAAAAABXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAABHgAAAAACEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABJAAAAAAAHgAAAAAAHgAAAAABEgAAAAAAHgAAAAAAHgAAAAABHgAAAAADgwAAAAAAHgAAAAABXQAAAAABXQAAAAACXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAABHgAAAAABHgAAAAACEgAAAAAAHgAAAAACHgAAAAACEgAAAAAAgwAAAAAAHgAAAAADXQAAAAABXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAHgAAAAADHgAAAAAAEgAAAAAAHgAAAAACHgAAAAABEgAAAAAAgwAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAB + tiles: hAAAAAAAhAAAAAAAJQAAAAACJQAAAAACUgAAAAAAUgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACJQAAAAAAXgAAAAADXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABJQAAAAADXgAAAAACXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAJQAAAAACJQAAAAABJQAAAAAChAAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAAAhAAAAAAAJQAAAAABJQAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAAAHwAAAAAAHwAAAAABEwAAAAAAHwAAAAAAHwAAAAADEwAAAAAAhAAAAAAAHwAAAAACXgAAAAAAXgAAAAADXgAAAAABhAAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAADHwAAAAABHwAAAAADEwAAAAAAHwAAAAADHwAAAAACEwAAAAAAhAAAAAAAHwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADHwAAAAAAHwAAAAACEwAAAAAAHwAAAAADHwAAAAACHwAAAAAChAAAAAAAHwAAAAACXgAAAAACXgAAAAAAXgAAAAABhAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABHwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABXgAAAAABXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABHwAAAAACEwAAAAAAEwAAAAAAEwAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABJQAAAAAAHwAAAAAAHwAAAAABEwAAAAAAHwAAAAAAHwAAAAABHwAAAAADhAAAAAAAHwAAAAABXgAAAAABXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABHwAAAAABHwAAAAACEwAAAAAAHwAAAAACHwAAAAACEwAAAAAAhAAAAAAAHwAAAAADXgAAAAABXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAHwAAAAADHwAAAAAAEwAAAAAAHwAAAAACHwAAAAABEwAAAAAAhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAB version: 6 0,-4: ind: 0,-4 - tiles: gwAAAAAAJAAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADHgAAAAACHgAAAAADHgAAAAABHgAAAAACgwAAAAAAXQAAAAABXQAAAAACXQAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAJAAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAACgwAAAAAAXQAAAAAAXQAAAAADJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAADgwAAAAAAXQAAAAADXQAAAAADJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAABHgAAAAABJAAAAAABJAAAAAACgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAABgwAAAAAAXQAAAAABJAAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADgwAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAXQAAAAABXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAJAAAAAACXQAAAAACXQAAAAABXQAAAAADgwAAAAAAJAAAAAABXQAAAAABJAAAAAADgwAAAAAAJAAAAAADJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAJAAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACgwAAAAAAXQAAAAAAXQAAAAABJAAAAAABgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABgwAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACJAAAAAAAgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAJAAAAAADXQAAAAABXQAAAAADgwAAAAAAXQAAAAACXQAAAAABJAAAAAACgwAAAAAAgwAAAAAAXQAAAAADXQAAAAADgwAAAAAAJAAAAAAAXQAAAAACXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAAgwAAAAAAJAAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: hAAAAAAAJQAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAABhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAAChAAAAAAAXgAAAAABXgAAAAACXgAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAJQAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAChAAAAAAAXgAAAAAAXgAAAAADJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADhAAAAAAAXgAAAAADXgAAAAADJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAABHwAAAAABJQAAAAABJQAAAAAChAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAXgAAAAABJQAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAACJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAABJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADhAAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAACJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAJQAAAAACXgAAAAACXgAAAAABXgAAAAADhAAAAAAAJQAAAAABXgAAAAABJQAAAAADhAAAAAAAJQAAAAADJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAJQAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAAChAAAAAAAXgAAAAAAXgAAAAABJQAAAAABhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAABhAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACJQAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAJQAAAAADXgAAAAABXgAAAAADhAAAAAAAXgAAAAACXgAAAAABJQAAAAAChAAAAAAAhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAJQAAAAAAXgAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAhAAAAAAAJQAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABgwAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAABgwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAJAAAAAACJAAAAAABgwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAACcwAAAAABcwAAAAABgwAAAAAAcwAAAAABcwAAAAABJAAAAAABJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAADcwAAAAACJAAAAAADJAAAAAABgwAAAAAAcwAAAAADcwAAAAABcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAACgwAAAAAAcwAAAAAAcwAAAAACcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAJAAAAAAAgwAAAAAAcwAAAAABcwAAAAAAcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAABgwAAAAAAcwAAAAABcwAAAAADcwAAAAACgwAAAAAAcwAAAAADJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAABJAAAAAACgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACJAAAAAADJAAAAAADcwAAAAAAgwAAAAAAcwAAAAADcwAAAAAAcwAAAAADgwAAAAAAcwAAAAABJAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACJAAAAAABJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAACcwAAAAAAcwAAAAABgwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAACgwAAAAAAJAAAAAAAJAAAAAADJAAAAAACJAAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAgwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAABcwAAAAADcwAAAAADHgAAAAAAHgAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAABgwAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAgwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAACgwAAAAAAHgAAAAACgwAAAAAAcwAAAAAAcwAAAAADgwAAAAAAgwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAABgwAAAAAAcwAAAAADgwAAAAAAcwAAAAADgwAAAAAAJAAAAAAAJAAAAAADgwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAAB + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABhAAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAAAdAAAAAADdAAAAAABhAAAAAAAdAAAAAADdAAAAAAAdAAAAAADdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAJQAAAAACJQAAAAABhAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAABdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAABdAAAAAABhAAAAAAAdAAAAAABdAAAAAABJQAAAAABJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAACJQAAAAADJQAAAAABhAAAAAAAdAAAAAADdAAAAAABdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABdAAAAAABdAAAAAADdAAAAAAChAAAAAAAdAAAAAAAdAAAAAACdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAADdAAAAAAAJQAAAAAAhAAAAAAAdAAAAAABdAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAABhAAAAAAAdAAAAAABdAAAAAADdAAAAAAChAAAAAAAdAAAAAADJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAADdAAAAAABdAAAAAABdAAAAAACdAAAAAABdAAAAAABdAAAAAABJQAAAAAChAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACJQAAAAADJQAAAAADdAAAAAAAhAAAAAAAdAAAAAADdAAAAAAAdAAAAAADhAAAAAAAdAAAAAABJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACJQAAAAABJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAACdAAAAAAAdAAAAAABhAAAAAAAdAAAAAACdAAAAAABdAAAAAADdAAAAAAChAAAAAAAJQAAAAAAJQAAAAADJQAAAAACJQAAAAADdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAAAhAAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAACdAAAAAADdAAAAAADdAAAAAABdAAAAAADdAAAAAADHwAAAAAAHwAAAAADdAAAAAACdAAAAAABdAAAAAAAdAAAAAABhAAAAAAAdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAhAAAAAAAdAAAAAABdAAAAAACdAAAAAABdAAAAAAChAAAAAAAHwAAAAAChAAAAAAAdAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAdAAAAAACdAAAAAADdAAAAAABdAAAAAABhAAAAAAAdAAAAAADhAAAAAAAdAAAAAADhAAAAAAAJQAAAAAAJQAAAAADhAAAAAAAdAAAAAACdAAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAdAAAAAABdAAAAAABdAAAAAADdAAAAAAB version: 6 2,-2: ind: 2,-2 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAABJAAAAAAAcwAAAAABgwAAAAAAJAAAAAAAJAAAAAACcwAAAAABJAAAAAAAcwAAAAABcwAAAAAAgwAAAAAAcwAAAAADcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAABcwAAAAADJAAAAAAAcwAAAAACcwAAAAACgwAAAAAAJAAAAAACHgAAAAAAHgAAAAAAHgAAAAACgwAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAABgwAAAAAAcwAAAAABcwAAAAACJAAAAAADcwAAAAADcwAAAAABgwAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAACJAAAAAADHgAAAAABgwAAAAAAcwAAAAACcwAAAAAAgwAAAAAAcwAAAAADcwAAAAABgwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAcwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAABgwAAAAAAJAAAAAAAHgAAAAADHgAAAAABJAAAAAABgwAAAAAAJAAAAAAAHgAAAAABJAAAAAAAHgAAAAADgwAAAAAAcwAAAAADJAAAAAACcwAAAAABcwAAAAACcwAAAAACgwAAAAAAgwAAAAAAHgAAAAABHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAACHgAAAAABgwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACgwAAAAAAHgAAAAACHgAAAAAAHgAAAAADgwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAACcwAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAADcwAAAAABgwAAAAAAHgAAAAABHgAAAAABHgAAAAADbwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAADcwAAAAADcwAAAAABgwAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAgwAAAAAAJAAAAAABXQAAAAABJAAAAAADgwAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACgwAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAADgwAAAAAAXQAAAAADXQAAAAACXQAAAAADgwAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAAAgwAAAAAAJAAAAAAAXQAAAAACXQAAAAABgwAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADgwAAAAAAXQAAAAADXQAAAAABJAAAAAABgwAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAADHgAAAAAD + tiles: hAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAABdAAAAAADdAAAAAAAdAAAAAABJQAAAAAAdAAAAAABhAAAAAAAJQAAAAAAJQAAAAACdAAAAAABJQAAAAAAdAAAAAABdAAAAAAAhAAAAAAAdAAAAAADdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABdAAAAAADJQAAAAAAdAAAAAACdAAAAAAChAAAAAAAJQAAAAACHwAAAAAAHwAAAAAAHwAAAAAChAAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAABhAAAAAAAdAAAAAABdAAAAAACJQAAAAADdAAAAAADdAAAAAABhAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACJQAAAAADHwAAAAABhAAAAAAAdAAAAAACdAAAAAAAhAAAAAAAdAAAAAADdAAAAAABhAAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAJQAAAAABhAAAAAAAJQAAAAAAHwAAAAADHwAAAAABJQAAAAABhAAAAAAAJQAAAAAAHwAAAAABJQAAAAAAHwAAAAADhAAAAAAAdAAAAAADJQAAAAACdAAAAAABdAAAAAACdAAAAAAChAAAAAAAhAAAAAAAHwAAAAABHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAACHwAAAAABhAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAABdAAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAAAdAAAAAAChAAAAAAAHwAAAAACHwAAAAAAHwAAAAADhAAAAAAAdAAAAAACdAAAAAABdAAAAAADdAAAAAAAdAAAAAACdAAAAAACdAAAAAABdAAAAAADdAAAAAABdAAAAAACdAAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAADdAAAAAAAdAAAAAAAdAAAAAABdAAAAAADdAAAAAACdAAAAAADdAAAAAABhAAAAAAAHwAAAAABHwAAAAABHwAAAAADcAAAAAAAdAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAABhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAABdAAAAAACdAAAAAAAdAAAAAADdAAAAAAAhAAAAAAAJQAAAAABXgAAAAABJQAAAAADhAAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAAChAAAAAAAdAAAAAAAdAAAAAACdAAAAAADdAAAAAADhAAAAAAAXgAAAAADXgAAAAACXgAAAAADhAAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAAAhAAAAAAAJQAAAAAAXgAAAAACXgAAAAABhAAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAdAAAAAABdAAAAAABdAAAAAABdAAAAAADhAAAAAAAXgAAAAADXgAAAAABJQAAAAABhAAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAAD version: 6 2,-4: ind: 2,-4 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgAAAAAAAgAAAAAABgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgAAAAAAAgAAAAAABgAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABcwAAAAABJAAAAAACJAAAAAAAgwAAAAAAcwAAAAABcwAAAAABgwAAAAAAcwAAAAACcwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABcwAAAAADcwAAAAADJAAAAAABgwAAAAAAcwAAAAABcwAAAAADgwAAAAAAcwAAAAACcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAcwAAAAABcwAAAAAAJAAAAAAAgwAAAAAAcwAAAAACcwAAAAADgwAAAAAAcwAAAAACcwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAcwAAAAAAcwAAAAADJAAAAAABgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAACgwAAAAAAgwAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAACJAAAAAADgwAAAAAAgwAAAAAAcwAAAAABcwAAAAADcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAACcwAAAAABcwAAAAAAJAAAAAACgwAAAAAAcwAAAAACcwAAAAABJAAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAADTgAAAAACTgAAAAABgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJAAAAAAAgwAAAAAAcwAAAAABcwAAAAADJAAAAAAAgwAAAAAATgAAAAADTgAAAAADTgAAAAABTgAAAAAATgAAAAADgwAAAAAAgwAAAAAAcwAAAAADcwAAAAACcwAAAAAAJAAAAAABgwAAAAAAcwAAAAABcwAAAAABJAAAAAADgwAAAAAATgAAAAAATgAAAAABTgAAAAACTgAAAAADTgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAACcwAAAAADJAAAAAADJAAAAAACgwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAAAgQAAAAABhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgQAAAAAAgQAAAAABgQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABdAAAAAABJQAAAAACJQAAAAAAhAAAAAAAdAAAAAABdAAAAAABhAAAAAAAdAAAAAACdAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABdAAAAAADdAAAAAADJQAAAAABhAAAAAAAdAAAAAABdAAAAAADhAAAAAAAdAAAAAACdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAdAAAAAABdAAAAAAAJQAAAAAAhAAAAAAAdAAAAAACdAAAAAADhAAAAAAAdAAAAAACdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAdAAAAAAAdAAAAAADJQAAAAABhAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAAAdAAAAAABdAAAAAABdAAAAAACdAAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAAChAAAAAAAhAAAAAAAdAAAAAADdAAAAAABdAAAAAADdAAAAAADdAAAAAADdAAAAAAAdAAAAAABdAAAAAABdAAAAAABdAAAAAACdAAAAAAAdAAAAAADdAAAAAACJQAAAAADhAAAAAAAhAAAAAAAdAAAAAABdAAAAAADdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAABdAAAAAAAJQAAAAAChAAAAAAAdAAAAAACdAAAAAABJQAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAADTwAAAAACTwAAAAABhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAJQAAAAAAhAAAAAAAdAAAAAABdAAAAAADJQAAAAAAhAAAAAAATwAAAAADTwAAAAADTwAAAAABTwAAAAAATwAAAAADhAAAAAAAhAAAAAAAdAAAAAADdAAAAAACdAAAAAAAJQAAAAABhAAAAAAAdAAAAAABdAAAAAABJQAAAAADhAAAAAAATwAAAAAATwAAAAABTwAAAAACTwAAAAADTwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAADdAAAAAACdAAAAAACdAAAAAACdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAADJQAAAAADJQAAAAAChAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: gwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAHgAAAAAAHgAAAAABHgAAAAAAgwAAAAAAJAAAAAACXQAAAAABXQAAAAACXQAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACgwAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABJAAAAAABbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAHgAAAAADHgAAAAADHgAAAAAAgwAAAAAAJAAAAAADXQAAAAADXQAAAAADJAAAAAACXQAAAAADcwAAAAAAcwAAAAAAcwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAcwAAAAABcwAAAAAAcwAAAAACXQAAAAACXQAAAAADcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAADgwAAAAAAXQAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAHgAAAAADHgAAAAACHgAAAAAAcAAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAACcwAAAAABcwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAHgAAAAAAHgAAAAADHgAAAAACcAAAAAAAcwAAAAABcwAAAAABcwAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACbwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcwAAAAADcwAAAAAAcwAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABbwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAADgwAAAAAAcwAAAAADcwAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADEgAAAAAAXQAAAAABEgAAAAAAHgAAAAAAXQAAAAACcwAAAAACcwAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAXQAAAAACcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAEgAAAAAAXQAAAAABEgAAAAAAHgAAAAADXQAAAAADcwAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAACcwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAADgwAAAAAAcwAAAAABcwAAAAADcwAAAAADgwAAAAAAgwAAAAAAcwAAAAABgwAAAAAA + tiles: hAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAEwAAAAAAEwAAAAAAhAAAAAAAHwAAAAAAHwAAAAABHwAAAAAAhAAAAAAAJQAAAAACXgAAAAABXgAAAAACXgAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAChAAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABJQAAAAABcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAEwAAAAAAEwAAAAAAhAAAAAAAHwAAAAADHwAAAAADHwAAAAAAhAAAAAAAJQAAAAADXgAAAAADXgAAAAADJQAAAAACXgAAAAADdAAAAAAAdAAAAAAAdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAdAAAAAABdAAAAAAAdAAAAAACXgAAAAACXgAAAAADdAAAAAABdAAAAAACdAAAAAABdAAAAAACdAAAAAACdAAAAAADdAAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAACdAAAAAABdAAAAAAAdAAAAAADhAAAAAAAXgAAAAABdAAAAAABdAAAAAACdAAAAAABdAAAAAADdAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAABdAAAAAABhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAHwAAAAADHwAAAAACHwAAAAAAcQAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAABdAAAAAACdAAAAAACdAAAAAABdAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAHwAAAAAAHwAAAAADHwAAAAACcQAAAAAAdAAAAAABdAAAAAABdAAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAACcAAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAdAAAAAADdAAAAAAAdAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAABcAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADhAAAAAAAdAAAAAADdAAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADEwAAAAAAXgAAAAABEwAAAAAAHwAAAAAAXgAAAAACdAAAAAACdAAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAHwAAAAAAXgAAAAACdAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAACdAAAAAAAdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAEwAAAAAAXgAAAAABEwAAAAAAHwAAAAADXgAAAAADdAAAAAAAdAAAAAADdAAAAAABdAAAAAABdAAAAAACdAAAAAACdAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAADhAAAAAAAdAAAAAABdAAAAAADdAAAAAADhAAAAAAAhAAAAAAAdAAAAAABhAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: gwAAAAAAcwAAAAADcwAAAAACcwAAAAACgwAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABgwAAAAAAHgAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAHgAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgwAAAAAAHgAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADHgAAAAABgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgwAAAAAAHgAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABHgAAAAACgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAAAgwAAAAAAHgAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAADgwAAAAAAHgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAHgAAAAABgwAAAAAAXQAAAAAAXQAAAAACgwAAAAAAXQAAAAACgwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAACgwAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACgwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAABcwAAAAABcwAAAAAAcwAAAAABgwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAABXQAAAAABcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAADgwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAADcwAAAAACcwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACgwAAAAAAHgAAAAABgwAAAAAAaQAAAAACXQAAAAADaQAAAAACcwAAAAADcwAAAAACcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAHgAAAAAAbwAAAAAAgwAAAAAAaQAAAAACXQAAAAAAaQAAAAACcwAAAAACcwAAAAADcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAHgAAAAABbwAAAAAAgwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAHgAAAAABbwAAAAAAgwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAgwAAAAAAHgAAAAABgwAAAAAAHgAAAAACgwAAAAAAgwAAAAAAcwAAAAACgwAAAAAAgwAAAAAAcwAAAAABcwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: hAAAAAAAdAAAAAADdAAAAAACdAAAAAAChAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABhAAAAAAAHwAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAHwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAdAAAAAABdAAAAAAAdAAAAAAAhAAAAAAAHwAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADHwAAAAABhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAdAAAAAAAdAAAAAACdAAAAAAAhAAAAAAAHwAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAABHwAAAAAChAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdAAAAAADdAAAAAABdAAAAAADdAAAAAAAhAAAAAAAHwAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABdAAAAAACdAAAAAACdAAAAAADhAAAAAAAHwAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAHwAAAAABhAAAAAAAXgAAAAAAXgAAAAAChAAAAAAAXgAAAAAChAAAAAAAdAAAAAABdAAAAAAAdAAAAAAAhAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAChAAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAChAAAAAAAdAAAAAADdAAAAAADdAAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAABdAAAAAABdAAAAAAAdAAAAAABhAAAAAAAdAAAAAABdAAAAAADdAAAAAACdAAAAAABXgAAAAABdAAAAAABdAAAAAACdAAAAAACdAAAAAADdAAAAAACdAAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAAAdAAAAAABdAAAAAADdAAAAAACdAAAAAACdAAAAAADhAAAAAAAdAAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAACdAAAAAADdAAAAAADdAAAAAADdAAAAAACdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAhAAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAHwAAAAABhAAAAAAAagAAAAACXgAAAAADagAAAAACdAAAAAADdAAAAAACdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAhAAAAAAAagAAAAACXgAAAAAAagAAAAACdAAAAAACdAAAAAADdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAhAAAAAAAdAAAAAABdAAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAhAAAAAAAdAAAAAABdAAAAAABdAAAAAACdAAAAAABdAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAHwAAAAABhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAdAAAAAAChAAAAAAAhAAAAAAAdAAAAAABdAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAgwAAAAAAXQAAAAABgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcwAAAAABcwAAAAABcwAAAAACgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAcwAAAAADcwAAAAADcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAhAAAAAAAXgAAAAABhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAABhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAdAAAAAABdAAAAAABdAAAAAAChAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAdAAAAAADdAAAAAADdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: gwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACgwAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABcwAAAAADgwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACgwAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACcwAAAAACgwAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAACcwAAAAAAgwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAAAgwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAABgwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAABgwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAAAcwAAAAACgwAAAAAAcwAAAAABcwAAAAACcwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAABcwAAAAADcwAAAAABgwAAAAAAgwAAAAAAcwAAAAABcwAAAAABcwAAAAACgwAAAAAAggAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAUQAAAAAAgwAAAAAAcwAAAAAAcwAAAAACXQAAAAAAgwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAACgwAAAAAAggAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcwAAAAABcwAAAAADXQAAAAAAgwAAAAAAgwAAAAAAcwAAAAACcwAAAAADcwAAAAAAgwAAAAAAggAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAUQAAAAAAgwAAAAAAcwAAAAAAcwAAAAADXQAAAAACgwAAAAAAgwAAAAAAcwAAAAABcwAAAAADcwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgwAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAACcwAAAAABgwAAAAAAXQAAAAADXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAAAgwAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACcwAAAAADcwAAAAABcwAAAAABcwAAAAAAgwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAACcwAAAAABcwAAAAACgwAAAAAAXQAAAAADXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAXQAAAAAAXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAACgwAAAAAAXQAAAAAAXQAAAAADXQAAAAADgwAAAAAAgwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAABgwAAAAAA + tiles: hAAAAAAAdAAAAAADdAAAAAAAdAAAAAACdAAAAAAChAAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABdAAAAAADhAAAAAAAdAAAAAAAdAAAAAADdAAAAAABdAAAAAAChAAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAADXgAAAAACdAAAAAAChAAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAACdAAAAAABdAAAAAADdAAAAAABdAAAAAADdAAAAAADdAAAAAADdAAAAAACdAAAAAAAhAAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAAAhAAAAAAAdAAAAAADdAAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAABdAAAAAABhAAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAABhAAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAAAdAAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAAAdAAAAAAChAAAAAAAdAAAAAABdAAAAAACdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABdAAAAAADdAAAAAABhAAAAAAAhAAAAAAAdAAAAAABdAAAAAABdAAAAAAChAAAAAAAgwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAhAAAAAAAdAAAAAAAdAAAAAACXgAAAAAAhAAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAAChAAAAAAAgwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdAAAAAABdAAAAAADXgAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAADdAAAAAAAhAAAAAAAgwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAhAAAAAAAdAAAAAAAdAAAAAADXgAAAAAChAAAAAAAhAAAAAAAdAAAAAABdAAAAAADdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABdAAAAAADdAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAABdAAAAAABhAAAAAAAdAAAAAADdAAAAAABdAAAAAABdAAAAAACdAAAAAACdAAAAAABhAAAAAAAXgAAAAADXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAACdAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAACdAAAAAADdAAAAAABdAAAAAABdAAAAAAAhAAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAACdAAAAAABdAAAAAAChAAAAAAAXgAAAAADXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAdAAAAAADdAAAAAACdAAAAAADdAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAAAdAAAAAACdAAAAAAChAAAAAAAXgAAAAAAXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAABhAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: bwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAcwAAAAAAXQAAAAADcwAAAAABXQAAAAADcwAAAAAAXQAAAAACcwAAAAAAXQAAAAACcwAAAAAAXQAAAAABcwAAAAAAXQAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABgwAAAAAAXQAAAAAAgwAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAABgwAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACgwAAAAAAXQAAAAACgwAAAAAAgAAAAAACgAAAAAACgAAAAAAAgAAAAAACgAAAAAABgAAAAAAAgAAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAADgAAAAAACgAAAAAACgAAAAAACgwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADgwAAAAAAXQAAAAACgwAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAAAgAAAAAACgAAAAAABgwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAAgAAAAAACgwAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: cAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAADdAAAAAAAdAAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAAAdAAAAAADdAAAAAADdAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAdAAAAAAAXgAAAAADdAAAAAABXgAAAAADdAAAAAAAXgAAAAACdAAAAAAAXgAAAAACdAAAAAAAXgAAAAABdAAAAAAAXgAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAABdAAAAAAAdAAAAAACdAAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAXgAAAAAAhAAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAABhAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAAChAAAAAAAXgAAAAAChAAAAAAAgQAAAAACgQAAAAACgQAAAAAAgQAAAAACgQAAAAABgQAAAAAAgQAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAhAAAAAAAXgAAAAADhAAAAAAAgQAAAAABgQAAAAABgQAAAAABgQAAAAADgQAAAAACgQAAAAACgQAAAAAChAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAACdAAAAAADhAAAAAAAXgAAAAAChAAAAAAAgQAAAAABgQAAAAABgQAAAAABgQAAAAACgQAAAAAAgQAAAAACgQAAAAABhAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAgQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAABgQAAAAAAgQAAAAAChAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAABhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAWwAAAAAEgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAQAAAAAAAZAAAAAAAgwAAAAAAHgAAAAADHgAAAAADHgAAAAACgwAAAAAAWwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAQAAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAACgwAAAAAAgAAAAAADgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAZAAAAAAAQAAAAAAAQAAAAAAAgwAAAAAAHgAAAAABHgAAAAACHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADgwAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABgwAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAACgwAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAAAgwAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAHgAAAAACHgAAAAAAgwAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAHgAAAAADHgAAAAACgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAcwAAAAAAcwAAAAADcwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXAAAAAAEhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAQQAAAAAAZQAAAAAAhAAAAAAAHwAAAAADHwAAAAADHwAAAAAChAAAAAAAXAAAAAAJhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQQAAAAAAhAAAAAAAHwAAAAACHwAAAAADHwAAAAAChAAAAAAAgQAAAAADhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAZQAAAAAAQQAAAAAAQQAAAAAAhAAAAAAAHwAAAAABHwAAAAACHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADhAAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABhAAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAAChAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAHwAAAAACHwAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAHwAAAAADHwAAAAAChAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAhAAAAAAAdAAAAAAAdAAAAAADdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: cwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAXQAAAAABXQAAAAACXQAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAA + tiles: dAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-4: ind: 5,-4 - tiles: gwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: hAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: XQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAABJAAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAJAAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABgwAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAgwAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADgwAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABgwAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAXQAAAAAAXQAAAAABHgAAAAACHgAAAAACHgAAAAACXQAAAAAAXQAAAAACHgAAAAABgwAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADgwAAAAAAgwAAAAAAHgAAAAACXQAAAAABXQAAAAADHgAAAAADHgAAAAADHgAAAAAAXQAAAAACXQAAAAADHgAAAAABgwAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACgwAAAAAAHgAAAAADXQAAAAABXQAAAAADHgAAAAABHgAAAAADHgAAAAADXQAAAAACXQAAAAADHgAAAAABgwAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACgwAAAAAAHgAAAAACXQAAAAAAXQAAAAACHgAAAAAAHgAAAAAAHgAAAAAAXQAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAXQAAAAACaQAAAAADgwAAAAAAgwAAAAAAHgAAAAADXQAAAAACXQAAAAADHgAAAAADHgAAAAABHgAAAAABXQAAAAAAXQAAAAADHgAAAAABHgAAAAAAgwAAAAAAgQAAAAABgAAAAAADgAAAAAADgwAAAAAAgwAAAAAAHgAAAAAAXQAAAAAAXQAAAAADHgAAAAACHgAAAAADHgAAAAADXQAAAAADXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgQAAAAACgAAAAAAAgAAAAAAAaQAAAAACgwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAAAgwAAAAAAgQAAAAACgQAAAAAAgAAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: XgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAABJQAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAAAJQAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAJQAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAABhAAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAADhAAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAABhAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAXgAAAAAAXgAAAAABHwAAAAACHwAAAAACHwAAAAACXgAAAAAAXgAAAAACHwAAAAABhAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAHwAAAAACXgAAAAABXgAAAAADHwAAAAADHwAAAAADHwAAAAAAXgAAAAACXgAAAAADHwAAAAABhAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAChAAAAAAAHwAAAAADXgAAAAABXgAAAAADHwAAAAABHwAAAAADHwAAAAADXgAAAAACXgAAAAADHwAAAAABhAAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAAChAAAAAAAHwAAAAACXgAAAAAAXgAAAAACHwAAAAAAHwAAAAAAHwAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACagAAAAADhAAAAAAAhAAAAAAAHwAAAAADXgAAAAACXgAAAAADHwAAAAADHwAAAAABHwAAAAABXgAAAAAAXgAAAAADHwAAAAABHwAAAAAAhAAAAAAAggAAAAABgQAAAAADgQAAAAADhAAAAAAAhAAAAAAAHwAAAAAAXgAAAAAAXgAAAAADHwAAAAACHwAAAAADHwAAAAADXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAggAAAAACgQAAAAAAgQAAAAAAagAAAAAChAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAAAhAAAAAAAggAAAAACggAAAAAAgQAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: gwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAABXQAAAAAAXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: hAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAAAXgAAAAAChAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAABXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: AAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAA + tiles: AAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAA version: 6 5,-5: ind: 5,-5 - tiles: AAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAABAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAABAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAABAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAQgAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAQgAAAAAAgwAAAAAAQgAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgAAAAAABgwAAAAAAgwAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABhAAAAAAAhAAAAAAAhAAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAJAAAAAABJAAAAAAAJAAAAAACgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAJAAAAAACJAAAAAAAJAAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAJQAAAAABJQAAAAAAJQAAAAAChAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAJQAAAAACJQAAAAAAJQAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAChAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAggAAAAAAgwAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAJAAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAADggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABJAAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAHgAAAAABgwAAAAAAHgAAAAAARAAAAAAAgwAAAAAAHgAAAAAAHgAAAAABHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAHgAAAAACgwAAAAAAHgAAAAADHgAAAAABHgAAAAACgwAAAAAAHgAAAAACHgAAAAACJAAAAAADJAAAAAAAJAAAAAAAXQAAAAADgwAAAAAAHgAAAAACgwAAAAAAgwAAAAAAHgAAAAADgwAAAAAAHgAAAAACHgAAAAADHgAAAAABgwAAAAAAHgAAAAABHgAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACgwAAAAAAgwAAAAAARAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAADHgAAAAAAgwAAAAAAHgAAAAADHgAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAJAAAAAACXQAAAAABXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACJAAAAAACXQAAAAADXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAARAAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADJAAAAAAAJAAAAAABJAAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAJAAAAAADJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACJAAAAAABJAAAAAADgwAAAAAAXQAAAAABXQAAAAACJAAAAAADXQAAAAADJAAAAAADJAAAAAACgwAAAAAAJAAAAAACJAAAAAAAJAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAJQAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAADgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABJQAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAJQAAAAAAhAAAAAAAHwAAAAABhAAAAAAAHwAAAAAARQAAAAAAhAAAAAAAHwAAAAAAHwAAAAABHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAHwAAAAADHwAAAAABHwAAAAAChAAAAAAAHwAAAAACHwAAAAACJQAAAAADJQAAAAAAJQAAAAAAXgAAAAADhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAHwAAAAACHwAAAAADHwAAAAABhAAAAAAAHwAAAAABHwAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAAChAAAAAAAhAAAAAAARQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAADHwAAAAAAhAAAAAAAHwAAAAADHwAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAJQAAAAACXgAAAAABXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACJQAAAAACXgAAAAADXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAARQAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADJQAAAAAAJQAAAAABJQAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAJQAAAAADJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACJQAAAAABJQAAAAADhAAAAAAAXgAAAAABXgAAAAACJQAAAAADXgAAAAADJQAAAAADJQAAAAAChAAAAAAAJQAAAAACJQAAAAAAJQAAAAAD version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAADDwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADgwAAAAAAgwAAAAAADwAAAAABgwAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAJAAAAAABJAAAAAAAXQAAAAADXQAAAAADXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABgwAAAAAAXQAAAAADXQAAAAABgwAAAAAAJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAgwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAHgAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAABJAAAAAABJAAAAAACJAAAAAAAHgAAAAABgwAAAAAAXQAAAAABXQAAAAACgwAAAAAAXQAAAAACXQAAAAABgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAACJAAAAAACJAAAAAADJAAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAABJAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAADEAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAEAAAAAABhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAJQAAAAABJQAAAAAAXgAAAAADXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABhAAAAAAAXgAAAAADXgAAAAABhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAHwAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAABJQAAAAABJQAAAAACJQAAAAAAHwAAAAABhAAAAAAAXgAAAAABXgAAAAAChAAAAAAAXgAAAAACXgAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAACJQAAAAACJQAAAAADJQAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABJQAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAARAAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAARAAAAAAARAAAAAAARAAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: AAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAARQAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAARQAAAAAARQAAAAAARQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAADwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAEAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABJAAAAAADHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACJAAAAAABHgAAAAADHgAAAAACHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAABHgAAAAABgwAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACgwAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAADRAAAAAAAHgAAAAABHgAAAAACJAAAAAABJAAAAAABJAAAAAAAHgAAAAAAgwAAAAAAHgAAAAADHgAAAAAAHgAAAAAAgwAAAAAAHgAAAAADgwAAAAAAHgAAAAABHgAAAAABRAAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAHgAAAAADHgAAAAABHgAAAAABgwAAAAAAHgAAAAACgwAAAAAAHgAAAAAAHgAAAAAAgwAAAAAAHgAAAAABHgAAAAABJAAAAAACJAAAAAABJAAAAAABHgAAAAAAgwAAAAAAHgAAAAAAHgAAAAADHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAARAAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAACJAAAAAAAJAAAAAACJAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAARAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADXQAAAAABJAAAAAABgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABJAAAAAACXQAAAAABXQAAAAAAXQAAAAAAgwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAgwAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADJAAAAAABXQAAAAABXQAAAAABXQAAAAAAgwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXQAAAAAAgwAAAAAAXQAAAAACXQAAAAADXQAAAAABgwAAAAAAgwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgwAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABJQAAAAADHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACJQAAAAABHwAAAAADHwAAAAACHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAABHwAAAAABhAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAChAAAAAAAHwAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAADRQAAAAAAHwAAAAABHwAAAAACJQAAAAABJQAAAAABJQAAAAAAHwAAAAAAhAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAhAAAAAAAHwAAAAADhAAAAAAAHwAAAAABHwAAAAABRQAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAHwAAAAADHwAAAAABHwAAAAABhAAAAAAAHwAAAAAChAAAAAAAHwAAAAAAHwAAAAAAhAAAAAAAHwAAAAABHwAAAAABJQAAAAACJQAAAAABJQAAAAABHwAAAAAAhAAAAAAAHwAAAAAAHwAAAAADHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAARQAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAACJQAAAAAAJQAAAAACJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAARQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADXgAAAAABJQAAAAABhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABJQAAAAACXgAAAAABXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAADJQAAAAABXgAAAAABXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: AAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: AAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAAAHgAAAAADgwAAAAAAHgAAAAACHgAAAAACHgAAAAACgwAAAAAAHgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAADgwAAAAAAHgAAAAADHgAAAAADHgAAAAADgwAAAAAAHgAAAAADggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAACHgAAAAABgwAAAAAAHgAAAAAAHgAAAAACHgAAAAADgwAAAAAAHgAAAAACAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAABHgAAAAADgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAHgAAAAABQgAAAAAAQgAAAAAAQgAAAAAAHgAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAABQgAAAAAAQgAAAAAAQgAAAAAAHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAHgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAHgAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAACHgAAAAABgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAbwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAAAHwAAAAADhAAAAAAAHwAAAAACHwAAAAACHwAAAAAChAAAAAAAHwAAAAACgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAADHwAAAAADhAAAAAAAHwAAAAADHwAAAAADHwAAAAADhAAAAAAAHwAAAAADgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAACHwAAAAABhAAAAAAAHwAAAAAAHwAAAAACHwAAAAADhAAAAAAAHwAAAAACAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAABHwAAAAADhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAHwAAAAABQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAABQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAACHwAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAAChAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-7: ind: 2,-7 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-8: ind: 2,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAHgAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAABEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAABEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAHgAAAAABHgAAAAACEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAABgwAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAACgwAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAACgwAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAADgwAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAABgwAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAADgwAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAADgwAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAACgwAAAAAAEgAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAHwAAAAABEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAEwAAAAAAHwAAAAAAHwAAAAABHwAAAAACEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAABhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAChAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAChAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAADhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAABhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAADhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAADhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAChAAAAAAAEwAAAAAAhAAAAAAA version: 6 1,-8: ind: 1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAADEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAACEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAHgAAAAADgwAAAAAAEgAAAAAAgwAAAAAAHgAAAAACEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAHgAAAAADHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAADEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAHwAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAADhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAADHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAAA version: 6 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAggAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: gAAAAAABgAAAAAADgAAAAAADgAAAAAADgAAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADgwAAAAAAMwAAAAAAHgAAAAADMwAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAADgwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACgwAAAAAAXQAAAAABXQAAAAACXQAAAAADgAAAAAAAgAAAAAADgAAAAAABgAAAAAACgAAAAAABgwAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAgAAAAAAAgAAAAAADgAAAAAACgAAAAAACgAAAAAAAgwAAAAAAQQAAAAAAQQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACgwAAAAAAXQAAAAAAXQAAAAACXQAAAAAAgAAAAAADgAAAAAADgAAAAAABgAAAAAACgAAAAAAAgwAAAAAAQQAAAAAAQQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADgwAAAAAAQQAAAAAAQQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAABgQAAAAADgQAAAAADgQAAAAADgQAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAADhAAAAAAANAAAAAAAHwAAAAADNAAAAAAAgQAAAAAAgQAAAAAAgQAAAAACgQAAAAACgQAAAAADhAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAChAAAAAAAXgAAAAABXgAAAAACXgAAAAADgQAAAAAAgQAAAAADgQAAAAABgQAAAAACgQAAAAABhAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAgQAAAAAAgQAAAAADgQAAAAACgQAAAAACgQAAAAAAhAAAAAAAQgAAAAAAQgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAChAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAgQAAAAADgQAAAAADgQAAAAABgQAAAAACgQAAAAAAhAAAAAAAQgAAAAAAQgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADhAAAAAAAQgAAAAAAQgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: ggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAQgAAAAAAQgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-6: ind: 5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-6: ind: 4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAA version: 6 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-6: ind: 3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAABCAAAAAACAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAACAAAAAAAAggAAAAAAAAAAAAAAggAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAABCQAAAAACAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -477,6 +477,7 @@ entities: - type: BecomesStation id: Boxstation - type: MaterialStorage + storage: {} - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -985,6 +986,12 @@ entities: 3437: -19,34 3438: -20,34 3536: 23,42 + - node: + color: '#DE3A3AB3' + id: Box + decals: + 5444: 22,32 + 5445: 21,32 - node: color: '#DE3A3AB3' id: Box @@ -1283,7 +1290,6 @@ entities: 1510: 31,-4 1522: 23,-1 1614: 27,3 - 4448: -15,-24 4644: 12,-12 4747: -4,15 5292: 18,22 @@ -1303,7 +1309,6 @@ entities: 1519: 31,-8 1523: 23,-2 1615: 27,2 - 4451: -15,-27 4647: 12,-15 4750: -4,13 5305: 16,19 @@ -1339,8 +1344,6 @@ entities: 1611: 26,6 1612: 26,5 1613: 26,4 - 4449: -15,-25 - 4450: -15,-26 4645: 12,-13 4646: 12,-14 4749: -4,14 @@ -2733,7 +2736,6 @@ entities: 3182: -16,29 3228: -12,38 3298: -15,22 - 3477: 21,32 5420: -7,39 - node: color: '#DE3A3AB3' @@ -2933,6 +2935,7 @@ entities: 1292: 17,5 1326: 12,1 4359: 34,-9 + 5461: 22,-8 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw @@ -3014,6 +3017,7 @@ entities: decals: 1291: 17,5 4356: 39,-9 + 5458: 25,-8 - node: color: '#00FFFF66' id: BrickTileWhiteInnerSe @@ -3097,6 +3101,7 @@ entities: decals: 1324: 12,5 4358: 34,-6 + 5460: 22,-5 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw @@ -3164,6 +3169,7 @@ entities: id: BrickTileWhiteInnerSw decals: 4357: 39,-6 + 5459: 25,-5 - node: color: '#00FFFF5B' id: BrickTileWhiteLineE @@ -3537,6 +3543,8 @@ entities: 4553: -46,-15 4554: -46,-16 4709: 10,-22 + 5454: 22,-7 + 5455: 22,-6 - node: color: '#00FFFF66' id: BrickTileWhiteLineN @@ -3724,6 +3732,11 @@ entities: 4473: 46,-9 4521: 43,0 4522: 47,0 + - node: + color: '#A461068C' + id: BrickTileWhiteLineN + decals: + 5442: -28,-30 - node: color: '#A4610696' id: BrickTileWhiteLineN @@ -3911,7 +3924,6 @@ entities: 5124: -58,5 5125: -59,5 5126: -60,5 - 5409: -28,-30 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -4037,6 +4049,8 @@ entities: 4410: 36,0 4411: 37,0 4412: 38,0 + 5456: 23,-8 + 5457: 24,-8 - node: color: '#00FFFF66' id: BrickTileWhiteLineS @@ -4243,6 +4257,11 @@ entities: 4530: 45,-1 4531: 44,-1 4532: 43,-1 + - node: + color: '#A461068C' + id: BrickTileWhiteLineS + decals: + 5441: -28,-28 - node: color: '#A4610696' id: BrickTileWhiteLineS @@ -4383,7 +4402,6 @@ entities: 3230: -10,38 3232: -11,38 3299: -14,22 - 3478: 22,32 3479: 23,32 3480: 24,32 3552: -18,19 @@ -4443,7 +4461,6 @@ entities: 5105: -21,-32 5128: -61,3 5130: -59,3 - 5405: -28,-28 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -4563,6 +4580,8 @@ entities: 4405: 38,-3 4406: 37,-3 4407: 36,-3 + 5450: 24,-5 + 5451: 23,-5 - node: color: '#00FFFF66' id: BrickTileWhiteLineW @@ -4998,6 +5017,8 @@ entities: 4561: -47,-13 4562: -47,-12 4710: 10,-22 + 5452: 25,-7 + 5453: 25,-6 - node: color: '#FFFFFFFF' id: BushCTwo @@ -5023,6 +5044,17 @@ entities: id: Bushe4 decals: 5261: 46.10262,-53.98017 + 5479: 24.073122,-6.7241874 + - node: + color: '#FFFFFFFF' + id: Bushg2 + decals: + 5472: -14.946703,-26.818373 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 5480: 23.276247,-5.9741874 - node: color: '#FFFFFFFF' id: Bushj1 @@ -5033,6 +5065,11 @@ entities: id: Bushj3 decals: 5266: 43.32137,-51.82392 + - node: + color: '#FFFFFFFF' + id: Bushk2 + decals: + 5471: -14.993578,-24.396498 - node: angle: 1.5707963267948966 rad color: '#FFFFFFCC' @@ -5716,6 +5753,16 @@ entities: id: DirtMedium decals: 374: -8,50 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 5466: -14.946703,-25.630873 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 5476: 23.119997,-6.1460624 - node: color: '#FFFFFFFF' id: Flowerspv1 @@ -5726,6 +5773,8 @@ entities: id: Flowerspv2 decals: 5259: 44.936867,-52.335297 + 5467: -14.931078,-24.943373 + 5475: 24.151247,-6.9273124 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -5746,6 +5795,10 @@ entities: id: Flowersy4 decals: 5255: 43.311867,-52.31967 + 5463: -14.931078,-24.365248 + 5465: -14.946703,-26.849623 + 5473: 23.760622,-6.1773124 + 5474: 23.057497,-6.7710624 - node: color: '#334E6D5A' id: FullTileOverlayGreyscale @@ -5850,11 +5903,17 @@ entities: id: Grassc4 decals: 5251: 46.17124,-52.25717 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 5470: -15.009203,-25.162123 - node: color: '#FFFFFFFF' id: Grassd3 decals: 384: 2,48 + 5469: -14.915453,-23.974623 - node: color: '#FFFFFFFF' id: Grasse1 @@ -5881,6 +5940,9 @@ entities: 5246: 44.436867,-52.272797 5247: 43.749367,-52.35092 5248: 43.79624,-51.78842 + 5468: -14.977953,-26.240248 + 5477: 23.854372,-6.1773124 + 5478: 23.260622,-6.8179374 - node: color: '#FFFFFFFF' id: Grasse2 @@ -6931,6 +6993,7 @@ entities: 5119: -22,-31 5147: -59,4 5148: -57,4 + 5449: 23,33 - node: color: '#DE3A3ACD' id: WarnCornerSmallSW @@ -8053,6 +8116,8 @@ entities: 5424: -7,41 5425: -6,41 5426: -5,41 + 5446: 21,33 + 5447: 22,33 - node: color: '#DE3A3ACD' id: WarnLineN @@ -8226,11 +8291,7 @@ entities: 5399: -28,-34 5400: -28,-33 5408: -28,-32 - - node: - color: '#A46106CD' - id: WarnLineS - decals: - 5410: -28,-30 + 5443: -28,-30 - node: color: '#DE3A3AB3' id: WarnLineS @@ -8264,6 +8325,7 @@ entities: 5139: -60,5 5143: -59,3 5144: -57,3 + 5448: 23,32 - node: color: '#DE3A3ACD' id: WarnLineS @@ -8954,75 +9016,6 @@ entities: 5327: 12,25 5328: 12,26 5329: 12,27 - - node: - color: '#FFFFFFFF' - id: bushsnowa3 - decals: - 4447: -15.0264015,-24.248747 - - node: - color: '#FFFFFFFF' - id: bushsnowb3 - decals: - 4446: -14.899385,-26.512499 - - node: - color: '#FFFFFFFF' - id: grasssnow - decals: - 4439: -14.9628935,-24.22759 - - node: - color: '#FFFFFFFF' - id: grasssnow03 - decals: - 4440: -14.899385,-25.010382 - - node: - color: '#FFFFFFFF' - id: grasssnow05 - decals: - 4441: -14.984063,-26.766376 - - node: - color: '#FFFFFFFF' - id: grasssnow07 - decals: - 4434: 23,-7 - 4445: -14.772369,-25.750862 - - node: - color: '#FFFFFFFF' - id: grasssnow09 - decals: - 4432: 24,-7 - 4433: 23,-6 - - node: - color: '#FFFFFFFF' - id: grasssnow10 - decals: - 4431: 24,-6 - - node: - color: '#FFFFFFFF' - id: grasssnow11 - decals: - 4442: -14.730031,-26.110523 - - node: - color: '#FFFFFFFF' - id: grasssnowa3 - decals: - 4435: 23.212477,-6.2184606 - 4437: 23.853102,-6.1559606 - - node: - color: '#FFFFFFFF' - id: grasssnowb2 - decals: - 4444: -14.857047,-26.00474 - - node: - color: '#FFFFFFFF' - id: grasssnowb3 - decals: - 4436: 23.837477,-6.7809606 - 4438: 23.134352,-6.7965856 - - node: - color: '#FFFFFFFF' - id: grasssnowc2 - decals: - 4443: -14.899385,-25.010382 - type: GridAtmosphere version: 2 data: @@ -10437,7 +10430,9 @@ entities: 1,-16: 0: 65535 1,-15: - 0: 65535 + 8: 1 + 0: 65532 + 1: 2 1,-14: 0: 65535 1,-13: @@ -10455,10 +10450,11 @@ entities: 3,-15: 0: 65535 3,-14: - 0: 65535 + 0: 57343 + 9: 8192 3,-13: - 0: 65503 - 8: 32 + 0: 65501 + 9: 34 8,-12: 0: 65535 8,-11: @@ -10518,7 +10514,8 @@ entities: 10,-5: 0: 65535 11,-8: - 0: 65535 + 0: 65533 + 6: 2 11,-7: 0: 65535 11,-6: @@ -10983,7 +10980,7 @@ entities: 0: 65535 4,-17: 0: 34959 - 9: 30576 + 10: 30576 5,-20: 0: 62540 5,-19: @@ -11192,7 +11189,7 @@ entities: 0: 65535 3,-17: 0: 34959 - 10: 30576 + 11: 30576 0,-24: 0: 63624 0,-23: @@ -11757,10 +11754,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 293.14978 moles: - - 22.706173 - - 85.418465 + - 24.680622 + - 92.84615 - 0 - 0 - 0 @@ -11848,6 +11845,29 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -11952,15 +11972,15 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 - tiles: ggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 index: 1 - type: Broadphase @@ -14612,6 +14632,9 @@ entities: rot: 1.5707963267948966 rad pos: 93.5,-29.5 parent: 2 + - type: Door + secondsUntilStateChange: -2663.4524 + state: Opening - uid: 359 components: - type: Transform @@ -16430,11 +16453,6 @@ entities: - type: Transform pos: -23.5,-30.5 parent: 2 - - uid: 1199 - components: - - type: Transform - pos: -27.5,-28.5 - parent: 2 - uid: 10376 components: - type: Transform @@ -17867,6 +17885,28 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-41.5 parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 11189 + components: + - type: Transform + pos: -76.5,7.5 + parent: 2 + - uid: 18849 + components: + - type: Transform + pos: -76.5,-2.5 + parent: 2 + - uid: 18850 + components: + - type: Transform + pos: -71.5,-2.5 + parent: 2 + - uid: 18854 + components: + - type: Transform + pos: -71.5,7.5 + parent: 2 - proto: Ash entities: - uid: 780 @@ -19719,6 +19759,18 @@ entities: parent: 2 - proto: BenchSofaCorpLeft entities: + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 - uid: 11364 components: - type: Transform @@ -19792,6 +19844,18 @@ entities: parent: 2 - proto: BenchSofaCorpRight entities: + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 - uid: 9412 components: - type: Transform @@ -19868,18 +19932,6 @@ entities: - type: Transform pos: 20.5,-8.5 parent: 2 - - uid: 10843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-14.5 - parent: 2 - - uid: 10904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 2 - proto: BenchSofaMiddle entities: - uid: 10575 @@ -19906,12 +19958,6 @@ entities: parent: 2 - proto: BenchSofaRight entities: - - uid: 9131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-13.5 - parent: 2 - uid: 10572 components: - type: Transform @@ -19934,12 +19980,6 @@ entities: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 10903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-14.5 - parent: 2 - proto: BenchSteelLeft entities: - uid: 10326 @@ -20363,6 +20403,13 @@ entities: - type: Transform pos: 20.5,3.5 parent: 2 +- proto: Biofabricator + entities: + - uid: 18825 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 - proto: BiomassReclaimer entities: - uid: 1066 @@ -20830,6 +20877,44 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-44.5 parent: 2 +- proto: BorgCharger + entities: + - uid: 11122 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 2 + - uid: 18842 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 + - uid: 18846 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 18853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + - uid: 20480 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 20484 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 - proto: BoxBeaker entities: - uid: 1146 @@ -20847,10 +20932,10 @@ entities: - type: Transform pos: 38.551548,-59.747505 parent: 2 - - uid: 21163 + - uid: 18852 components: - type: Transform - pos: 19.299448,-20.486914 + pos: 19.683372,-20.314587 parent: 2 - proto: BoxBodyBag entities: @@ -21059,11 +21144,6 @@ entities: - type: Transform pos: 57.5,-31.5 parent: 2 - - uid: 1191 - components: - - type: Transform - pos: 69.5,-35.5 - parent: 2 - uid: 1192 components: - type: Transform @@ -21244,10 +21324,12 @@ entities: - type: Transform pos: 38.582798,-59.028755 parent: 2 - - uid: 12620 +- proto: BoxVial + entities: + - uid: 992 components: - type: Transform - pos: 19.674448,-20.502539 + pos: 19.667747,-20.548962 parent: 2 - proto: BriefcaseBrownFilled entities: @@ -61994,11 +62076,6 @@ entities: - type: Transform pos: 61.5,-2.5 parent: 2 - - uid: 9340 - components: - - type: Transform - pos: 61.5,-3.5 - parent: 2 - uid: 9352 components: - type: Transform @@ -68062,7 +68139,7 @@ entities: parent: 2 - proto: ChemistryHotplate entities: - - uid: 10944 + - uid: 10762 components: - type: Transform pos: 18.5,-20.5 @@ -68224,6 +68301,11 @@ entities: - 0 - 0 - 0 + - uid: 11031 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 - uid: 19637 components: - type: Transform @@ -73993,9 +74075,18 @@ entities: - type: Transform pos: 41.493343,-57.314545 parent: 2 -- proto: ClothingHeadHatBeret +- proto: ClothingHeadHatBeretMedic entities: - - uid: 27612 + - uid: 1170 + components: + - type: Transform + parent: 12691 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatBeretSecurity + entities: + - uid: 1171 components: - type: Transform parent: 12691 @@ -74899,15 +74990,6 @@ entities: - type: Transform pos: 21.563143,36.433716 parent: 2 -- proto: ClothingNeckMantleCap - entities: - - uid: 11147 - components: - - type: Transform - parent: 11122 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingNeckMantleCE entities: - uid: 10866 @@ -75711,15 +75793,6 @@ entities: - type: Transform pos: -18.590942,12.700656 parent: 2 -- proto: ClothingOuterWinterCap - entities: - - uid: 11190 - components: - - type: Transform - parent: 11122 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingShoesBootsCombat entities: - uid: 10924 @@ -76006,15 +76079,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtCaptain - entities: - - uid: 11146 - components: - - type: Transform - parent: 11122 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingUniformJumpskirtJanimaidmini entities: - uid: 27199 @@ -76049,15 +76113,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitCaptain - entities: - - uid: 11161 - components: - - type: Transform - parent: 11122 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingUniformJumpsuitParamedic entities: - uid: 10851 @@ -76180,12 +76235,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-7.5 parent: 2 - - uid: 10991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-3.5 - parent: 2 - uid: 10992 components: - type: Transform @@ -78422,6 +78471,20 @@ entities: containers: - EntityStorageComponent - entity_storage +- proto: CrateTrashCart + entities: + - uid: 18827 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 11046 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 - proto: CrateWeaponSecure entities: - uid: 26739 @@ -78619,6 +78682,43 @@ entities: - type: Transform pos: -17.31658,24.514822 parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 13066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,18.5 + parent: 2 + - uid: 16839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,19.5 + parent: 2 + - uid: 17255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 15950 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 17251 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 17471 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 - proto: CryoPod entities: - uid: 11203 @@ -78712,10 +78812,10 @@ entities: parent: 2 - proto: d6Dice entities: - - uid: 9350 + - uid: 9348 components: - type: Transform - pos: 5.3811684,-12.303572 + pos: 5.7317953,-12.447558 parent: 2 - uid: 11220 components: @@ -78786,6 +78886,429 @@ entities: - type: Transform pos: -13.553344,-35.450806 parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 11042 + components: + - type: Transform + pos: 28.5,-110.5 + parent: 2 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 18867 + components: + - type: Transform + pos: 28.5,-91.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 18868 + components: + - type: Transform + pos: 11.5,-72.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 18869 + components: + - type: Transform + pos: 76.5,-52.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 18870 + components: + - type: Transform + pos: 2.5,37.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 18855 + components: + - type: Transform + pos: -64.5,2.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 18873 + components: + - type: Transform + pos: 79.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 18872 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 18875 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 18874 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 18876 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 18877 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 18883 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 18884 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 18885 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 18878 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 18886 + components: + - type: Transform + pos: 69.5,-1.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 18887 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 18882 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 18888 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 18889 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 18890 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 18891 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 18893 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 18895 + components: + - type: Transform + pos: -0.5,-66.5 + parent: 2 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 18896 + components: + - type: Transform + pos: -64.5,-9.5 + parent: 2 + - uid: 18897 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 18898 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 18902 + components: + - type: Transform + pos: 81.5,-9.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 18894 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 18903 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 18904 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 18905 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 18906 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 18907 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 18910 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 18911 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 18912 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 18913 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 18914 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 18920 + components: + - type: Transform + pos: -24.5,-69.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 18915 + components: + - type: Transform + pos: -32.5,-31.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 18916 + components: + - type: Transform + pos: 71.5,-36.5 + parent: 2 +- proto: DefaultStationBeaconRND + entities: + - uid: 18918 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 18919 + components: + - type: Transform + pos: 60.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 18975 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 18921 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - uid: 18922 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 18923 + components: + - type: Transform + pos: 61.5,-31.5 + parent: 2 + - uid: 18924 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 + - uid: 19799 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 18917 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 18871 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 19067 + components: + - type: Transform + pos: -40.5,-61.5 + parent: 2 + - uid: 19459 + components: + - type: Transform + pos: -49.5,25.5 + parent: 2 + - uid: 19800 + components: + - type: Transform + pos: 81.5,-64.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 19802 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 19911 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 19823 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 20003 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 20004 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 20430 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 20102 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 - proto: Defibrillator entities: - uid: 4791 @@ -87179,38 +87702,67 @@ entities: parent: 2 - proto: Dresser entities: - - uid: 1045 - components: - - type: Transform - pos: -33.5,-29.5 - parent: 2 - - uid: 11636 - components: - - type: Transform - pos: -11.5,-22.5 - parent: 2 - uid: 12768 components: - type: Transform pos: 20.5,4.5 parent: 2 - - uid: 12770 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 2 - - uid: 26771 - components: - - type: Transform - pos: -2.5,30.5 - parent: 2 -- proto: DresserFilled +- proto: DresserCaptainFilled entities: - uid: 9260 components: - type: Transform pos: 8.5,-21.5 parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 9131 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 18828 + components: + - type: Transform + pos: 43.5,-44.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 7426 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 18844 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 7256 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 18801 + components: + - type: Transform + pos: 69.5,-35.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 9240 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 - proto: DrinkAntifreeze entities: - uid: 10322 @@ -87253,16 +87805,16 @@ entities: parent: 2 - proto: DrinkGoldenCup entities: + - uid: 2040 + components: + - type: Transform + pos: 5.3880453,-12.072558 + parent: 2 - uid: 12775 components: - type: Transform pos: -33.51487,5.3832693 parent: 2 - - uid: 19459 - components: - - type: Transform - pos: 5.4589663,-11.501776 - parent: 2 - proto: DrinkHotCoffee entities: - uid: 1819 @@ -87270,11 +87822,6 @@ entities: - type: Transform pos: 22.414787,-27.054144 parent: 2 - - uid: 9348 - components: - - type: Transform - pos: 5.7561684,-12.084822 - parent: 2 - uid: 11676 components: - type: Transform @@ -120045,6 +120592,13 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' +- proto: Gateway + entities: + - uid: 18826 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 - proto: GeigerCounter entities: - uid: 13000 @@ -120119,6 +120673,13 @@ entities: - type: Transform pos: -18.5,-42.5 parent: 2 +- proto: GlassBoxLaserFilled + entities: + - uid: 9340 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 - proto: GravityGenerator entities: - uid: 16929 @@ -121757,11 +122318,6 @@ entities: - type: Transform pos: 84.5,-6.5 parent: 2 - - uid: 17251 - components: - - type: Transform - pos: 83.5,-6.5 - parent: 2 - uid: 17252 components: - type: Transform @@ -121777,11 +122333,6 @@ entities: - type: Transform pos: 83.5,-9.5 parent: 2 - - uid: 17255 - components: - - type: Transform - pos: 83.5,-10.5 - parent: 2 - uid: 17256 components: - type: Transform @@ -128141,11 +128692,6 @@ entities: parent: 2 - proto: KitchenReagentGrinder entities: - - uid: 1171 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 2 - uid: 18511 components: - type: Transform @@ -128161,6 +128707,11 @@ entities: - type: Transform pos: 34.5,-54.5 parent: 2 + - uid: 18823 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 - uid: 18866 components: - type: Transform @@ -128570,15 +129121,16 @@ entities: showEnts: False occludes: True ents: - - 19166 - - 19160 - - 19159 - - 19144 - - 19140 - - 19125 - - 19120 - - 19117 - 19114 + - 19117 + - 19120 + - 19125 + - 19140 + - 19144 + - 19159 + - 19160 + - 19166 + - 1045 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -128594,8 +129146,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 2.146141 - - 8.073578 + - 1.9176816 + - 7.2141356 - 0 - 0 - 0 @@ -128624,15 +129176,16 @@ entities: showEnts: False occludes: True ents: - - 19167 - - 19180 - - 19183 - 19184 - - 19187 - - 19208 - - 19211 - - 19223 + - 19183 + - 19180 + - 19167 - 19224 + - 19223 + - 19211 + - 19208 + - 19187 + - 1046 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -128648,8 +129201,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 2.146141 - - 8.073578 + - 1.9176816 + - 7.2141356 - 0 - 0 - 0 @@ -128678,15 +129231,16 @@ entities: showEnts: False occludes: True ents: - - 19232 - - 19243 - - 19244 - - 19248 - - 19283 - - 19540 - - 19584 - - 19585 + - 1047 - 19586 + - 19585 + - 19584 + - 19540 + - 19283 + - 19248 + - 19244 + - 19243 + - 19232 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -128903,53 +129457,13 @@ entities: - 0 - 0 - 0 -- proto: LockerCaptainFilled +- proto: LockerCaptainFilledNoLaser entities: - - uid: 11122 + - uid: 1191 components: - type: Transform pos: 6.5,-22.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14966 - moles: - - 1.9744498 - - 7.427692 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11146 - - 11147 - - 11161 - - 11190 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerChemistryFilled entities: - uid: 11659 @@ -128970,8 +129484,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 + - 2.146141 + - 8.073578 - 0 - 0 - 0 @@ -129056,7 +129570,7 @@ entities: ents: - 18610 - 18609 - - 18608 + - 10843 - 18788 paper_label: !type:ContainerSlot showEnts: False @@ -129400,6 +129914,26 @@ entities: ent: null - proto: LockerEvidence entities: + - uid: 10903 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 10944 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - uid: 10991 + components: + - type: Transform + pos: 59.5,-31.5 + parent: 2 - uid: 18580 components: - type: Transform @@ -129942,9 +130476,9 @@ entities: showEnts: False occludes: True ents: - - 27194 - - 27193 - 27192 + - 27193 + - 27194 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -129995,11 +130529,12 @@ entities: - 12772 - 12762 - 27608 - - 27612 - 27613 - 27614 - 12744 - 11058 + - 1170 + - 1171 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -130637,26 +131172,6 @@ entities: - type: Transform pos: 39.5,-16.5 parent: 2 - - uid: 20712 - components: - - type: Transform - pos: -22.5,-31.5 - parent: 2 - - uid: 22656 - components: - - type: Transform - pos: 7.5,-50.5 - parent: 2 - - uid: 25136 - components: - - type: Transform - pos: -61.5,5.5 - parent: 2 - - uid: 27113 - components: - - type: Transform - pos: 59.5,-31.5 - parent: 2 - uid: 27216 components: - type: Transform @@ -130834,6 +131349,13 @@ entities: - type: DeviceLinkSink links: - 11014 +- proto: MachineCentrifuge + entities: + - uid: 18815 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 - proto: MachineFrame entities: - uid: 16602 @@ -130856,11 +131378,6 @@ entities: - type: Transform pos: 45.5,-28.5 parent: 2 - - uid: 27563 - components: - - type: Transform - pos: -21.5,7.5 - parent: 2 - proto: MachineFrameDestroyed entities: - uid: 18639 @@ -130868,21 +131385,6 @@ entities: - type: Transform pos: -52.5,5.5 parent: 2 - - uid: 27558 - components: - - type: Transform - pos: -21.5,5.5 - parent: 2 - - uid: 27559 - components: - - type: Transform - pos: -22.5,7.5 - parent: 2 - - uid: 27560 - components: - - type: Transform - pos: -21.5,6.5 - parent: 2 - proto: MagazineBoxMagnum entities: - uid: 18788 @@ -130906,18 +131408,6 @@ entities: - type: Transform pos: 21.557737,34.51745 parent: 2 -- proto: MagazinePistolSubMachineGun - entities: - - uid: 20003 - components: - - type: Transform - pos: 10.764592,23.424648 - parent: 2 - - uid: 26979 - components: - - type: Transform - pos: 10.764592,23.424648 - parent: 2 - proto: MagazinePistolSubMachineGunPractice entities: - uid: 27645 @@ -130925,18 +131415,6 @@ entities: - type: Transform pos: 21.57809,35.95636 parent: 2 -- proto: MagazinePistolSubMachineGunRubber - entities: - - uid: 20004 - components: - - type: Transform - pos: 10.498967,23.393398 - parent: 2 - - uid: 22631 - components: - - type: Transform - pos: 10.498967,23.393398 - parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 19793 @@ -132739,6 +133217,13 @@ entities: - type: Transform pos: 22.69643,-36.389404 parent: 2 +- proto: NTFlag + entities: + - uid: 11190 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 - proto: NuclearBomb entities: - uid: 18783 @@ -132887,13 +133372,6 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 18801 - components: - - type: Transform - pos: 62.5,-37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 18802 components: - type: Transform @@ -133295,13 +133773,6 @@ entities: - type: Transform pos: 62.5,-11.5 parent: 2 -- proto: PaintingNightHawks - entities: - - uid: 18815 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 2 - proto: PaintingSadClown entities: - uid: 18816 @@ -133330,11 +133801,6 @@ entities: - type: Transform pos: 58.5,-11.5 parent: 2 - - uid: 19823 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 2 - proto: ParchisBoard entities: - uid: 18925 @@ -133615,11 +134081,6 @@ entities: - type: Transform pos: 57.5,-31.5 parent: 2 - - uid: 18975 - components: - - type: Transform - pos: 69.5,-34.5 - parent: 2 - uid: 18976 components: - type: Transform @@ -133802,6 +134263,13 @@ entities: parent: 2 - proto: PlasmaCanister entities: + - uid: 18693 + components: + - type: Transform + pos: 62.5,-37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 19004 components: - type: Transform @@ -134204,13 +134672,6 @@ entities: - type: Transform pos: 2.5,-50.5 parent: 2 -- proto: PosterLegitCleanliness - entities: - - uid: 19067 - components: - - type: Transform - pos: -51.5,-3.5 - parent: 2 - proto: PosterLegitDickGumshue entities: - uid: 19068 @@ -134495,6 +134956,13 @@ entities: - type: Transform pos: 49.5,-11.5 parent: 2 +- proto: PottedPlant28 + entities: + - uid: 11207 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 - proto: PottedPlant29 entities: - uid: 19121 @@ -134569,11 +135037,6 @@ entities: - type: Transform pos: 34.5,-40.5 parent: 2 - - uid: 12395 - components: - - type: Transform - pos: -9.5,-22.5 - parent: 2 - uid: 19131 components: - type: Transform @@ -135085,6 +135548,18 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 + - uid: 11146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-11.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-15.5 + parent: 2 - uid: 11352 components: - type: Transform @@ -143294,11 +143769,6 @@ entities: - type: Transform pos: 84.5,-10.5 parent: 2 - - uid: 20480 - components: - - type: Transform - pos: 83.5,-10.5 - parent: 2 - uid: 20481 components: - type: Transform @@ -143314,11 +143784,6 @@ entities: - type: Transform pos: 83.5,-7.5 parent: 2 - - uid: 20484 - components: - - type: Transform - pos: 83.5,-6.5 - parent: 2 - uid: 20485 components: - type: Transform @@ -146268,6 +146733,48 @@ entities: - type: Transform pos: 52.096134,-22.664438 parent: 2 +- proto: Screen + entities: + - uid: 9350 + components: + - type: Transform + pos: 83.5,-6.5 + parent: 2 + - uid: 12620 + components: + - type: Transform + pos: 83.5,-10.5 + parent: 2 + - uid: 18856 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 18857 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 18858 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 18859 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 18860 + components: + - type: Transform + pos: 65.5,-11.5 + parent: 2 + - uid: 18861 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 - proto: Screwdriver entities: - uid: 21122 @@ -146483,7 +146990,7 @@ entities: - uid: 12765 components: - type: Transform - pos: 18.4631,-20.911715 + pos: 19.183372,-20.298962 parent: 2 - uid: 21156 components: @@ -146723,92 +147230,6 @@ entities: - type: Transform pos: 37.552475,-40.47911 parent: 2 -- proto: ShellShotgunBeanbag - entities: - - uid: 27174 - components: - - type: Transform - parent: 27173 - - type: Physics - canCollide: False - - uid: 27175 - components: - - type: Transform - parent: 27173 - - type: Physics - canCollide: False - - uid: 27176 - components: - - type: Transform - parent: 27173 - - type: Physics - canCollide: False - - uid: 27206 - components: - - type: Transform - parent: 27173 - - type: Physics - canCollide: False - - uid: 27228 - components: - - type: Transform - parent: 27173 - - type: Physics - canCollide: False - - uid: 27327 - components: - - type: Transform - parent: 27173 - - type: Physics - canCollide: False - - uid: 27332 - components: - - type: Transform - parent: 27173 - - type: Physics - canCollide: False - - uid: 27355 - components: - - type: Transform - parent: 27333 - - type: Physics - canCollide: False - - uid: 27356 - components: - - type: Transform - parent: 27333 - - type: Physics - canCollide: False - - uid: 27357 - components: - - type: Transform - parent: 27333 - - type: Physics - canCollide: False - - uid: 27358 - components: - - type: Transform - parent: 27333 - - type: Physics - canCollide: False - - uid: 27359 - components: - - type: Transform - parent: 27333 - - type: Physics - canCollide: False - - uid: 27360 - components: - - type: Transform - parent: 27333 - - type: Physics - canCollide: False - - uid: 27361 - components: - - type: Transform - parent: 27333 - - type: Physics - canCollide: False - proto: ShuttersNormal entities: - uid: 18729 @@ -148182,6 +148603,9 @@ entities: entities: - uid: 1004 components: + - type: MetaData + desc: Знак, указывающий на оружейную для офицеров. + name: знак "офицерская оружейная" - type: Transform pos: 8.5,25.5 parent: 2 @@ -148779,6 +149203,13 @@ entities: - type: Transform pos: -12.5,28.5 parent: 2 +- proto: SignJanitor + entities: + - uid: 11636 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 - proto: SignKiddiePlaque entities: - uid: 21403 @@ -151224,6 +151655,18 @@ entities: - type: Transform pos: 33.5,1.5 parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 1139 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - uid: 18851 + components: + - type: Transform + pos: 54.5,-19.5 + parent: 2 - proto: SpawnPointBotanist entities: - uid: 21838 @@ -151834,48 +152277,6 @@ entities: parent: 2 - proto: StasisBed entities: - - uid: 991 - components: - - type: MetaData - desc: Позволяет вам очень быстро уснуть, и также быстро скоротать время. - - type: Transform - pos: 25.5,18.5 - parent: 2 - - uid: 992 - components: - - type: MetaData - desc: Позволяет вам очень быстро уснуть, и также быстро скоротать время. - - type: Transform - pos: 23.5,19.5 - parent: 2 - - uid: 1046 - components: - - type: MetaData - desc: Позволяет вам очень быстро уснуть, и также быстро скоротать время. - - type: Transform - pos: 25.5,17.5 - parent: 2 - - uid: 1047 - components: - - type: MetaData - desc: Позволяет вам очень быстро уснуть, и также быстро скоротать время. - - type: Transform - pos: 23.5,18.5 - parent: 2 - - uid: 11031 - components: - - type: MetaData - desc: Позволяет вам очень быстро уснуть, и также быстро скоротать время. - - type: Transform - pos: 25.5,19.5 - parent: 2 - - uid: 11046 - components: - - type: MetaData - desc: Позволяет вам очень быстро уснуть, и также быстро скоротать время. - - type: Transform - pos: 23.5,17.5 - parent: 2 - uid: 22369 components: - type: Transform @@ -152244,6 +152645,13 @@ entities: parent: 2 - proto: StorageCanister entities: + - uid: 18608 + components: + - type: Transform + pos: 62.5,-33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 22005 components: - type: Transform @@ -152356,13 +152764,6 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 22023 - components: - - type: Transform - pos: 62.5,-33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 22024 components: - type: Transform @@ -152765,12 +153166,12 @@ entities: showEnts: False occludes: True ents: - - 16093 - - 15395 - - 13776 - - 13775 - - 13482 - 13481 + - 13482 + - 13775 + - 13776 + - 15395 + - 16093 - uid: 19024 components: - type: Transform @@ -152992,8 +153393,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -153018,12 +153419,12 @@ entities: showEnts: False occludes: True ents: - - 22847 - - 22845 - - 22821 - 22782 - - 22778 + - 22821 + - 22845 + - 22847 - 22777 + - 22778 - uid: 22874 components: - type: Transform @@ -153377,6 +153778,32 @@ entities: - type: Transform pos: 4.5,-59.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: SuitStorageEngi entities: - uid: 22048 @@ -155465,16 +155892,6 @@ entities: - type: Transform pos: 79.5,-47.5 parent: 2 - - uid: 22434 - components: - - type: Transform - pos: 69.5,-34.5 - parent: 2 - - uid: 22435 - components: - - type: Transform - pos: 69.5,-35.5 - parent: 2 - uid: 22436 components: - type: Transform @@ -155920,18 +156337,27 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-30.5 parent: 2 + - uid: 991 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 - uid: 1161 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,24.5 parent: 2 - - uid: 1170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-21.5 - parent: 2 - uid: 1900 components: - type: Transform @@ -155990,12 +156416,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,3.5 parent: 2 - - uid: 10569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-20.5 - parent: 2 - uid: 10781 components: - type: Transform @@ -156023,11 +156443,6 @@ entities: - type: Transform pos: 33.5,-4.5 parent: 2 - - uid: 15950 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 2 - uid: 18125 components: - type: Transform @@ -156057,6 +156472,11 @@ entities: - type: Transform pos: -19.5,1.5 parent: 2 + - uid: 18824 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 - uid: 18832 components: - type: Transform @@ -156368,11 +156788,6 @@ entities: - type: Transform pos: 5.5,37.5 parent: 2 - - uid: 22593 - components: - - type: Transform - pos: 48.5,-10.5 - parent: 2 - uid: 22594 components: - type: Transform @@ -158016,6 +158431,13 @@ entities: - type: Transform pos: 9.677716,-16.79865 parent: 2 +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 12217 + components: + - type: Transform + pos: 43.47428,-44.073708 + parent: 2 - proto: ToyFigurineHeadOfPersonnel entities: - uid: 21117 @@ -158042,6 +158464,13 @@ entities: - type: Transform pos: 45.487507,-73.57517 parent: 2 +- proto: ToyFigurineResearchDirector + entities: + - uid: 11208 + components: + - type: Transform + pos: 69.45559,-35.166206 + parent: 2 - proto: ToyFigurineWarden entities: - uid: 20881 @@ -158085,6 +158514,14 @@ entities: - type: Transform pos: -28.5,-55.5 parent: 2 +- proto: TrainingBomb + entities: + - uid: 11066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,32.5 + parent: 2 - proto: TrashBag entities: - uid: 9130 @@ -158369,16 +158806,6 @@ entities: - type: Transform pos: 8.5,-27.5 parent: 2 - - uid: 27561 - components: - - type: Transform - pos: -20.5,6.5 - parent: 2 - - uid: 27562 - components: - - type: Transform - pos: -22.5,5.5 - parent: 2 - proto: UniformPrinter entities: - uid: 11551 @@ -158656,6 +159083,13 @@ entities: - type: Transform pos: 26.5,-3.5 parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 1199 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 2 - proto: VendingMachineDetDrobe entities: - uid: 22917 @@ -159011,6 +159445,15 @@ entities: - type: Transform pos: -12.5,-74.5 parent: 2 +- proto: VoiceRecorder + entities: + - uid: 10843 + components: + - type: Transform + parent: 18571 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WallmountTelescreen entities: - uid: 22974 @@ -159203,6 +159646,11 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-37.5 parent: 2 + - uid: 10569 + components: + - type: Transform + pos: 83.5,-10.5 + parent: 2 - uid: 10870 components: - type: Transform @@ -159227,6 +159675,11 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 + - uid: 12395 + components: + - type: Transform + pos: 83.5,-6.5 + parent: 2 - uid: 17899 components: - type: Transform @@ -170268,6 +170721,11 @@ entities: - type: Transform pos: 17.5,8.5 parent: 2 + - uid: 459 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 - uid: 496 components: - type: Transform @@ -178967,11 +179425,6 @@ entities: - type: Transform pos: 26.5,-32.5 parent: 2 - - uid: 20430 - components: - - type: Transform - pos: 43.5,-44.5 - parent: 2 - uid: 26703 components: - type: Transform @@ -179238,6 +179691,21 @@ entities: parent: 2 - proto: WeaponDisabler entities: + - uid: 18843 + components: + - type: Transform + pos: 6.457762,39.462036 + parent: 2 + - uid: 18845 + components: + - type: Transform + pos: 6.457762,39.649536 + parent: 2 + - uid: 18847 + components: + - type: Transform + pos: 6.457762,39.274536 + parent: 2 - uid: 26837 components: - type: Transform @@ -179256,6 +179724,18 @@ entities: - type: Transform pos: 21.421555,34.79309 parent: 2 +- proto: WeaponDisablerSMG + entities: + - uid: 18840 + components: + - type: Transform + pos: 10.510874,23.648869 + parent: 2 + - uid: 18841 + components: + - type: Transform + pos: 10.510874,23.414494 + parent: 2 - proto: WeaponEgun entities: - uid: 10377 @@ -179263,11 +179743,6 @@ entities: - type: Transform pos: 8.479778,24.679192 parent: 2 - - uid: 12217 - components: - - type: Transform - pos: 8.479778,24.522942 - parent: 2 - uid: 16616 components: - type: Transform @@ -179330,60 +179805,6 @@ entities: parent: 2 - proto: WeaponShotgunEnforcer entities: - - uid: 27173 - components: - - type: Transform - pos: 8.446559,23.75608 - parent: 2 - - type: BallisticAmmoProvider - entities: - - 27174 - - 27175 - - 27176 - - 27206 - - 27228 - - 27327 - - 27332 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: - - 27174 - - 27175 - - 27176 - - 27206 - - 27228 - - 27327 - - 27332 - - uid: 27333 - components: - - type: Transform - pos: 8.446559,23.63108 - parent: 2 - - type: BallisticAmmoProvider - entities: - - 27355 - - 27356 - - 27357 - - 27358 - - 27359 - - 27360 - - 27361 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: - - 27355 - - 27356 - - 27357 - - 27358 - - 27359 - - 27360 - - 27361 - uid: 27399 components: - type: Transform @@ -179394,17 +179815,17 @@ entities: - type: Transform pos: -2.4856024,38.659256 parent: 2 -- proto: WeaponSubMachineGunDrozdRubber +- proto: WeaponShotgunEnforcerRubber entities: - - uid: 19911 + - uid: 12770 components: - type: Transform - pos: 10.582288,23.703438 + pos: 8.417124,23.711369 parent: 2 - - uid: 26978 + - uid: 12935 components: - type: Transform - pos: 10.582288,23.625313 + pos: 8.417124,23.601994 parent: 2 - proto: WeaponSubMachineGunWt550 entities: @@ -179430,40 +179851,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponTaser - entities: - - uid: 18608 - components: - - type: Transform - parent: 18571 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26836 - components: - - type: Transform - pos: 3.824264,33.438606 - parent: 2 - - uid: 27607 - components: - - type: Transform - pos: 6.5230465,39.67872 - parent: 2 - - uid: 27609 - components: - - type: Transform - pos: 6.5230465,39.52247 - parent: 2 - - uid: 27610 - components: - - type: Transform - pos: 6.5230465,39.600594 - parent: 2 - - uid: 27611 - components: - - type: Transform - pos: 6.5230465,39.444344 - parent: 2 - proto: WeaponTurretSyndicateBroken entities: - uid: 26774 @@ -179567,6 +179954,27 @@ entities: parent: 2 - proto: WelderIndustrial entities: + - uid: 1045 + components: + - type: Transform + parent: 18558 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1046 + components: + - type: Transform + parent: 18559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1047 + components: + - type: Transform + parent: 18560 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 19840 components: - type: Transform @@ -179961,6 +180369,12 @@ entities: parent: 2 - proto: WindoorHydroponicsLocked entities: + - uid: 18848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-10.5 + parent: 2 - uid: 26854 components: - type: MetaData @@ -179969,14 +180383,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-10.5 parent: 2 - - uid: 26855 - components: - - type: MetaData - name: Hydroponics Desk - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-10.5 - parent: 2 - proto: WindoorKitchenHydroponicsLocked entities: - uid: 26856 diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index af6ff0b10c..ef5a7fcdbf 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -102,8 +102,8 @@ - type: entity id: ActionAGhostShowSolar - name: Solar Control Interface - description: View a solar control interface. + name: action-name-show-solar-console + description: action-description-show-solar-console noSpawn: true components: - type: InstantAction @@ -115,8 +115,8 @@ - type: entity id: ActionAGhostShowCommunications - name: Communications Interface - description: View a communications interface. + name: action-name-show-communications-console + description: action-description-show-communications-console noSpawn: true components: - type: InstantAction @@ -128,8 +128,8 @@ - type: entity id: ActionAGhostShowRadar - name: Mass Scanner Interface - description: View a mass scanner interface. + name: action-name-show-radar-console + description: action-description-show-radar-console noSpawn: true components: - type: InstantAction @@ -141,8 +141,8 @@ - type: entity id: ActionAGhostShowCargo - name: Cargo Ordering Interface - description: View a cargo ordering interface. + name: action-name-show-cargo-console + description: action-description-show-cargo-console noSpawn: true components: - type: InstantAction @@ -154,8 +154,8 @@ - type: entity id: ActionAGhostShowCrewMonitoring - name: Crew Monitoring Interface - description: View a crew monitoring interface. + name: action-name-show-crew-monitoring-console + description: action-description-crew-monitoring-console noSpawn: true components: - type: InstantAction @@ -167,8 +167,8 @@ - type: entity id: ActionAGhostShowStationRecords - name: Station Records Interface - description: View a station records Interface + name: action-name-show-station-records-console + description: action-description-show-station-records-console noSpawn: true components: - type: InstantAction diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 114c3fa747..c86d0ed709 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -51,8 +51,8 @@ - type: entity id: ActionGhostBoo - name: Boo! - description: Scare your crew members because of boredom! + name: ghost-gui-scare-name + description: ghost-gui-scare-desc noSpawn: true components: - type: InstantAction @@ -63,8 +63,8 @@ - type: entity id: ActionToggleLighting - name: Toggle All Lighting - description: Toggle all light rendering to better observe dark areas. + name: ghost-gui-toggle-lighting-manager-name + description: ghost-gui-toggle-lighting-manager-desc noSpawn: true components: - type: InstantAction @@ -75,8 +75,8 @@ - type: entity id: ActionToggleFov - name: Toggle FoV - description: Toggles field-of-view in order to see what players see. + name: ghost-gui-toggle-fov-name + description: ghost-gui-toggle-fov-desc noSpawn: true components: - type: InstantAction @@ -87,8 +87,8 @@ - type: entity id: ActionToggleGhosts - name: Toggle Ghosts - description: Toggle the visibility of other ghosts. + name: ghost-gui-toggle-ghost-visibility-name + description: ghost-gui-toggle-ghost-visibility-desc noSpawn: true components: - type: InstantAction @@ -99,8 +99,8 @@ - type: entity id: ActionToggleGhostHearing - name: Toggle Ghost Hearing - description: Toggle between hearing all messages and hearing only radio & nearby messages. + name: ghost-gui-toggle-ghost-hearing-name + description: ghost-gui-toggle-ghost-hearing-desc noSpawn: true components: - type: InstantAction diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/patch.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/patch.yml index 1f25e5c06e..a3c6f738d9 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/patch.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/patch.yml @@ -50,8 +50,8 @@ patch: maxVol: 40 reagents: - - ReagentId: Bicaridine - Quantity: 10 + - ReagentId: StypticPowder + Quantity: 20 - type: entity name: burn patch @@ -64,5 +64,5 @@ patch: maxVol: 40 reagents: - - ReagentId: Dermaline - Quantity: 10 + - ReagentId: SilverSulfadiazine + Quantity: 20 diff --git a/Resources/Prototypes/Maps/Pools/White.yml b/Resources/Prototypes/Maps/Pools/White.yml index 4941567f1c..6f1a8fa868 100644 --- a/Resources/Prototypes/Maps/Pools/White.yml +++ b/Resources/Prototypes/Maps/Pools/White.yml @@ -4,6 +4,9 @@ - WonderBox - Polaris - Scoupidia - - Void - Triumph - WhiteBox + - Bagel # Temporary + - Meta # Temporary + - Train # Temporary +# - Void diff --git a/Resources/Prototypes/Reagents/elements.yml b/Resources/Prototypes/Reagents/elements.yml index 2e6e81cae7..4bd0baf838 100644 --- a/Resources/Prototypes/Reagents/elements.yml +++ b/Resources/Prototypes/Reagents/elements.yml @@ -268,15 +268,13 @@ meltingPoint: 700.0 boilingPoint: 1737.0 reactiveEffects: - Acidic: - methods: [ Touch ] + metabolisms: + Poison: effects: - !type:HealthChange - scaleByQuantity: true damage: types: - Heat: 0.5 - Cellular: 1 + Heat: 1 - type: reagent id: Silicon diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index d993d3bab3..627cb08608 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -1183,12 +1183,19 @@ scaleByQuantity: true damage: groups: - Brute: -2.5 + Brute: -1.25 types: - Heat: -2.5 - Shock: -2.5 - Cold: -2.5 - Poison: 0.66 + Heat: -1.25 + Shock: -1.25 + Cold: -1.25 + metabolisms: + Medicine: + effects: + - !type:HealthChange + conditions: + damage: + types: + Poison: 1 slippery: true - type: reagent @@ -1206,7 +1213,7 @@ scaleByQuantity: true damage: types: - Heat: -1 + Heat: -2 metabolisms: Medicine: effects: @@ -1214,7 +1221,7 @@ conditions: damage: types: - Heat: -1.0 + Heat: -2.0 Poison: 0.5 - type: reagent @@ -1232,7 +1239,7 @@ scaleByQuantity: true damage: groups: - Brute: -1 + Brute: -2 metabolisms: Medicine: effects: @@ -1240,6 +1247,6 @@ conditions: damage: groups: - Brute: -1 + Brute: -2 types: Poison: 0.5