From 2e9c8f691c6a1e5f8e45899866a9fe443f9f4b50 Mon Sep 17 00:00:00 2001 From: "Alice \"Arimah\" Heurlin" <30327355+arimah@users.noreply.github.com> Date: Sat, 30 Mar 2024 02:25:42 +0100 Subject: [PATCH 01/83] Fix guardian damage transfer (#26541) --- Content.Server/Guardian/GuardianSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Guardian/GuardianSystem.cs b/Content.Server/Guardian/GuardianSystem.cs index e58f997b211..97d4eb06803 100644 --- a/Content.Server/Guardian/GuardianSystem.cs +++ b/Content.Server/Guardian/GuardianSystem.cs @@ -256,7 +256,7 @@ private void OnHostStateChange(EntityUid uid, GuardianHostComponent component, M /// private void OnGuardianDamaged(EntityUid uid, GuardianComponent component, DamageChangedEvent args) { - if (args.DamageDelta == null || component.Host == null || component.DamageShare > 0) + if (args.DamageDelta == null || component.Host == null || component.DamageShare == 0) return; _damageSystem.TryChangeDamage( From 72c6a14d593ea6eafc7477292657166968c75401 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 30 Mar 2024 01:26:48 +0000 Subject: [PATCH 02/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 216ca873049..c52c19a50c9 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: FairlySadPanda - changes: - - message: Lobby restart sound effects no longer cut-off. - type: Fix - id: 5753 - time: '2024-01-20T03:40:01.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24044 - author: casperr04 changes: - message: Fixed players being able to re-anchor items after fultoning them. @@ -3794,3 +3787,11 @@ id: 6252 time: '2024-03-30T00:01:39.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26539 +- author: arimah + changes: + - message: Holoparasites, holoclowns and other guardians correctly transfer damage + to their hosts again. + type: Fix + id: 6253 + time: '2024-03-30T01:25:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26541 From 3b791459c74c6b56c8ae6204a936f6de06674b93 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 30 Mar 2024 02:40:55 +0100 Subject: [PATCH 03/83] Refactor FTL time tracking code to fix a UI bug (#26538) The FTL UI on the shuttle console would reset the FTL progress bar every time you open it. This is because the server only sends "time until completion", not a start/end time. The FTL code now uses a separate start/end time so the exact same progress bar can be preserved. For convenience, I made a StartEndTime record struct that stores the actual tuple. This is now used by the code and has some helpers. --- Content.Client/Shuttles/UI/MapScreen.xaml.cs | 27 ++------ .../Shuttles/Components/FTLComponent.cs | 7 +- .../Shuttles/Systems/ShuttleConsoleSystem.cs | 14 ++-- .../Systems/ShuttleSystem.FasterThanLight.cs | 28 ++++---- .../Shuttles/Systems/ShuttleSystem.cs | 4 +- .../BUIStates/ShuttleMapInterfaceState.cs | 9 +-- Content.Shared/Timing/StartEndTime.cs | 68 +++++++++++++++++++ 7 files changed, 111 insertions(+), 46 deletions(-) create mode 100644 Content.Shared/Timing/StartEndTime.cs diff --git a/Content.Client/Shuttles/UI/MapScreen.xaml.cs b/Content.Client/Shuttles/UI/MapScreen.xaml.cs index 8430699bae1..225d1be14e5 100644 --- a/Content.Client/Shuttles/UI/MapScreen.xaml.cs +++ b/Content.Client/Shuttles/UI/MapScreen.xaml.cs @@ -5,6 +5,7 @@ using Content.Shared.Shuttles.Components; using Content.Shared.Shuttles.Systems; using Content.Shared.Shuttles.UI.MapObjects; +using Content.Shared.Timing; using Robust.Client.AutoGenerated; using Robust.Client.Graphics; using Robust.Client.UserInterface; @@ -38,16 +39,11 @@ public sealed partial class MapScreen : BoxContainer private EntityUid? _shuttleEntity; private FTLState _state; - private float _ftlDuration; + private StartEndTime _ftlTime; private List _beacons = new(); private List _exclusions = new(); - /// - /// When the next FTL state change happens. - /// - private TimeSpan _nextFtlTime; - private TimeSpan _nextPing; private TimeSpan _pingCooldown = TimeSpan.FromSeconds(3); private TimeSpan _nextMapDequeue; @@ -114,8 +110,7 @@ public void UpdateState(ShuttleMapInterfaceState state) _beacons = state.Destinations; _exclusions = state.Exclusions; _state = state.FTLState; - _ftlDuration = state.FTLDuration; - _nextFtlTime = _timing.CurTime + TimeSpan.FromSeconds(_ftlDuration); + _ftlTime = state.FTLTime; MapRadar.InFtl = true; MapFTLState.Text = Loc.GetString($"shuttle-console-ftl-state-{_state.ToString()}"); @@ -511,20 +506,8 @@ protected override void FrameUpdate(FrameEventArgs args) MapRebuildButton.Disabled = false; } - var ftlDiff = (float) (_nextFtlTime - _timing.CurTime).TotalSeconds; - - float ftlRatio; - - if (_ftlDuration.Equals(0f)) - { - ftlRatio = 1f; - } - else - { - ftlRatio = Math.Clamp(1f - (ftlDiff / _ftlDuration), 0f, 1f); - } - - FTLBar.Value = ftlRatio; + var progress = _ftlTime.ProgressAt(curTime); + FTLBar.Value = float.IsFinite(progress) ? progress : 1; } protected override void Draw(DrawingHandleScreen handle) diff --git a/Content.Server/Shuttles/Components/FTLComponent.cs b/Content.Server/Shuttles/Components/FTLComponent.cs index d15f65a3555..a3da4855f75 100644 --- a/Content.Server/Shuttles/Components/FTLComponent.cs +++ b/Content.Server/Shuttles/Components/FTLComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Shuttles.Systems; using Content.Shared.Tag; +using Content.Shared.Timing; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -17,13 +18,13 @@ public sealed partial class FTLComponent : Component public FTLState State = FTLState.Available; [ViewVariables(VVAccess.ReadWrite)] - public float StartupTime = 0f; + public StartEndTime StateTime; [ViewVariables(VVAccess.ReadWrite)] - public float TravelTime = 0f; + public float StartupTime = 0f; [ViewVariables(VVAccess.ReadWrite)] - public float Accumulator = 0f; + public float TravelTime = 0f; /// /// Coordinates to arrive it: May be relative to another grid (for docking) or map coordinates. diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs index f0368ed3a95..a4f2c7b4db3 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Tag; using Content.Shared.Movement.Systems; using Content.Shared.Shuttles.UI.MapObjects; +using Content.Shared.Timing; using Robust.Server.GameObjects; using Robust.Shared.Collections; using Robust.Shared.GameStates; @@ -257,7 +258,11 @@ private void UpdateState(EntityUid consoleUid, ref DockingInterfaceState? dockSt else { navState = new NavInterfaceState(0f, null, null, new Dictionary>()); - mapState = new ShuttleMapInterfaceState(FTLState.Invalid, 0f, new List(), new List()); + mapState = new ShuttleMapInterfaceState( + FTLState.Invalid, + default, + new List(), + new List()); } if (_ui.TryGetUi(consoleUid, ShuttleConsoleUiKey.Key, out var bui)) @@ -408,12 +413,12 @@ public DockingInterfaceState GetDockState() public ShuttleMapInterfaceState GetMapState(Entity shuttle) { FTLState ftlState = FTLState.Available; - float stateDuration = 0f; + StartEndTime stateDuration = default; if (Resolve(shuttle, ref shuttle.Comp, false) && shuttle.Comp.LifeStage < ComponentLifeStage.Stopped) { ftlState = shuttle.Comp.State; - stateDuration = _shuttle.GetStateDuration(shuttle.Comp); + stateDuration = _shuttle.GetStateTime(shuttle.Comp); } List? beacons = null; @@ -422,7 +427,8 @@ public ShuttleMapInterfaceState GetMapState(Entity shuttle) GetExclusions(ref exclusions); return new ShuttleMapInterfaceState( - ftlState, stateDuration, + ftlState, + stateDuration, beacons ?? new List(), exclusions ?? new List()); } diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index cb322ac3964..51288691039 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -12,6 +12,7 @@ using Content.Shared.Shuttles.Components; using Content.Shared.Shuttles.Systems; using Content.Shared.StatusEffect; +using Content.Shared.Timing; using Content.Shared.Whitelist; using JetBrains.Annotations; using Robust.Shared.Audio; @@ -131,7 +132,7 @@ private EntityUid EnsureFTLMap() return mapUid; } - public float GetStateDuration(FTLComponent component) + public StartEndTime GetStateTime(FTLComponent component) { var state = component.State; @@ -141,9 +142,9 @@ public float GetStateDuration(FTLComponent component) case FTLState.Travelling: case FTLState.Arriving: case FTLState.Cooldown: - return component.Accumulator; + return component.StateTime; case FTLState.Available: - return 0f; + return default; default: throw new NotImplementedException(); } @@ -251,7 +252,9 @@ public void FTLToCoordinates( hyperspace.StartupTime = startupTime; hyperspace.TravelTime = hyperspaceTime; - hyperspace.Accumulator = hyperspace.StartupTime; + hyperspace.StateTime = StartEndTime.FromStartDuration( + _gameTiming.CurTime, + TimeSpan.FromSeconds(hyperspace.StartupTime)); hyperspace.TargetCoordinates = coordinates; hyperspace.TargetAngle = angle; hyperspace.PriorityTag = priorityTag; @@ -282,7 +285,9 @@ public void FTLToDock( var config = _dockSystem.GetDockingConfig(shuttleUid, target, priorityTag); hyperspace.StartupTime = startupTime; hyperspace.TravelTime = hyperspaceTime; - hyperspace.Accumulator = hyperspace.StartupTime; + hyperspace.StateTime = StartEndTime.FromStartDuration( + _gameTiming.CurTime, + TimeSpan.FromSeconds(hyperspace.StartupTime)); hyperspace.PriorityTag = priorityTag; _console.RefreshShuttleConsoles(shuttleUid); @@ -366,7 +371,7 @@ private void UpdateFTLStarting(Entity entity) // Reset rotation so they always face the same direction. xform.LocalRotation = Angle.Zero; _index += width + Buffer; - comp.Accumulator += comp.TravelTime - DefaultArrivalTime; + comp.StateTime = StartEndTime.FromCurTime(_gameTiming, comp.TravelTime - DefaultArrivalTime); Enable(uid, component: body); _physics.SetLinearVelocity(uid, new Vector2(0f, 20f), body: body); @@ -401,7 +406,7 @@ private void UpdateFTLTravelling(Entity entity) { var shuttle = entity.Comp2; var comp = entity.Comp1; - comp.Accumulator += DefaultArrivalTime; + comp.StateTime = StartEndTime.FromCurTime(_gameTiming, DefaultArrivalTime); comp.State = FTLState.Arriving; // TODO: Arrival effects // For now we'll just use the ss13 bubbles but we can do fancier. @@ -504,7 +509,7 @@ private void UpdateFTLArriving(Entity entity) } comp.State = FTLState.Cooldown; - comp.Accumulator += FTLCooldown; + comp.StateTime = StartEndTime.FromCurTime(_gameTiming, FTLCooldown); _console.RefreshShuttleConsoles(uid); _mapManager.SetMapPaused(mapId, false); Smimsh(uid, xform: xform); @@ -519,15 +524,14 @@ private void UpdateFTLCooldown(Entity entity) _console.RefreshShuttleConsoles(entity); } - private void UpdateHyperspace(float frameTime) + private void UpdateHyperspace() { + var curTime = _gameTiming.CurTime; var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var comp, out var shuttle)) { - comp.Accumulator -= frameTime; - - if (comp.Accumulator > 0f) + if (curTime < comp.StateTime.End) continue; var entity = (uid, comp, shuttle); diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 7c42753a7de..6dc25e8d766 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -19,6 +19,7 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Random; +using Robust.Shared.Timing; namespace Content.Server.Shuttles.Systems; @@ -30,6 +31,7 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly BiomeSystem _biomes = default!; [Dependency] private readonly BodySystem _bobby = default!; [Dependency] private readonly DockingSystem _dockSystem = default!; @@ -68,7 +70,7 @@ public override void Initialize() public override void Update(float frameTime) { base.Update(frameTime); - UpdateHyperspace(frameTime); + UpdateHyperspace(); } private void OnGridFixtureChange(EntityUid uid, FixturesComponent manager, GridFixtureChangeEvent args) diff --git a/Content.Shared/Shuttles/BUIStates/ShuttleMapInterfaceState.cs b/Content.Shared/Shuttles/BUIStates/ShuttleMapInterfaceState.cs index cee0daab4be..3cb7cb6412a 100644 --- a/Content.Shared/Shuttles/BUIStates/ShuttleMapInterfaceState.cs +++ b/Content.Shared/Shuttles/BUIStates/ShuttleMapInterfaceState.cs @@ -1,5 +1,6 @@ using Content.Shared.Shuttles.Systems; using Content.Shared.Shuttles.UI.MapObjects; +using Content.Shared.Timing; using Robust.Shared.Serialization; namespace Content.Shared.Shuttles.BUIStates; @@ -16,9 +17,9 @@ public sealed class ShuttleMapInterfaceState public readonly FTLState FTLState; /// - /// How long the FTL state takes. + /// When the current FTL state starts and ends. /// - public float FTLDuration; + public StartEndTime FTLTime; public List Destinations; @@ -26,12 +27,12 @@ public sealed class ShuttleMapInterfaceState public ShuttleMapInterfaceState( FTLState ftlState, - float ftlDuration, + StartEndTime ftlTime, List destinations, List exclusions) { FTLState = ftlState; - FTLDuration = ftlDuration; + FTLTime = ftlTime; Destinations = destinations; Exclusions = exclusions; } diff --git a/Content.Shared/Timing/StartEndTime.cs b/Content.Shared/Timing/StartEndTime.cs new file mode 100644 index 00000000000..fde9f7341c0 --- /dev/null +++ b/Content.Shared/Timing/StartEndTime.cs @@ -0,0 +1,68 @@ +using Robust.Shared.Timing; + +namespace Content.Shared.Timing; + +/// +/// Represents a range of an "action" in time, as start/end times. +/// +/// +/// Positions in time are represented as s, usually from +/// or . +/// +/// The time the action starts. +/// The time action ends. +[Serializable] +public record struct StartEndTime(TimeSpan Start, TimeSpan End) +{ + /// + /// How long the action takes. + /// + public TimeSpan Length => End - Start; + + /// + /// Get how far the action has progressed relative to a time value. + /// + /// The time to get the current progress value for. + /// If true, clamp values outside the time range to 0 through 1. + /// + /// + /// A progress value. Zero means is at , + /// one means is at . + /// + /// + /// This function returns if and are identical. + /// + /// + public float ProgressAt(TimeSpan time, bool clamp = true) + { + var length = Length; + if (length == default) + return float.NaN; + + var progress = (float) ((time - Start) / length); + if (clamp) + progress = MathHelper.Clamp01(progress); + + return progress; + } + + public static StartEndTime FromStartDuration(TimeSpan start, TimeSpan duration) + { + return new StartEndTime(start, start + duration); + } + + public static StartEndTime FromStartDuration(TimeSpan start, float durationSeconds) + { + return new StartEndTime(start, start + TimeSpan.FromSeconds(durationSeconds)); + } + + public static StartEndTime FromCurTime(IGameTiming gameTiming, TimeSpan duration) + { + return FromStartDuration(gameTiming.CurTime, duration); + } + + public static StartEndTime FromCurTime(IGameTiming gameTiming, float durationSeconds) + { + return FromStartDuration(gameTiming.CurTime, durationSeconds); + } +} From d215419f9ac6108185b724e40185d2cf27f7a749 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 30 Mar 2024 13:28:42 +1100 Subject: [PATCH 04/83] Revert "Fix scram implant's teleportation out of containers" (#25030) * Revert "Fix scram implant's teleportation out of containers (#24827)" This reverts commit d4434dbb5e586544a5dbd067a3fee4a6bd4e9e89. * Remove EntityQuery pass-ins --- Content.Server/Implants/SubdermalImplantSystem.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Content.Server/Implants/SubdermalImplantSystem.cs b/Content.Server/Implants/SubdermalImplantSystem.cs index 6b58f6eb092..fd95720732b 100644 --- a/Content.Server/Implants/SubdermalImplantSystem.cs +++ b/Content.Server/Implants/SubdermalImplantSystem.cs @@ -139,7 +139,6 @@ private void OnScramImplant(EntityUid uid, SubdermalImplantComponent component, break; } _xform.SetWorldPosition(ent, targetCoords.Position); - _xform.AttachToGridOrMap(ent, xform); _audio.PlayPvs(implant.TeleportSound, ent); args.Handled = true; From bb5ca720fccd035e310c12b266f71081f85edf47 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 30 Mar 2024 15:34:55 +1300 Subject: [PATCH 05/83] Split GasTileOverlaySystem update over two ticks (#26542) Split GasTileOverlaySystem update over ticks --- .../EntitySystems/GasTileOverlaySystem.cs | 49 +++++++++++++------ 1 file changed, 33 insertions(+), 16 deletions(-) diff --git a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs index 6d49feb0181..003eed59e03 100644 --- a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -52,6 +52,8 @@ public sealed class GasTileOverlaySystem : SharedGasTileOverlaySystem new DefaultObjectPool>>( new DefaultPooledObjectPolicy>>(), 64); + private bool _doSessionUpdate; + /// /// Overlay update interval, in seconds. /// @@ -192,7 +194,7 @@ public GasOverlayData GetOverlayData(GasMixture? mixture) /// /// Updates the visuals for a tile on some grid chunk. Returns true if the visuals have changed. /// - private bool UpdateChunkTile(GridAtmosphereComponent gridAtmosphere, GasOverlayChunk chunk, Vector2i index, GameTick curTick) + private bool UpdateChunkTile(GridAtmosphereComponent gridAtmosphere, GasOverlayChunk chunk, Vector2i index) { ref var oldData = ref chunk.TileData[chunk.GetDataIndex(index)]; if (!gridAtmosphere.Tiles.TryGetValue(index, out var tile)) @@ -200,7 +202,7 @@ private bool UpdateChunkTile(GridAtmosphereComponent gridAtmosphere, GasOverlayC if (oldData.Equals(default)) return false; - chunk.LastUpdate = curTick; + chunk.LastUpdate = _gameTiming.CurTick; oldData = default; return true; } @@ -258,11 +260,11 @@ private bool UpdateChunkTile(GridAtmosphereComponent gridAtmosphere, GasOverlayC if (!changed) return false; - chunk.LastUpdate = curTick; + chunk.LastUpdate = _gameTiming.CurTick; return true; } - private void UpdateOverlayData(GameTick curTick) + private void UpdateOverlayData() { // TODO parallelize? var query = EntityQueryEnumerator(); @@ -276,7 +278,7 @@ private void UpdateOverlayData(GameTick curTick) if (!overlay.Chunks.TryGetValue(chunkIndex, out var chunk)) overlay.Chunks[chunkIndex] = chunk = new GasOverlayChunk(chunkIndex); - changed |= UpdateChunkTile(gam, chunk, index, curTick); + changed |= UpdateChunkTile(gam, chunk, index); } if (changed) @@ -291,13 +293,28 @@ public override void Update(float frameTime) base.Update(frameTime); AccumulatedFrameTime += frameTime; - if (AccumulatedFrameTime < _updateInterval) return; - AccumulatedFrameTime -= _updateInterval; + if (_doSessionUpdate) + { + UpdateSessions(); + return; + } + + if (AccumulatedFrameTime < _updateInterval) + return; - var curTick = _gameTiming.CurTick; + AccumulatedFrameTime -= _updateInterval; // First, update per-chunk visual data for any invalidated tiles. - UpdateOverlayData(curTick); + UpdateOverlayData(); + + // Then, next tick we send the data to players. + // This is to avoid doing all the work in the same tick. + _doSessionUpdate = true; + } + + public void UpdateSessions() + { + _doSessionUpdate = false; if (!PvsEnabled) return; @@ -315,11 +332,11 @@ public override void Update(float frameTime) _sessions.Add(player); } - if (_sessions.Count > 0) - { - _updateJob.CurrentTick = curTick; - _parMan.ProcessNow(_updateJob, _sessions.Count); - } + if (_sessions.Count == 0) + return; + + _parMan.ProcessNow(_updateJob, _sessions.Count); + _updateJob.LastSessionUpdate = _gameTiming.CurTick; } public void Reset(RoundRestartCleanupEvent ev) @@ -352,7 +369,7 @@ private record struct UpdatePlayerJob : IParallelRobustJob public ObjectPool> ChunkIndexPool; public ObjectPool>> ChunkViewerPool; - public GameTick CurrentTick; + public GameTick LastSessionUpdate; public Dictionary>> LastSentChunks; public List Sessions; @@ -415,7 +432,7 @@ public void Execute(int index) if (previousChunks != null && previousChunks.Contains(gIndex) && - value.LastUpdate != CurrentTick) + value.LastUpdate > LastSessionUpdate) { continue; } From 6ef592ddba336a41330eaf3760a600c805907e1d Mon Sep 17 00:00:00 2001 From: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Date: Sat, 30 Mar 2024 03:46:20 +0100 Subject: [PATCH 06/83] Industrial Reagent Grinder (#25020) * all work done * adress whitespace * millions must factorio * conflict fix * i forgot --- .../Circuitboards/Machine/production.yml | 13 ++++++ .../Entities/Structures/Machines/lathe.yml | 1 + .../Structures/Machines/reagent_grinder.yml | 42 +++++++++++++++++++ .../Entities/Structures/Machines/recycler.yml | 2 +- .../Prototypes/Recipes/Lathes/electronics.yml | 9 ++++ .../Prototypes/Research/civilianservices.yml | 1 + 6 files changed, 67 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 093c0524b4a..7a9e60ac566 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -1357,3 +1357,16 @@ materialRequirements: Steel: 5 CableHV: 2 + +- type: entity + parent: BaseMachineCircuitboard + id: ReagentGrinderIndustrialMachineCircuitboard + name: industrial reagent grinder machine board + components: + - type: MachineBoard + prototype: ReagentGrinderIndustrial + requirements: + MatterBin: 1 + Manipulator: 3 + materialRequirements: + Glass: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 28bc62894e5..5fbe84a3fe7 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -451,6 +451,7 @@ - ArtifactCrusherMachineCircuitboard - TelecomServerCircuitboard - MassMediaCircuitboard + - ReagentGrinderIndustrialMachineCircuitboard - type: MaterialStorage whitelist: tags: diff --git a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml index d19e2379972..3bb1458b8c5 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml @@ -56,3 +56,45 @@ inputContainer: !type:Container machine_board: !type:Container machine_parts: !type:Container + +- type: entity + parent: Recycler #too different so different parent + id: ReagentGrinderIndustrial + name: industrial reagent grinder + description: An industrial reagent grinder. + components: + - type: SolutionContainerManager + solutions: + output: + maxVol: 400 #*slaps roof of machine* This baby can fit so much omnizine in it + - type: MaterialReclaimer + whitelist: + components: + - Extractable #same as reagent grinder + blacklist: + tags: + - HighRiskItem #ian meat + efficiency: 0.9 + - type: Sprite + sprite: Structures/Machines/recycling.rsi + layers: + - state: grinder-b0 + - type: Machine + board: ReagentGrinderIndustrialMachineCircuitboard + - type: GenericVisualizer + visuals: + enum.ConveyorVisuals.State: + enum.RecyclerVisualLayers.Main: + Forward: { state: grinder-b1 } + Reverse: { state: grinder-b1 } + Off: { state: grinder-b0 } + - type: ContainerContainer + containers: + machine_board: !type:Container + machine_parts: !type:Container + - type: Construction + graph: Machine + node: machine + containers: + - machine_parts + - machine_board \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml index 814852125a0..138795cbf13 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml @@ -116,4 +116,4 @@ interactSuccessString: petting-success-recycler interactFailureString: petting-failure-generic interactSuccessSound: - path: /Audio/Items/drill_hit.ogg + path: /Audio/Items/drill_hit.ogg \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index f0c59a0bdf9..c4417f868b5 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -956,3 +956,12 @@ Steel: 100 Glass: 900 Gold: 100 + +- type: latheRecipe + id: ReagentGrinderIndustrialMachineCircuitboard + result: ReagentGrinderIndustrialMachineCircuitboard + completetime: 5 + materials: + Steel: 100 + Glass: 900 + Gold: 100 diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index 61f95894ee6..79dac275101 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -14,6 +14,7 @@ - BorgModuleHarvesting - SeedExtractorMachineCircuitboard - HydroponicsTrayMachineCircuitboard + - ReagentGrinderIndustrialMachineCircuitboard - type: technology id: CritterMechs From ac129820492ff0189dd581033848dc9aa3a15b5c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 30 Mar 2024 02:47:27 +0000 Subject: [PATCH 07/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c52c19a50c9..420db733015 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: casperr04 - changes: - - message: Fixed players being able to re-anchor items after fultoning them. - type: Fix - - message: Changed which objects can be fultoned. - type: Tweak - id: 5754 - time: '2024-01-20T04:57:05.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/20628 - author: Blackern5000 changes: - message: Crushers can no longer be researched. @@ -3795,3 +3786,11 @@ id: 6253 time: '2024-03-30T01:25:43.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26541 +- author: Boaz1111 + changes: + - message: Added an industrial reagent grinder to the basic hydroponics research. + It grinds things into reagents like a recycler. + type: Add + id: 6254 + time: '2024-03-30T02:46:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25020 From 52db14a19dcafa5592be0e2d23a4a628c9ab981e Mon Sep 17 00:00:00 2001 From: SonicHDC <100022571+SonicHDC@users.noreply.github.com> Date: Sat, 30 Mar 2024 15:31:32 +1200 Subject: [PATCH 08/83] Zippable coats (#26494) * Update base_clothingouter.yml * Update coats.yml * Change Flipped to Opened * labcoat * coat * Update meta.json * Update meta.json * Update meta.json * Update meta.json * Update meta.json * Update meta.json * Update meta.json * cmo * gene * rd * robo * sci * viro * Locale zip-unzip * Missing meta * Fix wrong sprites --- .../components/foldable-component.ftl | 5 +- .../OuterClothing/base_clothingouter.yml | 42 ++++++++++++++ .../Entities/Clothing/OuterClothing/coats.yml | 54 +++++++++++++++--- .../OuterClothing/Coats/labcoat.rsi/meta.json | 8 +++ .../Coats/labcoat.rsi/open-inhand-left.png | Bin 0 -> 390 bytes .../Coats/labcoat.rsi/open-inhand-right.png | Bin 0 -> 394 bytes .../Coats/labcoat_chem.rsi/meta.json | 8 +++ .../labcoat_chem.rsi/open-inhand-left.png | Bin 0 -> 408 bytes .../labcoat_chem.rsi/open-inhand-right.png | Bin 0 -> 410 bytes .../Coats/labcoat_cmo.rsi/meta.json | 8 +++ .../labcoat_cmo.rsi/open-inhand-left.png | Bin 0 -> 382 bytes .../labcoat_cmo.rsi/open-inhand-right.png | Bin 0 -> 383 bytes .../Coats/labcoat_gene.rsi/meta.json | 8 +++ .../labcoat_gene.rsi/open-inhand-left.png | Bin 0 -> 408 bytes .../labcoat_gene.rsi/open-inhand-right.png | Bin 0 -> 410 bytes .../Coats/labcoat_rd.rsi/meta.json | 8 +++ .../Coats/labcoat_rd.rsi/open-inhand-left.png | Bin 0 -> 1352 bytes .../labcoat_rd.rsi/open-inhand-right.png | Bin 0 -> 1349 bytes .../Coats/labcoat_robo.rsi/meta.json | 8 +++ .../labcoat_robo.rsi/open-inhand-left.png | Bin 0 -> 395 bytes .../labcoat_robo.rsi/open-inhand-right.png | Bin 0 -> 399 bytes .../Coats/labcoat_sci.rsi/meta.json | 8 +++ .../labcoat_sci.rsi/open-inhand-left.png | Bin 0 -> 408 bytes .../labcoat_sci.rsi/open-inhand-right.png | Bin 0 -> 410 bytes .../Coats/labcoat_viro.rsi/meta.json | 8 +++ .../labcoat_viro.rsi/open-inhand-left.png | Bin 0 -> 408 bytes .../labcoat_viro.rsi/open-inhand-right.png | Bin 0 -> 410 bytes 27 files changed, 156 insertions(+), 9 deletions(-) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_rd.rsi/open-inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_rd.rsi/open-inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/open-inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/open-inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/open-inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/open-inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-right.png diff --git a/Resources/Locale/en-US/foldable/components/foldable-component.ftl b/Resources/Locale/en-US/foldable/components/foldable-component.ftl index 539b4fd9e71..525820920bd 100644 --- a/Resources/Locale/en-US/foldable/components/foldable-component.ftl +++ b/Resources/Locale/en-US/foldable/components/foldable-component.ftl @@ -4,4 +4,7 @@ foldable-deploy-fail = You can't deploy the {$object} here. fold-verb = Fold unfold-verb = Unfold -fold-flip-verb = Flip \ No newline at end of file +fold-flip-verb = Flip + +fold-zip-verb = Zip up +fold-unzip-verb = Unzip diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index 82df2c21e8f..310661f6ca8 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -43,6 +43,48 @@ - type: StaticPrice price: 80 +- type: entity + abstract: true + parent: [ClothingOuterStorageBase, BaseFoldable] + id: ClothingOuterStorageFoldableBase + components: + - type: Appearance + - type: Foldable + canFoldInsideContainer: true + unfoldVerbText: fold-zip-verb + foldVerbText: fold-unzip-verb + - type: FoldableClothing + foldedEquippedPrefix: open + foldedHeldPrefix: open + - type: Sprite + layers: + - state: icon + map: [ "unfoldedLayer" ] + - state: icon-open + map: ["foldedLayer"] + visible: false + +- type: entity + abstract: true + parent: ClothingOuterStorageFoldableBase + id: ClothingOuterStorageFoldableBaseOpened + suffix: opened + components: + - type: Foldable + folded: true + - type: Clothing + equippedPrefix: open + - type: Item + heldPrefix: open + - type: Sprite + layers: + - state: icon + map: [ "unfoldedLayer" ] + visible: false + - state: icon-open + map: ["foldedLayer"] + visible: true + - type: entity abstract: true parent: ClothingOuterStorageBase diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index bb2f598cd0a..ca0e2d4b4d3 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -114,7 +114,7 @@ Quantity: 20 - type: entity - parent: ClothingOuterStorageBase + parent: ClothingOuterStorageFoldableBase id: ClothingOuterCoatLab name: lab coat description: A suit that protects against minor chemical spills. @@ -129,7 +129,12 @@ Caustic: 0.75 - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatLab] + id: ClothingOuterCoatLabOpened + name: lab coat + +- type: entity + parent: ClothingOuterStorageFoldableBase id: ClothingOuterCoatLabChem name: chemist lab coat description: A suit that protects against minor chemical spills. Has an orange stripe on the shoulder. @@ -144,7 +149,12 @@ Caustic: 0.75 - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatLabChem] + id: ClothingOuterCoatLabChemOpened + name: chemist lab coat + +- type: entity + parent: ClothingOuterStorageFoldableBase id: ClothingOuterCoatLabViro name: virologist lab coat description: A suit that protects against bacteria and viruses. Has an green stripe on the shoulder. @@ -158,9 +168,13 @@ coefficients: Caustic: 0.75 +- type: entity + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatLabViro] + id: ClothingOuterCoatLabViroOpened + name: virologist lab coat - type: entity - parent: ClothingOuterStorageBase + parent: ClothingOuterStorageFoldableBase id: ClothingOuterCoatLabGene name: geneticist lab coat description: A suit that protects against minor chemical spills. Has an blue stripe on the shoulder. @@ -174,9 +188,13 @@ coefficients: Caustic: 0.75 +- type: entity + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatLabGene] + id: ClothingOuterCoatLabGeneOpened + name: geneticist lab coat - type: entity - parent: ClothingOuterStorageBase + parent: ClothingOuterStorageFoldableBase id: ClothingOuterCoatLabCmo name: chief medical officer's lab coat description: Bluer than the standard model. @@ -191,7 +209,12 @@ Caustic: 0.75 - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatLabCmo] + id: ClothingOuterCoatLabCmoOpened + name: chief medical officer's lab coat + +- type: entity + parent: ClothingOuterStorageFoldableBase id: ClothingOuterCoatRnd name: scientist lab coat description: A suit that protects against minor chemical spills. Has a purple stripe on the shoulder. @@ -206,7 +229,12 @@ Caustic: 0.75 - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatRnd] + id: ClothingOuterCoatRndOpened + name: scientist lab coat + +- type: entity + parent: ClothingOuterStorageFoldableBase id: ClothingOuterCoatRobo name: roboticist lab coat description: More like an eccentric coat than a labcoat. Helps pass off bloodstains as part of the aesthetic. Comes with red shoulder pads. @@ -221,7 +249,12 @@ Caustic: 0.75 - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatRobo] + id: ClothingOuterCoatRoboOpened + name: roboticist lab coat + +- type: entity + parent: ClothingOuterStorageFoldableBase id: ClothingOuterCoatRD name: research director lab coat description: Woven with top of the line technology, this labcoat helps protect against radiation in similar way to the experimental hardsuit. @@ -236,6 +269,11 @@ Caustic: 0.75 Radiation: 0.9 +- type: entity + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatRD] + id: ClothingOuterCoatRDOpened + name: research director lab coat + - type: entity parent: ClothingOuterStorageBase id: ClothingOuterCoatPirate diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json index 775a3c2151d..02abb078069 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..489f958b9e9e6ae91a0428ecde2b4fc97585c26d GIT binary patch literal 390 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1k1^9%xPMkRL|Ns9_pFX{K@nTn3myeH+lao_+cJ`4YM}SIp%?x@4q_|3g z{DOhXAb?@h8J+V$QO*L7$YKTtzC$3)D5~Mr02I9K>Eaj?;r@2oTdrmU9@oqKrM3UX z<1Sx~nk;=&BALUoXVvzbnm>+vKlP4zz;ujNFQHD|BLBwo1#_phR<=7u-`>m6B2r=F z!!}n&!EsGuPWJM9$LDEJXwY~Xa{XV=B<3ksH;Wa{@+(_lazy5+_mqfUDsxXmk3lFrI%5O6Bgvg6U4Xnq~ zc|=(acG~ppH(sUDaC1(NUf@Mn#-4T8nIdI>l_u>LJMrqmdgE)_DItM7X4LlI=Ju*& Zy2#R{xb*nZhd^&Kc)I$ztaD0e0stYfo5}zH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..54bd14c8aac98862f49d070485b2adb226a9a434 GIT binary patch literal 394 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1k1^9%xPMkRL|Ns9_pFX{K@nTn3myeH+lao_+cJ`4YM}SIp%?x@4q_|3g z{DOhXAb?@h8J+V$QO*L7$YKTtzC$3)D5~Mr02I9M>Eaj?;r@2oO}=IW9+tT+i~s!R zH#cLuCS!T!+rmli9T6w1CRB80{uB`3(NNgPJtLpX%T|pMFtR`{Kn%2t1eP~LtWHU^>RSU*L)2K zR(d^1))kz*&WH1h)K(^g{C9t~MJ_K;EfAWrtVL(W78bvzOH(GWZl2cA8NRIL_GYJj fz5B&=PD?M}(WQ7~>H2>_uQGVL`njxgN@xNA7*wRN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json index 775a3c2151d..02abb078069 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..57d36185047e17e51ac20411891363e034207aa1 GIT binary patch literal 408 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPMkRLOd8*RAebQe^y$-!7cX{ob@}-CI5|0GXJ@bQVLNi<2uN)V zmkyBPEeY}q1}TOC2HO`(Z9oam0*}aI1_r)EAj~ML;ne^XeCX-o7!u+BcG_FMLkc{u zjR)k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPMkRLOd8*RAebQe^y$-!7cX{ob@}-CI5|0GXJ@bQVLNi<2uN)V zmkyBPEeY}q1}TOC2HO`(Z9oam0*}aI1_r)EAj~ML;ne^XeC+As7!u+BcA6(&vjLB* zFWa)B|DVmw*mBxIXb@5-KQZ&#jtlJJ*#R$O4a_+E zzUa-E#o}Hyn_+%b%C3J`nAHpzlbD1R)PA%sxT^8_)xG^jpVtU7eXy`Az1cWLJyIj2$8? oDi(V0xO@7^>mStzH|=43vvS9*=ieN!1HH@O>FVdQ&MBb@0AV+%Pyhe` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json index 775a3c2151d..02abb078069 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..31025b7ddad3b10f1804e7ded6722bacd63ff539 GIT binary patch literal 382 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`031o(uwsw7nv?6@4V`m|xo0!fz;F>6nUg-3ysZ(hlN0a6?#L4LviA%Njt z^WI3H7-xY;WHAE+-$4*&+%YlxEl}{br;B4qg!|iR7x|hMcwD&`{rNAyUUfxmwf8oi z)0>vKD?bb3Zxi?W>l`$JNs(1kV4r%$ypHRR#>(1NZKo>w%9%MZ29Qw^Hdf*=w({5 zRQVRuyw7V7%ZUDtN{DW^)Vc+xvKHxz#4O&hqPBOx_?LeS?DMmmyJ}t(0KLiJ>FVdQ I&MBb@09{g&H~;_u literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..01e8e0fbc1123246578f528efe824e1890af8bff GIT binary patch literal 383 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`031o(uwsw7nv?6@4V`m|xo0!fz;F>6nUg-3ysZ(hlN0a6?#L4LviA%Njt z^WI3H7-xY;WHAE+-$4*&+%YlxEl}`|r;B4qg!|iRH-(xNcwF^&eE46VBjnJmbb3qe z3!gr}&H~GAwTc|_Nld~9Y6gs-br0@Qf8U{eC-nQoIo_F)4bir2RL$f75`@}d$aONhU0GU1+9Gza<^ic zrkRFv&DB5mSN%hE>RYvpQcjf{K`VD~M#VC5TG=nO_^ustUFxUdzc_(IjL)>Pn_2!b Ry8->l;OXk;vd$@?2>_OdlcxXx literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json index 775a3c2151d..02abb078069 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..d95cfab8a7f44f1632971643716f6ae8f98143a0 GIT binary patch literal 408 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPMkPVcgCLo|NkrRdi(V0(~B1`c6D|6`1m+EIb~;Ot7kVIIdTN3 zwyTu63`p^o1o;I66~h68?F*$gpaf@uM`SSr1K&XqX529``z=uLp{I*uNQC>_X>a)s zDe$;99<-bCy*^H}jOXRsMUg#*FFPA6U-EU<@6n4t!lI_&lfd+-y6HOeU%8S;nVhAm zH7l}fyQ)1$t*!uK6RY%C4bZu6sDw=w{<3f#(vx zglC$F9MocQz7)VRTY$%txxLTM*68NJm+UhRu(WXcILvs!&SconYJQJ(lSV>gIM4Y- z6MiphU^%J!#?_UPd&+*p5Rn5=?47YFTfaTH@U*fo#)*sBB8$IJ92Rx`i1 nz2)!Gv8cf4w_LsciJy#0u{&l}`;`;`JgTe~DWM4fx-*~S literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..2fbbaa54df7255e742a138c820a5e7957ddcd584 GIT binary patch literal 410 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPMkPVcgCLo|NkrRdi(V0(~B1`c6D|6`1m+EIb~;Ot7kVIIdTN3 zwyTu63`p^o1o;I66~h68?F*$gpaf@uM`SSr1K&XqX529``z=uLv8Rh;NQC>_X`Xz| z20X65Y|D!Ne>O8?%W31u+P&h5`ji<@o*&d}d+O|yz;uK~&0(Kv#`hfcYdecgf@0f> z`Yx+5^yklA|C@hq94jMJ@0O6JqL(cq3`gviO`PWS!eoAbJ6_x2loUL(l#!NRVL^Yh+F zt}A=%8I@f0RD&kG7b=+T-RUL1i=~1$hBGDZ?(cAgBlEludQNyPG%4XpP=U~sT`ejz rc8IK~Sm?du?&&A5e^ejbw1@G{${n+we{;MJ^e%&^tDnm{r-UW|atNy= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_rd.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_rd.rsi/meta.json index f10d1d80141..5a13fa99f36 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_rd.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_rd.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_rd.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_rd.rsi/open-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..3a3f3f85b0d6115bb8e3125ef30ff36c984f41b2 GIT binary patch literal 1352 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPMkO~f+6Go|Nk=?W)?EEJbn7~;>C+yU0pstK2AtCq9nrC$0|8L zS1&OoKPgqOBDVmjnt{Q_zM>#8IXksPAt^OIGtXA({qFrr3YjUkO5vuy2EGN(sTr9b zRYj@6RemAKRoTgwDN6Qsyj(UFRzMSSQ%e#RDspr3imfVamB0pD0ofp7eI*63l9Fs& zr3l{u1?T*tR0T6V13d#JpmqfXo1&C7s~{IQsCFRFRw<*Tq`*pFzr4I$uiRKKzbIYb z(9+UU-@r)U$VeBcLbtdwuOzWTH?LS3VhGe2m(=3qqRfJl%=|nBkgZI5j|wgoG(l0)!-PaNq+|H;`we56>zf9z46H<^l6q5im1FHN8j& zX2iFiE{-7)?r*2P=4)2qaa$R)r{{b9y{$Q1)A)rq>ztl6Phye$*9CtT>eY8}`Y6me zz;ft2%k$2URvB$6Gfw?zTV^z^npI!|zYSab>)%V5SoDe(E{|Al@o`P&BrYKfuVSU^ z9J`h@8O3E!T%Yk`vaE`N{PT)m5A7@^IIj6EnAF^u@R~)-@<6pi(bg{~`9$sA5$;_&p7L|)^X zbyBPfGlF;AaJj3&aIi`@pqEJ?=Q`6>4F<=u!{2W%kY-icar8cSQ5_TWpPlk{ug)z5 O6+xb^elF{r5}E+CH_lD~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_rd.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_rd.rsi/open-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..7be0d597256ad965a8844c4be42e510b94b1c30a GIT binary patch literal 1349 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPMkO~f+6Go|Nk=?W)?EEJbn7~;>C+yU0pstK2AtCq9nrC$0|8L zS1&OoKPgqOBDVmjnt{Q_zM>#8IXksPAt^OIGtXA({qFrr3YjUkO5vuy2EGN(sTr9b zRYj@6RemAKRoTgwDN6Qsyj(UFRzMSSQ%e#RDspr3imfVamB0pD0ofp7eI*63l9Fs& zr3l{u1?T*tR0T6V13d#JpmqfXo1&C7s~{IQsCFRFRw<*Tq`*pFzr4I$uiRKKzbIYb z(9+UU-@r)U$VeBcLbtdwuOzWTH?LS3VhGe2m(=3qqRfJl%=|nBkgZI5j|wgoG(l0)!-PaNq+|H;`we56>zf9z46H<^l6q5im1FHN8j& zX2e&XE{-7)?r*2vER)}TjsoGYdW>?y;Y^wu@BSJ;ICNs^ z1BDf(oEkHBipa2R)njDkp5F9{2dGvg@!6|r@p}D^kDOOrcgoLf&({K#Kc23BF6*2U FngG4m&Uyd< literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/meta.json index 775a3c2151d..02abb078069 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/open-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..83d3f527c8c2448a3946b945f51d52cec933bb21 GIT binary patch literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E1o(uwS}-sdvoKAZIPw4g|4*MjO=e*5WMJPO7pE$%Fw4>L;>C+Vg)1XX z6Mz&?NswPKP#Fv`2;Dz-4k*r9;1OBOz`%D9gc)~C%zg_Lyy5BM7!u+BcG_FMW(6MC zrG6Jb{(HY$Y=6T&Jwt9o@2aGZY0o(RJmh=n9`k_dAgi9hFV0t-zwI;Bt~*&8x7a-U z&K9sF@YZ3E+vcsmC&_ zd0(IERE(IiVC9^WNXMw~O0SZq3|#LXFo|>M6*N9*VrN+;&+W68k86i$+>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E1o(uwS}-sdvoKAZIPw4g|4*MjO=e*5WMJPO7pE$%Fw4>L;>C+Vg)1XX z6Mz&?NswPKP#Fv`2;Dz-4k*r9;1OBOz`%C^gc-B0b#ej)?|8a6hD5l(opzD0S%JrO z>53OW{{NR1UnN$$+Nw6WPz;k3rEElijwVmEH^+ELX2`v8m8?ULpc^BHG e{b#SjG4rgVRV_tr87qPQWbkzLb6Mw<&;$TYIii~Y literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/meta.json index 775a3c2151d..02abb078069 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/open-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5dc3a92fdcdbb9441a1813f956b59cb2ef668d2a GIT binary patch literal 408 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPMkQgkfG)O|Nk=?WPNgLYHC*T-p=@w|MyD6+@!WoKjMOTNzfJ$ms+Skx4J5||!UH(h7`D_8O;le09n zW<_?b90Qa2#U=CmlxNB)IO-&>(GH%c{G3UpK=16zHGgDP*)_Dwbr0tn-E6!h@Lb}T z@JthtgIX-kmjYO33-EX{xA)oE8r?kjl6}SjmKIJQhZzspnGE|`&F`^p(nx3w=Q+P< z!tX^5EGJdpxVkcOPuXu6B68qKQFxrXOCZDM;-FnFj$*6^yXJ8pdv&1tc$uEWYUcO0 nxBNXi78Mx%maEr4@sm+0cE_x0zmfu=XBj+Q{an^LB{Ts5GV`69 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/open-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..c28ef522612bf5ae467a6afd3f5f32f1fc41a27f GIT binary patch literal 410 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPMkQgkfG)O|Nk=?WyyH`9>pEBdg^MiVAPn~@dn2xZhIqXx-_@1MFZD+AbP;6UK z-(?ks{`|S?fAi0cV`XIO-4fDN^s+^S;fUR`iPOAZn9Of92&t2wn0al-1@`dlfS0ib zW}JOr^k&Rraj%-qFh43~*S{;wY6gr+Ou`CkKUx=D)%g7C-hQLcYXq4-SlE?ue%>3& zb!BfoqmqlBYS4uDLItzEJH5nru~hKJaHhoF{T;4wWS;jy&k3)ECM7%xDiC_It3_qT r4v`fV3%z&TJ^keMkLrV)_AtI#xntJzZ;sc2-evG~^>bP0l+XkK<|nAz literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json index 775a3c2151d..02abb078069 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..2dde993a3df6075fcb5df9e01f536fbe0336ddc8 GIT binary patch literal 408 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPMkPVyq)j=|Nn|Bq@F%~dhz1LuC6X0A0Hc0P<4y1TXg8YJkis694_JvX#P=d3-BeIx*f$ty)Gwzs}{T3+r(9^{+B*Ojew6}bR z6nI=4586%nULU7f#`E&+qR1Y@mz|B3FZnv__vpnRVNp}?NnmwrYjpGAOZFKDSXwxJ9A-RVXEN+(HNVHYNh6^#oag+a z3BMOLu$)wV1 n-tzb8SX5y2TdrRJ#7{=0*d4Q~{Ynaeo@MZK^>bP0l+XkK`uU!i literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..285c57c33f339c5e14303a550e55cf94a630c244 GIT binary patch literal 410 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPMkPVyq)j=|Nn|Bq@F%~dhz1LuC6X0A0Hc0P<4y1TXg8YJkis694_JvX#P=d3-BeIx*f$ty)Gwzs}{T3+r*we)^B*OjeG*7-} z10Gjjwq-^CKbx7c<+Sl+?OyRjeaeg{&kyRgJ$3d;U^>F0=CDsS<9m+!wVlN#L9uN` zeV0`j`t#?m|II%)j+K$AcS}f9(aRPQh9h>%CQkEuVKTqbAf!%yV&=6S7udtI175}& zm~r-f(VH=g#l31a!~Cd}UH`5ys~IpRF$pWE{b*fqRpaxkd;5((uMuSWU}0Cr`FU?7 z*Ok5Xj7lzgszDRp3l+@v?(`Dh#Zti=!tnw0P)s6gn+t`?OU rJ49AgEcD)S_w Date: Sat, 30 Mar 2024 14:31:47 +1100 Subject: [PATCH 09/83] Fix itemslots swapping (#25634) Fix itemslots prediction --- Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index 3463be2e717..83e09b1a6dd 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -279,7 +279,7 @@ public bool CanInsert(EntityUid uid, EntityUid usedUid, EntityUid? user, ItemSlo if (ev.Cancelled) return false; - return _containers.CanInsert(usedUid, slot.ContainerSlot, assumeEmpty: true); + return _containers.CanInsert(usedUid, slot.ContainerSlot, assumeEmpty: swap); } /// From 3af54a286ee3630a00502db20a65f958863e3321 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 30 Mar 2024 03:32:37 +0000 Subject: [PATCH 10/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 420db733015..2a3ec713b39 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Blackern5000 - changes: - - message: Crushers can no longer be researched. - type: Remove - id: 5755 - time: '2024-01-20T05:11:02.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24319 - author: metalgearsloth changes: - message: Fix buckle sound playing twice in some instances. @@ -3794,3 +3787,10 @@ id: 6254 time: '2024-03-30T02:46:20.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/25020 +- author: SonicHDC + changes: + - message: Added unzipping for lab coats! + type: Add + id: 6255 + time: '2024-03-30T03:31:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26494 From 39753892c2b7a86fb7a10480a32a9dd8252ce80f Mon Sep 17 00:00:00 2001 From: Zealith-Gamer <61980908+Zealith-Gamer@users.noreply.github.com> Date: Fri, 29 Mar 2024 20:35:42 -0700 Subject: [PATCH 11/83] Stop items that are being pulled from spinning (#26504) * Fixed pulled items spinning when moved * edited out others issues * more reverts * requested fix * Removed "Optional:" --- .../Movement/Pulling/Systems/PullingSystem.cs | 2 +- Content.Shared/Throwing/ThrowingSystem.cs | 38 +++++++++++-------- 2 files changed, 24 insertions(+), 16 deletions(-) diff --git a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs index b347c6da164..acca7aafd05 100644 --- a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs +++ b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs @@ -269,7 +269,7 @@ private bool OnRequestMovePulledObject(ICommonSession? session, EntityCoordinate } Dirty(player, pullerComp); - _throwing.TryThrow(pulled.Value, fromUserCoords, user: player, strength: 4f, animated: false, recoil: false, playSound: false); + _throwing.TryThrow(pulled.Value, fromUserCoords, user: player, strength: 4f, animated: false, recoil: false, playSound: false, doSpin: false); return false; } diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index 38772eaf340..7d94ada924d 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -49,7 +49,8 @@ public void TryThrow( float pushbackRatio = PushbackDefault, bool recoil = true, bool animated = true, - bool playSound = true) + bool playSound = true, + bool doSpin = true) { var thrownPos = _transform.GetMapCoordinates(uid); var mapPos = _transform.ToMapCoordinates(coordinates); @@ -57,7 +58,7 @@ public void TryThrow( if (mapPos.MapId != thrownPos.MapId) return; - TryThrow(uid, mapPos.Position - thrownPos.Position, strength, user, pushbackRatio, recoil: recoil, animated: animated, playSound: playSound); + TryThrow(uid, mapPos.Position - thrownPos.Position, strength, user, pushbackRatio, recoil: recoil, animated: animated, playSound: playSound, doSpin: doSpin); } /// @@ -67,6 +68,7 @@ public void TryThrow( /// A vector pointing from the entity to its destination. /// How much the direction vector should be multiplied for velocity. /// The ratio of impulse applied to the thrower - defaults to 10 because otherwise it's not enough to properly recover from getting spaced + /// Whether spin will be applied to the thrown entity. public void TryThrow(EntityUid uid, Vector2 direction, float strength = 1.0f, @@ -74,7 +76,8 @@ public void TryThrow(EntityUid uid, float pushbackRatio = PushbackDefault, bool recoil = true, bool animated = true, - bool playSound = true) + bool playSound = true, + bool doSpin = true) { var physicsQuery = GetEntityQuery(); if (!physicsQuery.TryGetComponent(uid, out var physics)) @@ -90,7 +93,7 @@ public void TryThrow(EntityUid uid, projectileQuery, strength, user, - pushbackRatio, recoil: recoil, animated: animated, playSound: playSound); + pushbackRatio, recoil: recoil, animated: animated, playSound: playSound, doSpin: doSpin); } /// @@ -100,6 +103,7 @@ public void TryThrow(EntityUid uid, /// A vector pointing from the entity to its destination. /// How much the direction vector should be multiplied for velocity. /// The ratio of impulse applied to the thrower - defaults to 10 because otherwise it's not enough to properly recover from getting spaced + /// Whether spin will be applied to the thrown entity. public void TryThrow(EntityUid uid, Vector2 direction, PhysicsComponent physics, @@ -110,7 +114,8 @@ public void TryThrow(EntityUid uid, float pushbackRatio = PushbackDefault, bool recoil = true, bool animated = true, - bool playSound = true) + bool playSound = true, + bool doSpin = true) { if (strength <= 0 || direction == Vector2Helpers.Infinity || direction == Vector2Helpers.NaN || direction == Vector2.Zero) return; @@ -147,17 +152,20 @@ public void TryThrow(EntityUid uid, ThrowingAngleComponent? throwingAngle = null; // Give it a l'il spin. - if (physics.InvI > 0f && (!TryComp(uid, out throwingAngle) || throwingAngle.AngularVelocity)) + if (doSpin) { - _physics.ApplyAngularImpulse(uid, ThrowAngularImpulse / physics.InvI, body: physics); - } - else - { - Resolve(uid, ref throwingAngle, false); - var gridRot = _transform.GetWorldRotation(transform.ParentUid); - var angle = direction.ToWorldAngle() - gridRot; - var offset = throwingAngle?.Angle ?? Angle.Zero; - _transform.SetLocalRotation(uid, angle + offset); + if (physics.InvI > 0f && (!TryComp(uid, out throwingAngle) || throwingAngle.AngularVelocity)) + { + _physics.ApplyAngularImpulse(uid, ThrowAngularImpulse / physics.InvI, body: physics); + } + else + { + Resolve(uid, ref throwingAngle, false); + var gridRot = _transform.GetWorldRotation(transform.ParentUid); + var angle = direction.ToWorldAngle() - gridRot; + var offset = throwingAngle?.Angle ?? Angle.Zero; + _transform.SetLocalRotation(uid, angle + offset); + } } var throwEvent = new ThrownEvent(user, uid); From 3fc02edd4ea10d914f280e367c49238ec6126f02 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 30 Mar 2024 03:36:48 +0000 Subject: [PATCH 12/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2a3ec713b39..b4ec1e0b339 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix buckle sound playing twice in some instances. - type: Fix - id: 5756 - time: '2024-01-20T06:22:19.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24321 - author: tday changes: - message: Added admin log messages for adding and ending game rules, and for the @@ -3794,3 +3787,10 @@ id: 6255 time: '2024-03-30T03:31:32.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26494 +- author: Zealith-Gamer + changes: + - message: Items being pulled no longer spin when being thrown. + type: Fix + id: 6256 + time: '2024-03-30T03:35:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26504 From f192d7901fedd134c38a6cab38731f8e93994492 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Fri, 29 Mar 2024 20:59:16 -0700 Subject: [PATCH 13/83] Hyposprays Draw from Jugs (#25544) * Hyposprays Draw from Jugs * Fix last onlyMobs usage in yml * Some Suggested Changes * Remove unnecessary datafield name declarations * Remove unnecessary dirtying of component * Same line parentheses * Added client-side HypospraySystem * Cache UI values and only updates if values change * empty line * Update label * Label change * Reimplement ReactionMixerSystem * Remove DataField from Hypospray Toggle Mode * Change ToggleMode from enum to Bool OnlyAffectsMobs * Add DataField required back since it's required for replays...? * update EligibleEntity and uses of it * Add user argument back * Adds newline Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Guard for dirty entity * Adds summary tag --------- Co-authored-by: Plykiya Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../Components/HyposprayComponent.cs | 16 -- .../EntitySystems/HypospraySystem.cs | 15 ++ .../Chemistry/EntitySystems/InjectorSystem.cs | 13 -- .../Chemistry/UI/HyposprayStatusControl.cs | 48 +++-- .../Body/Components/BloodstreamComponent.cs | 2 +- .../Components/HyposprayComponent.cs | 28 --- .../EntitySystems/ChemistrySystem.cs | 26 --- .../EntitySystems/ChemistrySystemHypospray.cs | 164 --------------- .../EntitySystems/HypospraySystem.cs | 197 ++++++++++++++++++ ...ySystemMixer.cs => ReactionMixerSystem.cs} | 11 +- .../Components/HyposprayComponent.cs | 33 +++ .../Components/SharedHyposprayComponent.cs | 25 --- .../EntitySystems/SharedHypospraySystem.cs | 61 ++++++ .../EntitySystems/SharedInjectorSystem.cs | 3 - .../components/hypospray-component.ftl | 12 +- .../Objects/Specific/Medical/hypospray.yml | 14 +- 16 files changed, 369 insertions(+), 299 deletions(-) delete mode 100644 Content.Client/Chemistry/Components/HyposprayComponent.cs create mode 100644 Content.Client/Chemistry/EntitySystems/HypospraySystem.cs delete mode 100644 Content.Server/Chemistry/Components/HyposprayComponent.cs delete mode 100644 Content.Server/Chemistry/EntitySystems/ChemistrySystem.cs delete mode 100644 Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs create mode 100644 Content.Server/Chemistry/EntitySystems/HypospraySystem.cs rename Content.Server/Chemistry/EntitySystems/{ChemistrySystemMixer.cs => ReactionMixerSystem.cs} (76%) create mode 100644 Content.Shared/Chemistry/Components/HyposprayComponent.cs delete mode 100644 Content.Shared/Chemistry/Components/SharedHyposprayComponent.cs create mode 100644 Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs diff --git a/Content.Client/Chemistry/Components/HyposprayComponent.cs b/Content.Client/Chemistry/Components/HyposprayComponent.cs deleted file mode 100644 index 705b79ad84c..00000000000 --- a/Content.Client/Chemistry/Components/HyposprayComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Shared.Chemistry.Components; -using Content.Shared.FixedPoint; - -namespace Content.Client.Chemistry.Components -{ - [RegisterComponent] - public sealed partial class HyposprayComponent : SharedHyposprayComponent - { - [ViewVariables] - public FixedPoint2 CurrentVolume; - [ViewVariables] - public FixedPoint2 TotalVolume; - [ViewVariables(VVAccess.ReadWrite)] - public bool UiUpdateNeeded; - } -} diff --git a/Content.Client/Chemistry/EntitySystems/HypospraySystem.cs b/Content.Client/Chemistry/EntitySystems/HypospraySystem.cs new file mode 100644 index 00000000000..ee7aa3aafe3 --- /dev/null +++ b/Content.Client/Chemistry/EntitySystems/HypospraySystem.cs @@ -0,0 +1,15 @@ +using Content.Client.Chemistry.UI; +using Content.Client.Items; +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.EntitySystems; + +namespace Content.Client.Chemistry.EntitySystems; + +public sealed class HypospraySystem : SharedHypospraySystem +{ + public override void Initialize() + { + base.Initialize(); + Subs.ItemStatus(ent => new HyposprayStatusControl(ent, _solutionContainers)); + } +} diff --git a/Content.Client/Chemistry/EntitySystems/InjectorSystem.cs b/Content.Client/Chemistry/EntitySystems/InjectorSystem.cs index 12eb7f3d14d..0131a283c8c 100644 --- a/Content.Client/Chemistry/EntitySystems/InjectorSystem.cs +++ b/Content.Client/Chemistry/EntitySystems/InjectorSystem.cs @@ -1,4 +1,3 @@ -using Content.Client.Chemistry.Components; using Content.Client.Chemistry.UI; using Content.Client.Items; using Content.Shared.Chemistry.Components; @@ -13,17 +12,5 @@ public override void Initialize() { base.Initialize(); Subs.ItemStatus(ent => new InjectorStatusControl(ent, SolutionContainers)); - SubscribeLocalEvent(OnHandleHyposprayState); - Subs.ItemStatus(ent => new HyposprayStatusControl(ent)); - } - - private void OnHandleHyposprayState(EntityUid uid, HyposprayComponent component, ref ComponentHandleState args) - { - if (args.Current is not HyposprayComponentState cState) - return; - - component.CurrentVolume = cState.CurVolume; - component.TotalVolume = cState.MaxVolume; - component.UiUpdateNeeded = true; } } diff --git a/Content.Client/Chemistry/UI/HyposprayStatusControl.cs b/Content.Client/Chemistry/UI/HyposprayStatusControl.cs index bd85cd546cc..4a4d90dc4d5 100644 --- a/Content.Client/Chemistry/UI/HyposprayStatusControl.cs +++ b/Content.Client/Chemistry/UI/HyposprayStatusControl.cs @@ -1,6 +1,8 @@ -using Content.Client.Chemistry.Components; using Content.Client.Message; using Content.Client.Stylesheets; +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.FixedPoint; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Timing; @@ -9,34 +11,48 @@ namespace Content.Client.Chemistry.UI; public sealed class HyposprayStatusControl : Control { - private readonly HyposprayComponent _parent; + private readonly Entity _parent; private readonly RichTextLabel _label; + private readonly SharedSolutionContainerSystem _solutionContainers; - public HyposprayStatusControl(HyposprayComponent parent) + private FixedPoint2 PrevVolume; + private FixedPoint2 PrevMaxVolume; + private bool PrevOnlyAffectsMobs; + + public HyposprayStatusControl(Entity parent, SharedSolutionContainerSystem solutionContainers) { _parent = parent; - _label = new RichTextLabel {StyleClasses = {StyleNano.StyleClassItemStatus}}; + _solutionContainers = solutionContainers; + _label = new RichTextLabel { StyleClasses = { StyleNano.StyleClassItemStatus } }; AddChild(_label); - - Update(); } protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); - if (!_parent.UiUpdateNeeded) + + if (!_solutionContainers.TryGetSolution(_parent.Owner, _parent.Comp.SolutionName, out _, out var solution)) return; - Update(); - } - public void Update() - { + // only updates the UI if any of the details are different than they previously were + if (PrevVolume == solution.Volume + && PrevMaxVolume == solution.MaxVolume + && PrevOnlyAffectsMobs == _parent.Comp.OnlyAffectsMobs) + return; + + PrevVolume = solution.Volume; + PrevMaxVolume = solution.MaxVolume; + PrevOnlyAffectsMobs = _parent.Comp.OnlyAffectsMobs; - _parent.UiUpdateNeeded = false; + var modeStringLocalized = Loc.GetString(_parent.Comp.OnlyAffectsMobs switch + { + false => "hypospray-all-mode-text", + true => "hypospray-mobs-only-mode-text", + }); - _label.SetMarkup(Loc.GetString( - "hypospray-volume-text", - ("currentVolume", _parent.CurrentVolume), - ("totalVolume", _parent.TotalVolume))); + _label.SetMarkup(Loc.GetString("hypospray-volume-label", + ("currentVolume", solution.Volume), + ("totalVolume", solution.MaxVolume), + ("modeString", modeStringLocalized))); } } diff --git a/Content.Server/Body/Components/BloodstreamComponent.cs b/Content.Server/Body/Components/BloodstreamComponent.cs index d448c4aab21..1d8aa9ffd3d 100644 --- a/Content.Server/Body/Components/BloodstreamComponent.cs +++ b/Content.Server/Body/Components/BloodstreamComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.Body.Components { - [RegisterComponent, Access(typeof(BloodstreamSystem), (typeof(ChemistrySystem)))] + [RegisterComponent, Access(typeof(BloodstreamSystem), typeof(ReactionMixerSystem))] public sealed partial class BloodstreamComponent : Component { public static string DefaultChemicalsSolutionName = "chemicals"; diff --git a/Content.Server/Chemistry/Components/HyposprayComponent.cs b/Content.Server/Chemistry/Components/HyposprayComponent.cs deleted file mode 100644 index 2a80cec801b..00000000000 --- a/Content.Server/Chemistry/Components/HyposprayComponent.cs +++ /dev/null @@ -1,28 +0,0 @@ -using Content.Shared.Chemistry.Components; -using Content.Shared.FixedPoint; -using Robust.Shared.Audio; - -namespace Content.Server.Chemistry.Components -{ - [RegisterComponent] - public sealed partial class HyposprayComponent : SharedHyposprayComponent - { - // TODO: This should be on clumsycomponent. - [DataField("clumsyFailChance")] - [ViewVariables(VVAccess.ReadWrite)] - public float ClumsyFailChance = 0.5f; - - [DataField("transferAmount")] - [ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 TransferAmount = FixedPoint2.New(5); - - [DataField("injectSound")] - public SoundSpecifier InjectSound = new SoundPathSpecifier("/Audio/Items/hypospray.ogg"); - - /// - /// Whether or not the hypo is able to inject only into mobs. On false you can inject into beakers/jugs - /// - [DataField("onlyMobs")] - public bool OnlyMobs = true; - } -} diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.cs deleted file mode 100644 index c4f22dc63aa..00000000000 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.cs +++ /dev/null @@ -1,26 +0,0 @@ -using Content.Server.Administration.Logs; -using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Server.Interaction; -using Content.Server.Popups; -using Content.Shared.Chemistry; -using Robust.Shared.Audio.Systems; - -namespace Content.Server.Chemistry.EntitySystems; - -public sealed partial class ChemistrySystem : EntitySystem -{ - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IEntityManager _entMan = default!; - [Dependency] private readonly InteractionSystem _interaction = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly ReactiveSystem _reactiveSystem = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainers = default!; - - public override void Initialize() - { - // Why ChemMaster duplicates reagentdispenser nobody knows. - InitializeHypospray(); - InitializeMixing(); - } -} diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs deleted file mode 100644 index be8faec9845..00000000000 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs +++ /dev/null @@ -1,164 +0,0 @@ -using Content.Server.Chemistry.Components; -using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Shared.Chemistry.Components; -using Content.Shared.Chemistry.Components.SolutionManager; -using Content.Shared.Chemistry.EntitySystems; -using Content.Shared.Chemistry.Reagent; -using Content.Shared.Database; -using Content.Shared.FixedPoint; -using Content.Shared.Forensics; -using Content.Shared.IdentityManagement; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Mobs.Components; -using Content.Shared.Timing; -using Content.Shared.Weapons.Melee.Events; -using Robust.Shared.GameStates; -using System.Diagnostics.CodeAnalysis; -using System.Linq; - -namespace Content.Server.Chemistry.EntitySystems -{ - public sealed partial class ChemistrySystem - { - [Dependency] private readonly UseDelaySystem _useDelay = default!; - - private void InitializeHypospray() - { - SubscribeLocalEvent(OnAfterInteract); - SubscribeLocalEvent(OnAttack); - SubscribeLocalEvent(OnSolutionChange); - SubscribeLocalEvent(OnUseInHand); - SubscribeLocalEvent(OnHypoGetState); - } - - private void OnHypoGetState(Entity entity, ref ComponentGetState args) - { - args.State = _solutionContainers.TryGetSolution(entity.Owner, entity.Comp.SolutionName, out _, out var solution) - ? new HyposprayComponentState(solution.Volume, solution.MaxVolume) - : new HyposprayComponentState(FixedPoint2.Zero, FixedPoint2.Zero); - } - - private void OnUseInHand(Entity entity, ref UseInHandEvent args) - { - if (args.Handled) - return; - - TryDoInject(entity, args.User, args.User); - args.Handled = true; - } - - private void OnSolutionChange(Entity entity, ref SolutionContainerChangedEvent args) - { - Dirty(entity); - } - - public void OnAfterInteract(Entity entity, ref AfterInteractEvent args) - { - if (!args.CanReach) - return; - - var target = args.Target; - var user = args.User; - - TryDoInject(entity, target, user); - } - - public void OnAttack(Entity entity, ref MeleeHitEvent args) - { - if (!args.HitEntities.Any()) - return; - - TryDoInject(entity, args.HitEntities.First(), args.User); - } - - public bool TryDoInject(Entity hypo, EntityUid? target, EntityUid user) - { - var (uid, component) = hypo; - - if (!EligibleEntity(target, _entMan, component)) - return false; - - if (TryComp(uid, out UseDelayComponent? delayComp)) - { - if (_useDelay.IsDelayed((uid, delayComp))) - return false; - } - - - string? msgFormat = null; - - if (target == user) - msgFormat = "hypospray-component-inject-self-message"; - else if (EligibleEntity(user, _entMan, component) && _interaction.TryRollClumsy(user, component.ClumsyFailChance)) - { - msgFormat = "hypospray-component-inject-self-clumsy-message"; - target = user; - } - - if (!_solutionContainers.TryGetSolution(uid, component.SolutionName, out var hypoSpraySoln, out var hypoSpraySolution) || hypoSpraySolution.Volume == 0) - { - _popup.PopupCursor(Loc.GetString("hypospray-component-empty-message"), user); - return true; - } - - if (!_solutionContainers.TryGetInjectableSolution(target.Value, out var targetSoln, out var targetSolution)) - { - _popup.PopupCursor(Loc.GetString("hypospray-cant-inject", ("target", Identity.Entity(target.Value, _entMan))), user); - return false; - } - - _popup.PopupCursor(Loc.GetString(msgFormat ?? "hypospray-component-inject-other-message", ("other", target)), user); - - if (target != user) - { - _popup.PopupEntity(Loc.GetString("hypospray-component-feel-prick-message"), target.Value, target.Value); - // TODO: This should just be using melee attacks... - // meleeSys.SendLunge(angle, user); - } - - _audio.PlayPvs(component.InjectSound, user); - - // Medipens and such use this system and don't have a delay, requiring extra checks - // BeginDelay function returns if item is already on delay - if (delayComp != null) - _useDelay.TryResetDelay((uid, delayComp)); - - // Get transfer amount. May be smaller than component.TransferAmount if not enough room - var realTransferAmount = FixedPoint2.Min(component.TransferAmount, targetSolution.AvailableVolume); - - if (realTransferAmount <= 0) - { - _popup.PopupCursor(Loc.GetString("hypospray-component-transfer-already-full-message", ("owner", target)), user); - return true; - } - - // Move units from attackSolution to targetSolution - var removedSolution = _solutionContainers.SplitSolution(hypoSpraySoln.Value, realTransferAmount); - - if (!targetSolution.CanAddSolution(removedSolution)) - return true; - _reactiveSystem.DoEntityReaction(target.Value, removedSolution, ReactionMethod.Injection); - _solutionContainers.TryAddSolution(targetSoln.Value, removedSolution); - - var ev = new TransferDnaEvent { Donor = target.Value, Recipient = uid }; - RaiseLocalEvent(target.Value, ref ev); - - // same LogType as syringes... - _adminLogger.Add(LogType.ForceFeed, $"{_entMan.ToPrettyString(user):user} injected {_entMan.ToPrettyString(target.Value):target} with a solution {SolutionContainerSystem.ToPrettyString(removedSolution):removedSolution} using a {_entMan.ToPrettyString(uid):using}"); - - return true; - } - - static bool EligibleEntity([NotNullWhen(true)] EntityUid? entity, IEntityManager entMan, HyposprayComponent component) - { - // TODO: Does checking for BodyComponent make sense as a "can be hypospray'd" tag? - // In SS13 the hypospray ONLY works on mobs, NOT beakers or anything else. - // But this is 14, we dont do what SS13 does just because SS13 does it. - return component.OnlyMobs - ? entMan.HasComponent(entity) && - entMan.HasComponent(entity) - : entMan.HasComponent(entity); - } - } -} diff --git a/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs b/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs new file mode 100644 index 00000000000..dfbe45c035b --- /dev/null +++ b/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs @@ -0,0 +1,197 @@ +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Database; +using Content.Shared.FixedPoint; +using Content.Shared.Forensics; +using Content.Shared.IdentityManagement; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Mobs.Components; +using Content.Shared.Timing; +using Content.Shared.Weapons.Melee.Events; +using Content.Server.Interaction; +using Content.Server.Body.Components; +using Content.Server.Chemistry.Containers.EntitySystems; +using Robust.Shared.GameStates; +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Robust.Server.Audio; + +namespace Content.Server.Chemistry.EntitySystems; + +public sealed class HypospraySystem : SharedHypospraySystem +{ + [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly InteractionSystem _interaction = default!; + [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAfterInteract); + SubscribeLocalEvent(OnAttack); + SubscribeLocalEvent(OnUseInHand); + } + + private void UseHypospray(Entity entity, EntityUid target, EntityUid user) + { + // if target is ineligible but is a container, try to draw from the container + if (!EligibleEntity(target, EntityManager, entity) + && _solutionContainers.TryGetDrawableSolution(target, out var drawableSolution, out _)) + { + TryDraw(entity, target, drawableSolution.Value, user); + } + + TryDoInject(entity, target, user); + } + + private void OnUseInHand(Entity entity, ref UseInHandEvent args) + { + if (args.Handled) + return; + + TryDoInject(entity, args.User, args.User); + args.Handled = true; + } + + public void OnAfterInteract(Entity entity, ref AfterInteractEvent args) + { + if (args.Handled || !args.CanReach || args.Target == null) + return; + + UseHypospray(entity, args.Target.Value, args.User); + args.Handled = true; + } + + public void OnAttack(Entity entity, ref MeleeHitEvent args) + { + if (!args.HitEntities.Any()) + return; + + TryDoInject(entity, args.HitEntities.First(), args.User); + } + + public bool TryDoInject(Entity entity, EntityUid target, EntityUid user) + { + var (uid, component) = entity; + + if (!EligibleEntity(target, EntityManager, component)) + return false; + + if (TryComp(uid, out UseDelayComponent? delayComp)) + { + if (_useDelay.IsDelayed((uid, delayComp))) + return false; + } + + string? msgFormat = null; + + if (target == user) + msgFormat = "hypospray-component-inject-self-message"; + else if (EligibleEntity(user, EntityManager, component) && _interaction.TryRollClumsy(user, component.ClumsyFailChance)) + { + msgFormat = "hypospray-component-inject-self-clumsy-message"; + target = user; + } + + if (!_solutionContainers.TryGetSolution(uid, component.SolutionName, out var hypoSpraySoln, out var hypoSpraySolution) || hypoSpraySolution.Volume == 0) + { + _popup.PopupEntity(Loc.GetString("hypospray-component-empty-message"), target, user); + return true; + } + + if (!_solutionContainers.TryGetInjectableSolution(target, out var targetSoln, out var targetSolution)) + { + _popup.PopupEntity(Loc.GetString("hypospray-cant-inject", ("target", Identity.Entity(target, EntityManager))), target, user); + return false; + } + + _popup.PopupEntity(Loc.GetString(msgFormat ?? "hypospray-component-inject-other-message", ("other", target)), target, user); + + if (target != user) + { + _popup.PopupEntity(Loc.GetString("hypospray-component-feel-prick-message"), target, target); + // TODO: This should just be using melee attacks... + // meleeSys.SendLunge(angle, user); + } + + _audio.PlayPvs(component.InjectSound, user); + + // Medipens and such use this system and don't have a delay, requiring extra checks + // BeginDelay function returns if item is already on delay + if (delayComp != null) + _useDelay.TryResetDelay((uid, delayComp)); + + // Get transfer amount. May be smaller than component.TransferAmount if not enough room + var realTransferAmount = FixedPoint2.Min(component.TransferAmount, targetSolution.AvailableVolume); + + if (realTransferAmount <= 0) + { + _popup.PopupEntity(Loc.GetString("hypospray-component-transfer-already-full-message", ("owner", target)), target, user); + return true; + } + + // Move units from attackSolution to targetSolution + var removedSolution = _solutionContainers.SplitSolution(hypoSpraySoln.Value, realTransferAmount); + + if (!targetSolution.CanAddSolution(removedSolution)) + return true; + _reactiveSystem.DoEntityReaction(target, removedSolution, ReactionMethod.Injection); + _solutionContainers.TryAddSolution(targetSoln.Value, removedSolution); + + var ev = new TransferDnaEvent { Donor = target, Recipient = uid }; + RaiseLocalEvent(target, ref ev); + + // same LogType as syringes... + _adminLogger.Add(LogType.ForceFeed, $"{EntityManager.ToPrettyString(user):user} injected {EntityManager.ToPrettyString(target):target} with a solution {SolutionContainerSystem.ToPrettyString(removedSolution):removedSolution} using a {EntityManager.ToPrettyString(uid):using}"); + + return true; + } + + private void TryDraw(Entity entity, Entity target, Entity targetSolution, EntityUid user) + { + if (!_solutionContainers.TryGetSolution(entity.Owner, entity.Comp.SolutionName, out var soln, + out var solution) || solution.AvailableVolume == 0) + { + return; + } + + // Get transfer amount. May be smaller than _transferAmount if not enough room, also make sure there's room in the injector + var realTransferAmount = FixedPoint2.Min(entity.Comp.TransferAmount, targetSolution.Comp.Solution.Volume, + solution.AvailableVolume); + + if (realTransferAmount <= 0) + { + _popup.PopupEntity( + Loc.GetString("injector-component-target-is-empty-message", + ("target", Identity.Entity(target, EntityManager))), + entity.Owner, user); + return; + } + + var removedSolution = _solutionContainers.Draw(target.Owner, targetSolution, realTransferAmount); + + if (!_solutionContainers.TryAddSolution(soln.Value, removedSolution)) + { + return; + } + + _popup.PopupEntity(Loc.GetString("injector-component-draw-success-message", + ("amount", removedSolution.Volume), + ("target", Identity.Entity(target, EntityManager))), entity.Owner, user); + } + + private bool EligibleEntity(EntityUid entity, IEntityManager entMan, HyposprayComponent component) + { + // TODO: Does checking for BodyComponent make sense as a "can be hypospray'd" tag? + // In SS13 the hypospray ONLY works on mobs, NOT beakers or anything else. + // But this is 14, we dont do what SS13 does just because SS13 does it. + return component.OnlyAffectsMobs + ? entMan.HasComponent(entity) && + entMan.HasComponent(entity) + : entMan.HasComponent(entity); + } +} diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystemMixer.cs b/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs similarity index 76% rename from Content.Server/Chemistry/EntitySystems/ChemistrySystemMixer.cs rename to Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs index 0230671ec98..032374d4a55 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystemMixer.cs +++ b/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs @@ -1,13 +1,20 @@ using Content.Shared.Chemistry.Reaction; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; +using Content.Server.Chemistry.Containers.EntitySystems; +using Content.Server.Popups; namespace Content.Server.Chemistry.EntitySystems; -public sealed partial class ChemistrySystem +public sealed partial class ReactionMixerSystem : EntitySystem { - public void InitializeMixing() + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly SolutionContainerSystem _solutionContainers = default!; + + public override void Initialize() { + base.Initialize(); + SubscribeLocalEvent(OnAfterInteract); } diff --git a/Content.Shared/Chemistry/Components/HyposprayComponent.cs b/Content.Shared/Chemistry/Components/HyposprayComponent.cs new file mode 100644 index 00000000000..05d202aaaa3 --- /dev/null +++ b/Content.Shared/Chemistry/Components/HyposprayComponent.cs @@ -0,0 +1,33 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; +using Robust.Shared.Audio; + +namespace Content.Shared.Chemistry.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class HyposprayComponent : Component +{ + [DataField] + public string SolutionName = "hypospray"; + + // TODO: This should be on clumsycomponent. + [DataField] + [ViewVariables(VVAccess.ReadWrite)] + public float ClumsyFailChance = 0.5f; + + [DataField] + [ViewVariables(VVAccess.ReadWrite)] + public FixedPoint2 TransferAmount = FixedPoint2.New(5); + + [DataField] + public SoundSpecifier InjectSound = new SoundPathSpecifier("/Audio/Items/hypospray.ogg"); + + /// + /// Decides whether you can inject everything or just mobs. + /// When you can only affect mobs, you're capable of drawing from beakers. + /// + [AutoNetworkedField] + [DataField(required: true)] + public bool OnlyAffectsMobs = false; +} diff --git a/Content.Shared/Chemistry/Components/SharedHyposprayComponent.cs b/Content.Shared/Chemistry/Components/SharedHyposprayComponent.cs deleted file mode 100644 index a8df6be1090..00000000000 --- a/Content.Shared/Chemistry/Components/SharedHyposprayComponent.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Content.Shared.FixedPoint; -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Chemistry.Components; - -[NetworkedComponent()] -public abstract partial class SharedHyposprayComponent : Component -{ - [DataField("solutionName")] - public string SolutionName = "hypospray"; -} - -[Serializable, NetSerializable] -public sealed class HyposprayComponentState : ComponentState -{ - public FixedPoint2 CurVolume { get; } - public FixedPoint2 MaxVolume { get; } - - public HyposprayComponentState(FixedPoint2 curVolume, FixedPoint2 maxVolume) - { - CurVolume = curVolume; - MaxVolume = maxVolume; - } -} diff --git a/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs new file mode 100644 index 00000000000..f91e5621f0a --- /dev/null +++ b/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs @@ -0,0 +1,61 @@ +using Content.Shared.Chemistry.Components; +using Content.Shared.Timing; +using Content.Shared.Verbs; +using Content.Shared.Popups; +using Robust.Shared.Player; +using Content.Shared.Administration.Logs; + +namespace Content.Shared.Chemistry.EntitySystems; + +public abstract class SharedHypospraySystem : EntitySystem +{ + [Dependency] protected readonly UseDelaySystem _useDelay = default!; + [Dependency] protected readonly SharedPopupSystem _popup = default!; + [Dependency] protected readonly SharedSolutionContainerSystem _solutionContainers = default!; + [Dependency] protected readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] protected readonly ReactiveSystem _reactiveSystem = default!; + + public override void Initialize() + { + SubscribeLocalEvent>(AddToggleModeVerb); + } + + // + // Uses the OnlyMobs field as a check to implement the ability + // to draw from jugs and containers with the hypospray + // Toggleable to allow people to inject containers if they prefer it over drawing + // + private void AddToggleModeVerb(Entity entity, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + var (_, component) = entity; + var user = args.User; + var verb = new AlternativeVerb + { + Text = Loc.GetString("hypospray-verb-mode-label"), + Act = () => + { + ToggleMode(entity, user); + } + }; + args.Verbs.Add(verb); + } + + private void ToggleMode(Entity entity, EntityUid user) + { + SetMode(entity, !entity.Comp.OnlyAffectsMobs); + string msg = entity.Comp.OnlyAffectsMobs ? "hypospray-verb-mode-inject-mobs-only" : "hypospray-verb-mode-inject-all"; + _popup.PopupClient(Loc.GetString(msg), entity, user); + } + + public void SetMode(Entity entity, bool onlyAffectsMobs) + { + if (entity.Comp.OnlyAffectsMobs == onlyAffectsMobs) + return; + + entity.Comp.OnlyAffectsMobs = onlyAffectsMobs; + Dirty(entity); + } +} diff --git a/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs index 7e41cb39bd6..6c43c1d5f06 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs @@ -37,10 +37,7 @@ private void AddSetTransferVerbs(Entity entity, ref GetVerbsE if (!args.CanAccess || !args.CanInteract || args.Hands == null) return; - if (!HasComp(args.User)) - return; var user = args.User; - var (_, component) = entity; var min = component.MinimumTransferAmount; diff --git a/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl b/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl index 7acbe8664c4..52dbf9010e3 100644 --- a/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl @@ -1,13 +1,21 @@ ## UI -hypospray-volume-text = Volume: [color=white]{$currentVolume}/{$totalVolume}[/color] +hypospray-all-mode-text = Only Injects +hypospray-mobs-only-mode-text = Draws and Injects +hypospray-invalid-text = Invalid +hypospray-volume-label = Volume: [color=white]{$currentVolume}/{$totalVolume}u[/color] + Mode: [color=white]{$modeString}[/color] ## Entity hypospray-component-inject-other-message = You inject {$other}. hypospray-component-inject-self-message = You inject yourself. hypospray-component-inject-self-clumsy-message = Oops! You injected yourself. -hypospray-component-empty-message = It's empty! +hypospray-component-empty-message = Nothing to inject. hypospray-component-feel-prick-message = You feel a tiny prick! hypospray-component-transfer-already-full-message = {$owner} is already full! hypospray-cant-inject = Can't inject into {$target}! + +hypospray-verb-mode-label = Toggle Container Draw +hypospray-verb-mode-inject-all = You cannot draw from containers anymore. +hypospray-verb-mode-inject-mobs-only = You can now draw from containers. diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index 3d28487d68e..abcabd74810 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -18,7 +18,7 @@ - type: ExaminableSolution solution: hypospray - type: Hypospray - onlyMobs: false + onlyAffectsMobs: false - type: UseDelay delay: 0.5 - type: StaticPrice @@ -49,7 +49,7 @@ - type: ExaminableSolution solution: hypospray - type: Hypospray - onlyMobs: false + onlyAffectsMobs: false - type: UseDelay delay: 0.5 @@ -73,6 +73,7 @@ - type: ExaminableSolution solution: hypospray - type: Hypospray + onlyAffectsMobs: false - type: UseDelay delay: 0.5 @@ -113,6 +114,7 @@ - type: Hypospray solutionName: pen transferAmount: 15 + onlyAffectsMobs: false - type: Appearance - type: SolutionContainerVisuals maxFillLevels: 1 @@ -202,6 +204,7 @@ - type: Hypospray solutionName: pen transferAmount: 20 + onlyAffectsMobs: false - type: SolutionContainerManager solutions: pen: @@ -232,6 +235,7 @@ - type: Hypospray solutionName: pen transferAmount: 20 + onlyAffectsMobs: false - type: SolutionContainerManager solutions: pen: @@ -262,6 +266,7 @@ - type: Hypospray solutionName: pen transferAmount: 20 + onlyAffectsMobs: false - type: SolutionContainerManager solutions: pen: @@ -293,6 +298,7 @@ - type: Hypospray solutionName: pen transferAmount: 30 + onlyAffectsMobs: false - type: SolutionContainerManager solutions: pen: @@ -330,6 +336,7 @@ - type: Hypospray solutionName: pen transferAmount: 30 + onlyAffectsMobs: false - type: StaticPrice price: 500 - type: Tag @@ -389,6 +396,7 @@ - type: Hypospray solutionName: pen transferAmount: 30 + onlyAffectsMobs: false - type: StaticPrice price: 500 - type: Tag @@ -410,7 +418,7 @@ - type: ExaminableSolution solution: hypospray - type: Hypospray - onlyMobs: false + onlyAffectsMobs: false - type: UseDelay delay: 0.5 - type: StaticPrice # A new shitcurity meta From 431c3ad3b893b01b80e18ce0c00daffd2f77b046 Mon Sep 17 00:00:00 2001 From: EdenTheLiznerd <138748328+EdenTheLiznerd@users.noreply.github.com> Date: Fri, 29 Mar 2024 22:00:21 -0600 Subject: [PATCH 14/83] Rebalance amatoxin so it is a slower killer (#25830) * Balancing? Balancing!!! * Additional changes --- Resources/Prototypes/Reagents/toxins.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index 02e0b995193..6e1ad75a35a 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -425,11 +425,12 @@ color: "#D6CE7B" metabolisms: Poison: + metabolismRate: 0.2 effects: - !type:HealthChange damage: types: - Poison: 6 + Poison: 3 - type: reagent id: VentCrud From 299625772d86f28d847cde3104b6bf809033a2e5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 30 Mar 2024 04:00:22 +0000 Subject: [PATCH 15/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b4ec1e0b339..2ca08113a33 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: tday - changes: - - message: Added admin log messages for adding and ending game rules, and for the - commands to do so. - type: Add - - message: Added admin log messages for secret mode rule selection. - type: Add - id: 5757 - time: '2024-01-20T18:02:13.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24092 - author: Nimfar11 changes: - message: Adds snake kebab and its recipe. @@ -3794,3 +3784,11 @@ id: 6256 time: '2024-03-30T03:35:43.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26504 +- author: Plykiya + changes: + - message: Hyposprays can now be toggled to draw from solution containers like jugs + and beakers. + type: Tweak + id: 6257 + time: '2024-03-30T03:59:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25544 From aa96baeb5fd68f7877c60ed20fdfdd3edf0ade02 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 30 Mar 2024 04:01:31 +0000 Subject: [PATCH 16/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2ca08113a33..8c70fdc6380 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Nimfar11 - changes: - - message: Adds snake kebab and its recipe. - type: Add - id: 5758 - time: '2024-01-20T23:38:11.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24341 - author: Alekshhh changes: - message: Cerberus now has a wideswing that works similarly to spears. @@ -3792,3 +3785,11 @@ id: 6257 time: '2024-03-30T03:59:17.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/25544 +- author: EdenTheLiznerd + changes: + - message: Amanita toxin now kills you slightly slower, providing you time to seek + charcoal before it's too late + type: Tweak + id: 6258 + time: '2024-03-30T04:00:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25830 From 888a3bda515a214733bf748c5d6a7e7c923a301e Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 30 Mar 2024 17:17:53 +1300 Subject: [PATCH 17/83] Atmos device performance improvements (#26493) * Atmos device performance improvements * AtmosDirection perf improvements * Fix errors * Add GasTileOverlayComponent arguments * Make excite no longer invalidate a tile --- .../Atmos/EntitySystems/AirFilterSystem.cs | 10 +-- .../Atmos/EntitySystems/AtmosExposedSystem.cs | 12 +-- .../EntitySystems/AtmosphereSystem.API.cs | 86 +++++++++++-------- .../AtmosphereSystem.ExcitedGroup.cs | 12 ++- .../AtmosphereSystem.GridAtmosphere.cs | 11 +-- .../EntitySystems/AtmosphereSystem.Hotspot.cs | 14 +-- .../EntitySystems/AtmosphereSystem.LINDA.cs | 18 ++-- .../AtmosphereSystem.Monstermos.cs | 40 +++++---- .../AtmosphereSystem.Processing.cs | 46 ++++++---- .../AtmosphereSystem.Superconductivity.cs | 2 +- .../EntitySystems/AtmosphereSystem.Utils.cs | 12 ++- .../Atmos/EntitySystems/AtmosphereSystem.cs | 2 +- .../Atmos/EntitySystems/GasTankSystem.cs | 2 +- .../EntitySystems/GasTileOverlaySystem.cs | 8 +- .../EntitySystems/HeatExchangerSystem.cs | 20 ++--- .../Monitor/Systems/AtmosMonitoringSystem.cs | 6 +- .../EntitySystems/GasPassiveGateSystem.cs | 6 +- .../EntitySystems/GasPressurePumpSystem.cs | 4 +- .../Binary/EntitySystems/GasRecyclerSystem.cs | 10 +-- .../Binary/EntitySystems/GasValveSystem.cs | 5 +- .../EntitySystems/GasVolumePumpSystem.cs | 7 +- .../Piping/Components/AtmosDeviceComponent.cs | 20 +++-- .../Piping/EntitySystems/AtmosDeviceSystem.cs | 3 +- .../Other/EntitySystems/GasMinerSystem.cs | 4 +- .../Trinary/EntitySystems/GasFilterSystem.cs | 15 ++-- .../Trinary/EntitySystems/GasMixerSystem.cs | 14 +-- .../PressureControlledValveSystem.cs | 6 +- .../Unary/EntitySystems/GasCanisterSystem.cs | 4 +- .../Unary/EntitySystems/GasCondenserSystem.cs | 5 +- .../EntitySystems/GasOutletInjectorSystem.cs | 10 +-- .../EntitySystems/GasPassiveVentSystem.cs | 7 +- .../Unary/EntitySystems/GasPortableSystem.cs | 5 +- .../EntitySystems/GasThermoMachineSystem.cs | 5 +- .../Unary/EntitySystems/GasVentPumpSystem.cs | 12 +-- .../EntitySystems/GasVentScrubberSystem.cs | 19 ++-- .../Atmos/Portable/PortableScrubberSystem.cs | 32 +++---- .../Atmos/Portable/SpaceHeaterSystem.cs | 2 +- .../Electrocution/ElectrocutionNode.cs | 9 +- .../EntitySystems/ExplosionGridTileFlood.cs | 4 +- .../EntitySystems/ExplosionSpaceTileFlood.cs | 2 +- Content.Server/Mech/Systems/MechSystem.cs | 11 ++- Content.Server/Medical/CryoPodSystem.cs | 15 +--- .../EntitySystems/NodeContainerSystem.cs | 74 ++++++++++++++++ .../PneumaticCannon/PneumaticCannonSystem.cs | 2 +- .../Power/Components/CableVisComponent.cs | 4 +- .../Power/EntitySystems/CableVisSystem.cs | 7 +- .../Power/Generator/GasPowerReceiverSystem.cs | 8 +- Content.Server/Spreader/SpreaderSystem.cs | 7 +- Content.Shared/Atmos/AtmosDirection.cs | 24 +++++- .../Tools/Systems/WeldableSystem.cs | 32 +++---- .../Entities/Virtual/electrocution.yml | 2 +- 51 files changed, 373 insertions(+), 324 deletions(-) diff --git a/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs b/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs index d947e60b6da..2ab15cfb174 100644 --- a/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs @@ -13,6 +13,7 @@ public sealed class AirFilterSystem : EntitySystem { [Dependency] private readonly AtmosphereSystem _atmosphere = default!; [Dependency] private readonly IMapManager _map = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { @@ -31,7 +32,7 @@ private void OnIntakeUpdate(EntityUid uid, AirIntakeComponent intake, ref AtmosD if (air.Pressure >= intake.Pressure) return; - var environment = _atmosphere.GetContainingMixture(uid, true, true); + var environment = _atmosphere.GetContainingMixture(uid, args.Grid, args.Map, true, true); // nothing to intake from if (environment == null) return; @@ -63,12 +64,11 @@ private void OnFilterUpdate(EntityUid uid, AirFilterComponent filter, ref AtmosD var oxygen = air.GetMoles(filter.Oxygen) / air.TotalMoles; var gases = oxygen >= filter.TargetOxygen ? filter.Gases : filter.OverflowGases; - var coordinates = Transform(uid).MapPosition; GasMixture? destination = null; - if (_map.TryFindGridAt(coordinates, out _, out var grid)) + if (args.Grid is {} grid) { - var tile = grid.GetTileRef(coordinates); - destination = _atmosphere.GetTileMixture(tile.GridUid, null, tile.GridIndices, true); + var position = _transform.GetGridTilePositionOrDefault(uid); + destination = _atmosphere.GetTileMixture(grid, args.Map, position, true); } if (destination != null) diff --git a/Content.Server/Atmos/EntitySystems/AtmosExposedSystem.cs b/Content.Server/Atmos/EntitySystems/AtmosExposedSystem.cs index 4be4d8271f3..9590b9aa548 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosExposedSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosExposedSystem.cs @@ -24,6 +24,8 @@ public AtmosExposedUpdateEvent(EntityCoordinates coordinates, GasMixture mixture /// /// Event that tries to query the mixture a certain entity is exposed to. + /// This is mainly intended for use with entities inside of containers. + /// This event is not raised for entities that are directly parented to the grid. /// [ByRefEvent] public struct AtmosExposedGetAirEvent @@ -31,7 +33,7 @@ public struct AtmosExposedGetAirEvent /// /// The entity we want to query this for. /// - public readonly EntityUid Entity; + public readonly Entity Entity; /// /// The mixture that the entity is exposed to. Output parameter. @@ -39,9 +41,9 @@ public struct AtmosExposedGetAirEvent public GasMixture? Gas = null; /// - /// Whether to invalidate the mixture, if possible. + /// Whether to excite the mixture, if possible. /// - public bool Invalidate = false; + public readonly bool Excite = false; /// /// Whether this event has been handled or not. @@ -49,10 +51,10 @@ public struct AtmosExposedGetAirEvent /// public bool Handled = false; - public AtmosExposedGetAirEvent(EntityUid entity, bool invalidate = false) + public AtmosExposedGetAirEvent(Entity entity, bool excite = false) { Entity = entity; - Invalidate = invalidate; + Excite = excite; } } } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs index fb94fe414b0..614d550c2f7 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs @@ -4,6 +4,7 @@ using Content.Server.Atmos.Reactions; using Content.Server.NodeContainer.NodeGroups; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Robust.Shared.Map.Components; using Robust.Shared.Utility; @@ -11,41 +12,39 @@ namespace Content.Server.Atmos.EntitySystems; public partial class AtmosphereSystem { - public GasMixture? GetContainingMixture(EntityUid uid, bool ignoreExposed = false, bool excite = false, TransformComponent? transform = null) + public GasMixture? GetContainingMixture(Entity ent, bool ignoreExposed = false, bool excite = false) { - if (!ignoreExposed) - { - // Used for things like disposals/cryo to change which air people are exposed to. - var ev = new AtmosExposedGetAirEvent(uid, excite); - - // Give the entity itself a chance to handle this. - RaiseLocalEvent(uid, ref ev, false); - - if (ev.Handled) - return ev.Gas; + if (!Resolve(ent, ref ent.Comp)) + return null; - // We need to get the parent now, so we need the transform... If the parent is invalid, we can't do much else. - if(!Resolve(uid, ref transform) || !transform.ParentUid.IsValid() || transform.MapUid == null) - return GetTileMixture(null, null, Vector2i.Zero, excite); + return GetContainingMixture(ent, ent.Comp.GridUid, ent.Comp.MapUid, ignoreExposed, excite); + } - // Give the parent entity a chance to handle the event... - RaiseLocalEvent(transform.ParentUid, ref ev, false); + public GasMixture? GetContainingMixture( + Entity ent, + Entity? grid, + Entity? map, + bool ignoreExposed = false, + bool excite = false) + { + if (!Resolve(ent, ref ent.Comp)) + return null; + if (!ignoreExposed && !ent.Comp.Anchored) + { + // Used for things like disposals/cryo to change which air people are exposed to. + var ev = new AtmosExposedGetAirEvent((ent, ent.Comp), excite); + RaiseLocalEvent(ent, ref ev); if (ev.Handled) return ev.Gas; - } - // Oops, we did a little bit of code duplication... - else if(!Resolve(uid, ref transform)) - { - return GetTileMixture(null, null, Vector2i.Zero, excite); - } + // TODO ATMOS: recursively iterate up through parents + // This really needs recursive InContainer metadata flag for performance + // And ideally some fast way to get the innermost airtight container. + } - var gridUid = transform.GridUid; - var mapUid = transform.MapUid; - var position = _transformSystem.GetGridOrMapTilePosition(uid, transform); - - return GetTileMixture(gridUid, mapUid, position, excite); + var position = _transformSystem.GetGridTilePositionOrDefault((ent, ent.Comp)); + return GetTileMixture(grid, map, position, excite); } public bool HasAtmosphere(EntityUid gridUid) => _atmosQuery.HasComponent(gridUid); @@ -84,21 +83,28 @@ public void InvalidateTile(Entity entity, Vector2i til entity.Comp.InvalidatedCoords.Add(tile); } - public GasMixture?[]? GetTileMixtures(Entity? grid, Entity? map, List tiles, bool excite = false) + public GasMixture?[]? GetTileMixtures( + Entity? grid, + Entity? map, + List tiles, + bool excite = false) { GasMixture?[]? mixtures = null; var handled = false; // If we've been passed a grid, try to let it handle it. - if (grid is {} gridEnt && Resolve(gridEnt, ref gridEnt.Comp)) + if (grid is {} gridEnt && Resolve(gridEnt, ref gridEnt.Comp1)) { + if (excite) + Resolve(gridEnt, ref gridEnt.Comp2); + handled = true; mixtures = new GasMixture?[tiles.Count]; for (var i = 0; i < tiles.Count; i++) { var tile = tiles[i]; - if (!gridEnt.Comp.Tiles.TryGetValue(tile, out var atmosTile)) + if (!gridEnt.Comp1.Tiles.TryGetValue(tile, out var atmosTile)) { // need to get map atmosphere handled = false; @@ -108,7 +114,10 @@ public void InvalidateTile(Entity entity, Vector2i til mixtures[i] = atmosTile.Air; if (excite) - gridEnt.Comp.InvalidatedCoords.Add(tile); + { + AddActiveTile(gridEnt.Comp1, atmosTile); + InvalidateVisuals((gridEnt.Owner, gridEnt.Comp2), tile); + } } } @@ -146,15 +155,22 @@ public void InvalidateTile(Entity entity, Vector2i til return GetTileMixture(entity.Comp.GridUid, entity.Comp.MapUid, indices, excite); } - public GasMixture? GetTileMixture(Entity? grid, Entity? map, Vector2i gridTile, bool excite = false) + public GasMixture? GetTileMixture( + Entity? grid, + Entity? map, + Vector2i gridTile, + bool excite = false) { // If we've been passed a grid, try to let it handle it. if (grid is {} gridEnt - && Resolve(gridEnt, ref gridEnt.Comp, false) - && gridEnt.Comp.Tiles.TryGetValue(gridTile, out var tile)) + && Resolve(gridEnt, ref gridEnt.Comp1, false) + && gridEnt.Comp1.Tiles.TryGetValue(gridTile, out var tile)) { if (excite) - gridEnt.Comp.InvalidatedCoords.Add(gridTile); + { + AddActiveTile(gridEnt.Comp1, tile); + InvalidateVisuals((grid.Value.Owner, grid.Value.Comp2), gridTile); + } return tile.Air; } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.ExcitedGroup.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.ExcitedGroup.cs index de4c9199cf7..c1b58f7a772 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.ExcitedGroup.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.ExcitedGroup.cs @@ -1,5 +1,7 @@ using Content.Server.Atmos.Components; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; +using Robust.Shared.Map.Components; using Robust.Shared.Utility; namespace Content.Server.Atmos.EntitySystems @@ -64,10 +66,12 @@ private void ExcitedGroupResetCooldowns(ExcitedGroup excitedGroup) excitedGroup.DismantleCooldown = 0; } - private void ExcitedGroupSelfBreakdown(GridAtmosphereComponent gridAtmosphere, ExcitedGroup excitedGroup) + private void ExcitedGroupSelfBreakdown( + Entity ent, + ExcitedGroup excitedGroup) { DebugTools.Assert(!excitedGroup.Disposed, "Excited group is disposed!"); - DebugTools.Assert(gridAtmosphere.ExcitedGroups.Contains(excitedGroup), "Grid Atmosphere does not contain Excited Group!"); + DebugTools.Assert(ent.Comp1.ExcitedGroups.Contains(excitedGroup), "Grid Atmosphere does not contain Excited Group!"); var combined = new GasMixture(Atmospherics.CellVolume); var tileSize = excitedGroup.Tiles.Count; @@ -77,7 +81,7 @@ private void ExcitedGroupSelfBreakdown(GridAtmosphereComponent gridAtmosphere, E if (tileSize == 0) { - ExcitedGroupDispose(gridAtmosphere, excitedGroup); + ExcitedGroupDispose(ent.Comp1, excitedGroup); return; } @@ -103,7 +107,7 @@ private void ExcitedGroupSelfBreakdown(GridAtmosphereComponent gridAtmosphere, E continue; tile.Air.CopyFromMutable(combined); - InvalidateVisuals(tile.GridIndex, tile.GridIndices); + InvalidateVisuals(ent, tile); } excitedGroup.BreakdownCooldown = 0; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs index bd45030896f..4b9ef49a406 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs @@ -1,4 +1,3 @@ -using System.Linq; using Content.Server.Atmos.Components; using Content.Server.Atmos.Reactions; using Content.Shared.Atmos; @@ -160,7 +159,7 @@ private void GridReactTile(EntityUid uid, GridAtmosphereComponent component, ref } /// - /// Update array of adjacent tiles and the adjacency flags. Optionally activates all tiles with modified adjacencies. + /// Update array of adjacent tiles and the adjacency flags. /// private void UpdateAdjacentTiles( Entity ent, @@ -195,14 +194,16 @@ private void UpdateAdjacentTiles( if (activate) AddActiveTile(atmos, adjacent); - var oppositeDirection = direction.GetOpposite(); + var oppositeIndex = i.ToOppositeIndex(); + var oppositeDirection = (AtmosDirection) (1 << oppositeIndex); + if (adjBlockDirs.IsFlagSet(oppositeDirection) || blockedDirs.IsFlagSet(direction)) { // Adjacency is blocked by some airtight entity. tile.AdjacentBits &= ~direction; adjacent.AdjacentBits &= ~oppositeDirection; tile.AdjacentTiles[i] = null; - adjacent.AdjacentTiles[oppositeDirection.ToIndex()] = null; + adjacent.AdjacentTiles[oppositeIndex] = null; } else { @@ -210,7 +211,7 @@ private void UpdateAdjacentTiles( tile.AdjacentBits |= direction; adjacent.AdjacentBits |= oppositeDirection; tile.AdjacentTiles[i] = adjacent; - adjacent.AdjacentTiles[oppositeDirection.ToIndex()] = tile; + adjacent.AdjacentTiles[oppositeIndex] = tile; } DebugTools.Assert(!(tile.AdjacentBits.IsFlagSet(direction) ^ diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs index 713d1c4682c..7163b4cd44c 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs @@ -1,10 +1,12 @@ using Content.Server.Atmos.Components; using Content.Server.Atmos.Reactions; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Content.Shared.Audio; using Content.Shared.Database; using Robust.Shared.Audio; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Player; namespace Content.Server.Atmos.EntitySystems @@ -18,18 +20,18 @@ public sealed partial class AtmosphereSystem [ViewVariables(VVAccess.ReadWrite)] public string? HotspotSound { get; private set; } = "/Audio/Effects/fire.ogg"; - private void ProcessHotspot(GridAtmosphereComponent gridAtmosphere, TileAtmosphere tile) + private void ProcessHotspot( + Entity ent, + TileAtmosphere tile) { + var gridAtmosphere = ent.Comp1; if (!tile.Hotspot.Valid) { gridAtmosphere.HotspotTiles.Remove(tile); return; } - if (!tile.Excited) - { - AddActiveTile(gridAtmosphere, tile); - } + AddActiveTile(gridAtmosphere, tile); if (!tile.Hotspot.SkippedFirstProcess) { @@ -44,7 +46,7 @@ private void ProcessHotspot(GridAtmosphereComponent gridAtmosphere, TileAtmosphe || tile.Air == null || tile.Air.GetMoles(Gas.Oxygen) < 0.5f || (tile.Air.GetMoles(Gas.Plasma) < 0.5f && tile.Air.GetMoles(Gas.Tritium) < 0.5f)) { tile.Hotspot = new Hotspot(); - InvalidateVisuals(tile.GridIndex, tile.GridIndices); + InvalidateVisuals(ent, tile); return; } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.LINDA.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.LINDA.cs index c27e18b55b0..fb2375899d9 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.LINDA.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.LINDA.cs @@ -1,14 +1,18 @@ using Content.Server.Atmos.Components; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; +using Robust.Shared.Map.Components; using Robust.Shared.Utility; namespace Content.Server.Atmos.EntitySystems { public sealed partial class AtmosphereSystem { - private void ProcessCell(GridAtmosphereComponent gridAtmosphere, TileAtmosphere tile, int fireCount, GasTileOverlayComponent visuals) + private void ProcessCell( + Entity ent, + TileAtmosphere tile, int fireCount) { + var gridAtmosphere = ent.Comp1; // Can't process a tile without air if (tile.Air == null) { @@ -52,11 +56,7 @@ private void ProcessCell(GridAtmosphereComponent gridAtmosphere, TileAtmosphere shouldShareAir = true; } else if (CompareExchange(tile.Air, enemyTile.Air) != GasCompareResult.NoExchange) { - if (!enemyTile.Excited) - { - AddActiveTile(gridAtmosphere, enemyTile); - } - + AddActiveTile(gridAtmosphere, enemyTile); if (ExcitedGroups) { var excitedGroup = tile.ExcitedGroup; @@ -91,7 +91,7 @@ private void ProcessCell(GridAtmosphereComponent gridAtmosphere, TileAtmosphere } else { - ConsiderPressureDifference(gridAtmosphere, enemyTile, direction.GetOpposite(), -difference); + ConsiderPressureDifference(gridAtmosphere, enemyTile, i.ToOppositeDir(), -difference); } } @@ -102,7 +102,7 @@ private void ProcessCell(GridAtmosphereComponent gridAtmosphere, TileAtmosphere if(tile.Air != null) React(tile.Air, tile); - InvalidateVisuals(tile.GridIndex, tile.GridIndices, visuals); + InvalidateVisuals(ent, tile); var remove = true; @@ -146,7 +146,7 @@ private void LastShareCheck(TileAtmosphere tile) /// Tile Atmosphere to be activated. private void AddActiveTile(GridAtmosphereComponent gridAtmosphere, TileAtmosphere tile) { - if (tile.Air == null) + if (tile.Air == null || tile.Excited) return; tile.Excited = true; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Monstermos.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Monstermos.cs index dcbc1e86ee2..08193027d67 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Monstermos.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Monstermos.cs @@ -230,7 +230,7 @@ private void EqualizePressureInZone( if (otherTile2.MonstermosInfo.LastSlowQueueCycle == queueCycleSlow) continue; _equalizeQueue[queueLength++] = otherTile2; otherTile2.MonstermosInfo.LastSlowQueueCycle = queueCycleSlow; - otherTile2.MonstermosInfo.CurrentTransferDirection = direction.GetOpposite(); + otherTile2.MonstermosInfo.CurrentTransferDirection = k.ToOppositeDir(); otherTile2.MonstermosInfo.CurrentTransferAmount = 0; if (otherTile2.MonstermosInfo.MoleDelta < 0) { @@ -296,7 +296,7 @@ private void EqualizePressureInZone( if (otherTile2.MonstermosInfo.LastSlowQueueCycle == queueCycleSlow) continue; _equalizeQueue[queueLength++] = otherTile2; otherTile2.MonstermosInfo.LastSlowQueueCycle = queueCycleSlow; - otherTile2.MonstermosInfo.CurrentTransferDirection = direction.GetOpposite(); + otherTile2.MonstermosInfo.CurrentTransferDirection = k.ToOppositeDir(); otherTile2.MonstermosInfo.CurrentTransferAmount = 0; if (otherTile2.MonstermosInfo.MoleDelta > 0) @@ -338,7 +338,7 @@ private void EqualizePressureInZone( for (var i = 0; i < tileCount; i++) { var otherTile = _equalizeTiles[i]!; - FinalizeEq(gridAtmosphere, otherTile, ent); + FinalizeEq(ent, otherTile); } for (var i = 0; i < tileCount; i++) @@ -473,7 +473,7 @@ private void ExplosivelyDepressurize( if(tile2.Space) continue; - tile2.MonstermosInfo.CurrentTransferDirection = direction.GetOpposite(); + tile2.MonstermosInfo.CurrentTransferDirection = j.ToOppositeDir(); tile2.MonstermosInfo.CurrentTransferAmount = 0.0f; tile2.PressureSpecificTarget = otherTile.PressureSpecificTarget; tile2.MonstermosInfo.LastSlowQueueCycle = queueCycleSlow; @@ -549,7 +549,7 @@ private void ExplosivelyDepressurize( otherTile.Air.Temperature = Atmospherics.TCMB; } - InvalidateVisuals(otherTile.GridIndex, otherTile.GridIndices, visuals); + InvalidateVisuals(ent, otherTile); HandleDecompressionFloorRip(mapGrid, otherTile, otherTile.MonstermosInfo.CurrentTransferAmount); } @@ -598,11 +598,13 @@ private void ConsiderFirelocks( UpdateAdjacentTiles(ent, tile); UpdateAdjacentTiles(ent, other); - InvalidateVisuals(tile.GridIndex, tile.GridIndices, ent); - InvalidateVisuals(other.GridIndex, other.GridIndices, ent); + InvalidateVisuals(ent, tile); + InvalidateVisuals(ent, other); } - private void FinalizeEq(GridAtmosphereComponent gridAtmosphere, TileAtmosphere tile, GasTileOverlayComponent? visuals) + private void FinalizeEq( + Entity ent, + TileAtmosphere tile) { Span transferDirections = stackalloc float[Atmospherics.Directions]; var hasTransferDirs = false; @@ -629,17 +631,19 @@ private void FinalizeEq(GridAtmosphereComponent gridAtmosphere, TileAtmosphere t // Everything that calls this method already ensures that Air will not be null. if (tile.Air!.TotalMoles < amount) - FinalizeEqNeighbors(gridAtmosphere, tile, transferDirections, visuals); + FinalizeEqNeighbors(ent, tile, transferDirections); - otherTile.MonstermosInfo[direction.GetOpposite()] = 0; + otherTile.MonstermosInfo[i.ToOppositeDir()] = 0; Merge(otherTile.Air, tile.Air.Remove(amount)); - InvalidateVisuals(tile.GridIndex, tile.GridIndices, visuals); - InvalidateVisuals(otherTile.GridIndex, otherTile.GridIndices, visuals); - ConsiderPressureDifference(gridAtmosphere, tile, direction, amount); + InvalidateVisuals(ent, tile); + InvalidateVisuals(ent, otherTile); + ConsiderPressureDifference(ent, tile, direction, amount); } } - private void FinalizeEqNeighbors(GridAtmosphereComponent gridAtmosphere, TileAtmosphere tile, ReadOnlySpan transferDirs, GasTileOverlayComponent? visuals) + private void FinalizeEqNeighbors( + Entity ent, + TileAtmosphere tile, ReadOnlySpan transferDirs) { for (var i = 0; i < Atmospherics.Directions; i++) { @@ -647,7 +651,7 @@ private void FinalizeEqNeighbors(GridAtmosphereComponent gridAtmosphere, TileAtm var amount = transferDirs[i]; // Since AdjacentBits is set, AdjacentTiles[i] wouldn't be null, and neither would its air. if(amount < 0 && tile.AdjacentBits.IsFlagSet(direction)) - FinalizeEq(gridAtmosphere, tile.AdjacentTiles[i]!, visuals); // A bit of recursion if needed. + FinalizeEq(ent, tile.AdjacentTiles[i]!); // A bit of recursion if needed. } } @@ -664,7 +668,9 @@ private void AdjustEqMovement(TileAtmosphere tile, AtmosDirection direction, flo Log.Error($"Encountered null-tile in {nameof(AdjustEqMovement)}. Trace: {Environment.StackTrace}"); return; } - var adj = tile.AdjacentTiles[direction.ToIndex()]; + + var idx = direction.ToIndex(); + var adj = tile.AdjacentTiles[idx]; if (adj == null) { var nonNull = tile.AdjacentTiles.Where(x => x != null).Count(); @@ -673,7 +679,7 @@ private void AdjustEqMovement(TileAtmosphere tile, AtmosDirection direction, flo } tile.MonstermosInfo[direction] += amount; - adj.MonstermosInfo[direction.GetOpposite()] -= amount; + adj.MonstermosInfo[idx.ToOppositeDir()] -= amount; } private void HandleDecompressionFloorRip(MapGridComponent mapGrid, TileAtmosphere tile, float sum) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs index eba398c1821..bd023e8574a 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs @@ -86,7 +86,7 @@ private bool ProcessRevalidate(Entity ent) { + var atmosphere = ent.Comp1; if(!atmosphere.ProcessingPaused) QueueRunTiles(atmosphere.CurrentRunTiles, atmosphere.ActiveTiles); var number = 0; while (atmosphere.CurrentRunTiles.TryDequeue(out var tile)) { - ProcessCell(atmosphere, tile, atmosphere.UpdateCounter, visuals); + ProcessCell(ent, tile, atmosphere.UpdateCounter); if (number++ < LagCheckIterations) continue; @@ -337,8 +339,10 @@ private bool ProcessActiveTiles(GridAtmosphereComponent atmosphere, GasTileOverl return true; } - private bool ProcessExcitedGroups(GridAtmosphereComponent gridAtmosphere) + private bool ProcessExcitedGroups( + Entity ent) { + var gridAtmosphere = ent.Comp1; if (!gridAtmosphere.ProcessingPaused) { gridAtmosphere.CurrentRunExcitedGroups.Clear(); @@ -356,7 +360,7 @@ private bool ProcessExcitedGroups(GridAtmosphereComponent gridAtmosphere) excitedGroup.DismantleCooldown++; if (excitedGroup.BreakdownCooldown > Atmospherics.ExcitedGroupBreakdownCycles) - ExcitedGroupSelfBreakdown(gridAtmosphere, excitedGroup); + ExcitedGroupSelfBreakdown(ent, excitedGroup); else if (excitedGroup.DismantleCooldown > Atmospherics.ExcitedGroupsDismantleCycles) DeactivateGroupTiles(gridAtmosphere, excitedGroup); // TODO ATMOS. What is the point of this? why is this only de-exciting the group? Shouldn't it also dismantle it? @@ -411,15 +415,17 @@ private bool ProcessHighPressureDelta(Entity ent) return true; } - private bool ProcessHotspots(GridAtmosphereComponent atmosphere) + private bool ProcessHotspots( + Entity ent) { + var atmosphere = ent.Comp1; if(!atmosphere.ProcessingPaused) QueueRunTiles(atmosphere.CurrentRunTiles, atmosphere.HotspotTiles); var number = 0; while (atmosphere.CurrentRunTiles.TryDequeue(out var hotspot)) { - ProcessHotspot(atmosphere, hotspot); + ProcessHotspot(ent, hotspot); if (number++ < LagCheckIterations) continue; @@ -507,8 +513,11 @@ public float RealAtmosTime() return num * AtmosTime; } - private bool ProcessAtmosDevices(GridAtmosphereComponent atmosphere) + private bool ProcessAtmosDevices( + Entity ent, + Entity map) { + var atmosphere = ent.Comp1; if (!atmosphere.ProcessingPaused) { atmosphere.CurrentRunAtmosDevices.Clear(); @@ -521,7 +530,7 @@ private bool ProcessAtmosDevices(GridAtmosphereComponent atmosphere) var time = _gameTiming.CurTime; var number = 0; - var ev = new AtmosDeviceUpdateEvent(RealAtmosTime()); + var ev = new AtmosDeviceUpdateEvent(RealAtmosTime(), (ent, ent.Comp1, ent.Comp2), map); while (atmosphere.CurrentRunAtmosDevices.TryDequeue(out var device)) { RaiseLocalEvent(device, ref ev); @@ -565,12 +574,11 @@ private void UpdateProcessing(float frameTime) var ent = _currentRunAtmosphere[_currentRunAtmosphereIndex]; var (owner, atmosphere, visuals, grid, xform) = ent; - if (!TryComp(owner, out TransformComponent? x) - || x.MapUid == null - || TerminatingOrDeleted(x.MapUid.Value) - || x.MapID == MapId.Nullspace) + if (xform.MapUid == null + || TerminatingOrDeleted(xform.MapUid.Value) + || xform.MapID == MapId.Nullspace) { - Log.Error($"Attempted to process atmos without a map? Entity: {ToPrettyString(owner)}. Map: {ToPrettyString(x?.MapUid)}. MapId: {x?.MapID}"); + Log.Error($"Attempted to process atmos without a map? Entity: {ToPrettyString(owner)}. Map: {ToPrettyString(xform?.MapUid)}. MapId: {xform?.MapID}"); continue; } @@ -585,6 +593,8 @@ private void UpdateProcessing(float frameTime) // We subtract it so it takes lost time into account. atmosphere.Timer -= AtmosTime; + var map = new Entity(xform.MapUid.Value, _mapAtmosQuery.CompOrNull(xform.MapUid.Value)); + switch (atmosphere.State) { case AtmosphereProcessingState.Revalidate: @@ -614,7 +624,7 @@ private void UpdateProcessing(float frameTime) atmosphere.State = AtmosphereProcessingState.ActiveTiles; continue; case AtmosphereProcessingState.ActiveTiles: - if (!ProcessActiveTiles(ent, ent)) + if (!ProcessActiveTiles(ent)) { atmosphere.ProcessingPaused = true; return; @@ -625,7 +635,7 @@ private void UpdateProcessing(float frameTime) atmosphere.State = ExcitedGroups ? AtmosphereProcessingState.ExcitedGroups : AtmosphereProcessingState.HighPressureDelta; continue; case AtmosphereProcessingState.ExcitedGroups: - if (!ProcessExcitedGroups(atmosphere)) + if (!ProcessExcitedGroups(ent)) { atmosphere.ProcessingPaused = true; return; @@ -645,7 +655,7 @@ private void UpdateProcessing(float frameTime) atmosphere.State = AtmosphereProcessingState.Hotspots; continue; case AtmosphereProcessingState.Hotspots: - if (!ProcessHotspots(atmosphere)) + if (!ProcessHotspots(ent)) { atmosphere.ProcessingPaused = true; return; @@ -680,7 +690,7 @@ private void UpdateProcessing(float frameTime) atmosphere.State = AtmosphereProcessingState.AtmosDevices; continue; case AtmosphereProcessingState.AtmosDevices: - if (!ProcessAtmosDevices(atmosphere)) + if (!ProcessAtmosDevices(ent, map)) { atmosphere.ProcessingPaused = true; return; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Superconductivity.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Superconductivity.cs index 5c73cf11246..8ed92a9d0eb 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Superconductivity.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Superconductivity.cs @@ -16,7 +16,7 @@ private void Superconduct(GridAtmosphereComponent gridAtmosphere, TileAtmosphere if (!directions.IsFlagSet(direction)) continue; - var adjacent = tile.AdjacentTiles[direction.ToIndex()]; + var adjacent = tile.AdjacentTiles[i]; // TODO ATMOS handle adjacent being null. if (adjacent == null || adjacent.ThermalConductivity == 0f) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Utils.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Utils.cs index 67c6d5998dd..cf4c73aa2f4 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Utils.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Utils.cs @@ -36,9 +36,17 @@ public double GetPrice(GasMixture mixture) } [MethodImpl(MethodImplOptions.AggressiveInlining)] - public void InvalidateVisuals(EntityUid gridUid, Vector2i tile, GasTileOverlayComponent? comp = null) + public void InvalidateVisuals(Entity grid, Vector2i tile) { - _gasTileOverlaySystem.Invalidate(gridUid, tile, comp); + _gasTileOverlaySystem.Invalidate(grid, tile); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private void InvalidateVisuals( + Entity ent, + TileAtmosphere tile) + { + _gasTileOverlaySystem.Invalidate((ent.Owner, ent.Comp2), tile.GridIndices); } /// diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs index a5537665827..44bfa4cc10c 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs @@ -96,7 +96,7 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out _, out var transform)) { - var air = GetContainingMixture(uid, transform:transform); + var air = GetContainingMixture((uid, transform)); if (air == null) continue; diff --git a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs index aed00432e1f..80842416e8b 100644 --- a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs @@ -168,7 +168,7 @@ public override void Update(float frameTime) private void ReleaseGas(Entity gasTank) { var removed = RemoveAirVolume(gasTank, gasTank.Comp.ValveOutputRate * TimerDelay); - var environment = _atmosphereSystem.GetContainingMixture(gasTank, false, true); + var environment = _atmosphereSystem.GetContainingMixture(gasTank.Owner, false, true); if (environment != null) { _atmosphereSystem.Merge(environment, removed); diff --git a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs index 003eed59e03..c42cfd08da3 100644 --- a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -60,6 +60,7 @@ public sealed class GasTileOverlaySystem : SharedGasTileOverlaySystem private float _updateInterval; private int _thresholds; + private EntityQuery _query; public override void Initialize() { @@ -84,6 +85,7 @@ public override void Initialize() SubscribeLocalEvent(Reset); SubscribeLocalEvent(OnStartup); + _query = GetEntityQuery(); } private void OnStartup(EntityUid uid, GasTileOverlayComponent component, ComponentStartup args) @@ -132,10 +134,10 @@ private void OnPvsToggle(bool value) private void UpdateThresholds(int value) => _thresholds = value; [MethodImpl(MethodImplOptions.AggressiveInlining)] - public void Invalidate(EntityUid grid, Vector2i index, GasTileOverlayComponent? comp = null) + public void Invalidate(Entity grid, Vector2i index) { - if (Resolve(grid, ref comp)) - comp.InvalidTiles.Add(index); + if (_query.Resolve(grid.Owner, ref grid.Comp)) + grid.Comp.InvalidTiles.Add(index); } private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) diff --git a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs index 286b154e96f..b3644e88b73 100644 --- a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs @@ -40,24 +40,16 @@ private void CacheTileLoss(float val) private void OnAtmosUpdate(EntityUid uid, HeatExchangerComponent comp, ref AtmosDeviceUpdateEvent args) { - if (!TryComp(uid, out NodeContainerComponent? nodeContainer) - || !TryComp(uid, out AtmosDeviceComponent? device) - || !_nodeContainer.TryGetNode(nodeContainer, comp.InletName, out PipeNode? inlet) - || !_nodeContainer.TryGetNode(nodeContainer, comp.OutletName, out PipeNode? outlet)) + // make sure that the tile the device is on isn't blocked by a wall or something similar. + if (args.Grid is {} grid + && _transform.TryGetGridTilePosition(uid, out var tile) + && _atmosphereSystem.IsTileAirBlocked(grid, tile)) { return; } - // make sure that the tile the device is on isn't blocked by a wall or something similar. - var xform = Transform(uid); - if (_transform.TryGetGridTilePosition(uid, out var tile)) - { - // TryGetGridTilePosition() already returns false if GridUid is null, but the null checker isn't smart enough yet - if (xform.GridUid != null && _atmosphereSystem.IsTileAirBlocked(xform.GridUid.Value, tile)) - { - return; - } - } + if (!_nodeContainer.TryGetNodes(uid, comp.InletName, comp.OutletName, out PipeNode? inlet, out PipeNode? outlet)) + return; var dt = args.dt; diff --git a/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs b/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs index 28a0a01c99a..c1a5256fdd5 100644 --- a/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs @@ -204,11 +204,7 @@ private void OnAtmosUpdate(EntityUid uid, AtmosMonitorComponent component, ref A if (!this.IsPowered(uid, EntityManager)) return; - // can't hurt - // (in case something is making AtmosDeviceUpdateEvents - // outside the typical device loop) - if (!TryComp(uid, out var atmosDeviceComponent) - || atmosDeviceComponent.JoinedGrid == null) + if (args.Grid == null) return; // if we're not monitoring atmos, don't bother diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPassiveGateSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPassiveGateSystem.cs index 77bab4775ce..fced4d79884 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPassiveGateSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPassiveGateSystem.cs @@ -26,11 +26,7 @@ public override void Initialize() private void OnPassiveGateUpdated(EntityUid uid, GasPassiveGateComponent gate, ref AtmosDeviceUpdateEvent args) { - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; - - if (!_nodeContainer.TryGetNode(nodeContainer, gate.InletName, out PipeNode? inlet) - || !_nodeContainer.TryGetNode(nodeContainer, gate.OutletName, out PipeNode? outlet)) + if (!_nodeContainer.TryGetNodes(uid, gate.InletName, gate.OutletName, out PipeNode? inlet, out PipeNode? outlet)) return; var n1 = inlet.Air.TotalMoles; diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs index 49b69fc6739..af25d04df92 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs @@ -66,9 +66,7 @@ private void OnExamined(EntityUid uid, GasPressurePumpComponent pump, ExaminedEv private void OnPumpUpdated(EntityUid uid, GasPressurePumpComponent pump, ref AtmosDeviceUpdateEvent args) { if (!pump.Enabled - || !EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer) - || !_nodeContainer.TryGetNode(nodeContainer, pump.InletName, out PipeNode? inlet) - || !_nodeContainer.TryGetNode(nodeContainer, pump.OutletName, out PipeNode? outlet)) + || !_nodeContainer.TryGetNodes(uid, pump.InletName, pump.OutletName, out PipeNode? inlet, out PipeNode? outlet)) { _ambientSoundSystem.SetAmbience(uid, false); return; diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs index e14069b8a76..3ebc5094926 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs @@ -41,12 +41,8 @@ private void OnExamined(Entity ent, ref ExaminedEvent args if (!EntityManager.GetComponent(ent).Anchored || !args.IsInDetailsRange) // Not anchored? Out of range? No status. return; - if (!EntityManager.TryGetComponent(ent, out NodeContainerComponent? nodeContainer) - || !_nodeContainer.TryGetNode(nodeContainer, comp.InletName, out PipeNode? inlet) - || !_nodeContainer.TryGetNode(nodeContainer, comp.OutletName, out PipeNode? _)) - { + if (!_nodeContainer.TryGetNode(ent.Owner, comp.InletName, out PipeNode? inlet)) return; - } using (args.PushGroup(nameof(GasRecyclerComponent))) { @@ -72,9 +68,7 @@ private void OnExamined(Entity ent, ref ExaminedEvent args private void OnUpdate(Entity ent, ref AtmosDeviceUpdateEvent args) { var comp = ent.Comp; - if (!EntityManager.TryGetComponent(ent, out NodeContainerComponent? nodeContainer) - || !_nodeContainer.TryGetNode(nodeContainer, comp.InletName, out PipeNode? inlet) - || !_nodeContainer.TryGetNode(nodeContainer, comp.OutletName, out PipeNode? outlet)) + if (!_nodeContainer.TryGetNodes(ent.Owner, comp.InletName, comp.OutletName, out PipeNode? inlet, out PipeNode? outlet)) { _ambientSoundSystem.SetAmbience(ent, false); return; diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasValveSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasValveSystem.cs index 934ce8a7a47..ed7567428e1 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasValveSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasValveSystem.cs @@ -59,9 +59,8 @@ private void OnActivate(EntityUid uid, GasValveComponent component, ActivateInWo public void Set(EntityUid uid, GasValveComponent component, bool value) { component.Open = value; - if (TryComp(uid, out NodeContainerComponent? nodeContainer) - && _nodeContainer.TryGetNode(nodeContainer, component.InletName, out PipeNode? inlet) - && _nodeContainer.TryGetNode(nodeContainer, component.OutletName, out PipeNode? outlet)) + + if (_nodeContainer.TryGetNodes(uid, component.InletName, component.OutletName, out PipeNode? inlet, out PipeNode? outlet)) { if (TryComp(uid, out var appearance)) { diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs index 8e478bd2b54..e4767c4061a 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs @@ -71,11 +71,8 @@ private void OnExamined(EntityUid uid, GasVolumePumpComponent pump, ExaminedEven private void OnVolumePumpUpdated(EntityUid uid, GasVolumePumpComponent pump, ref AtmosDeviceUpdateEvent args) { - if (!pump.Enabled - || !TryComp(uid, out NodeContainerComponent? nodeContainer) - || !TryComp(uid, out AtmosDeviceComponent? device) - || !_nodeContainer.TryGetNode(nodeContainer, pump.InletName, out PipeNode? inlet) - || !_nodeContainer.TryGetNode(nodeContainer, pump.OutletName, out PipeNode? outlet)) + if (!pump.Enabled || + !_nodeContainer.TryGetNodes(uid, pump.InletName, pump.OutletName, out PipeNode? inlet, out PipeNode? outlet)) { _ambientSoundSystem.SetAmbience(uid, false); return; diff --git a/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs b/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs index 80461f1bebf..b70262e857b 100644 --- a/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs +++ b/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Atmos.Components; +using Content.Shared.Atmos.Components; namespace Content.Server.Atmos.Piping.Components; @@ -46,18 +47,25 @@ public sealed partial class AtmosDeviceComponent : Component /// Use this for atmos devices instead of . /// [ByRefEvent] -public readonly struct AtmosDeviceUpdateEvent +public readonly struct AtmosDeviceUpdateEvent(float dt, Entity? grid, Entity? map) { /// /// Time elapsed since last update, in seconds. Multiply values used in the update handler /// by this number to make them tickrate-invariant. Use this number instead of AtmosphereSystem.AtmosTime. /// - public readonly float dt; + public readonly float dt = dt; - public AtmosDeviceUpdateEvent(float dt) - { - this.dt = dt; - } + /// + /// The grid that this device is currently on. + /// + public readonly Entity? Grid = grid == null + ? null + : (grid.Value, grid.Value, grid.Value); + + /// + /// The map that the device & grid is on. + /// + public readonly Entity? Map = map; } /// diff --git a/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs b/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs index c15d31f7d64..3c73a8f64ee 100644 --- a/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs +++ b/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs @@ -129,9 +129,10 @@ public override void Update(float frameTime) _timer -= _atmosphereSystem.AtmosTime; var time = _gameTiming.CurTime; - var ev = new AtmosDeviceUpdateEvent(_atmosphereSystem.AtmosTime); + var ev = new AtmosDeviceUpdateEvent(_atmosphereSystem.AtmosTime, null, null); foreach (var device in _joinedDevices) { + DebugTools.Assert(!HasComp(Transform(device).GridUid)); RaiseLocalEvent(device, ref ev); device.Comp.LastProcess = time; } diff --git a/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs b/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs index 9853a17f829..aa206dbc686 100644 --- a/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs +++ b/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs @@ -38,9 +38,9 @@ private void OnMinerUpdated(Entity ent, ref AtmosDeviceUpdate private bool CheckMinerOperation(Entity ent, [NotNullWhen(true)] out GasMixture? environment) { var (uid, miner) = ent; - environment = _atmosphereSystem.GetContainingMixture(uid, true, true); - var transform = Transform(uid); + environment = _atmosphereSystem.GetContainingMixture((uid, transform), true, true); + var position = _transformSystem.GetGridOrMapTilePosition(uid, transform); // Space. diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs index faf06a60793..f856946a925 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs @@ -53,11 +53,7 @@ private void OnInit(EntityUid uid, GasFilterComponent filter, ComponentInit args private void OnFilterUpdated(EntityUid uid, GasFilterComponent filter, ref AtmosDeviceUpdateEvent args) { if (!filter.Enabled - || !EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer) - || !EntityManager.TryGetComponent(uid, out AtmosDeviceComponent? device) - || !_nodeContainer.TryGetNode(nodeContainer, filter.InletName, out PipeNode? inletNode) - || !_nodeContainer.TryGetNode(nodeContainer, filter.FilterName, out PipeNode? filterNode) - || !_nodeContainer.TryGetNode(nodeContainer, filter.OutletName, out PipeNode? outletNode) + || !_nodeContainer.TryGetNodes(uid, filter.InletName, filter.OutletName, filter.FilterName, out PipeNode? inletNode, out PipeNode? filterNode, out PipeNode? outletNode) || outletNode.Air.Pressure >= Atmospherics.MaxOutputPressure) // No need to transfer if target is full. { _ambientSoundSystem.SetAmbience(uid, false); @@ -187,16 +183,15 @@ private void OnFilterAnalyzed(EntityUid uid, GasFilterComponent component, GasAn if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) return; - var gasMixDict = new Dictionary(); + args.GasMixtures ??= new Dictionary(); if(_nodeContainer.TryGetNode(nodeContainer, component.InletName, out PipeNode? inlet)) - gasMixDict.Add(Loc.GetString("gas-analyzer-window-text-inlet"), inlet.Air); + args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-inlet"), inlet.Air); if(_nodeContainer.TryGetNode(nodeContainer, component.FilterName, out PipeNode? filterNode)) - gasMixDict.Add(Loc.GetString("gas-analyzer-window-text-filter"), filterNode.Air); + args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-filter"), filterNode.Air); if(_nodeContainer.TryGetNode(nodeContainer, component.OutletName, out PipeNode? outlet)) - gasMixDict.Add(Loc.GetString("gas-analyzer-window-text-outlet"), outlet.Air); + args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-outlet"), outlet.Air); - args.GasMixtures = gasMixDict; args.DeviceFlipped = inlet != null && filterNode != null && inlet.CurrentPipeDirection.ToDirection() == filterNode.CurrentPipeDirection.ToDirection().GetClockwise90Degrees(); } } diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs index fb65c17f610..ba8ebf3c9ae 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs @@ -54,18 +54,8 @@ private void OnMixerUpdated(EntityUid uid, GasMixerComponent mixer, ref AtmosDev { // TODO ATMOS: Cache total moles since it's expensive. - if (!mixer.Enabled) - { - _ambientSoundSystem.SetAmbience(uid, false); - return; - } - - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; - - if (!_nodeContainer.TryGetNode(nodeContainer, mixer.InletOneName, out PipeNode? inletOne) - || !_nodeContainer.TryGetNode(nodeContainer, mixer.InletTwoName, out PipeNode? inletTwo) - || !_nodeContainer.TryGetNode(nodeContainer, mixer.OutletName, out PipeNode? outlet)) + if (!mixer.Enabled + || !_nodeContainer.TryGetNodes(uid, mixer.InletOneName, mixer.InletTwoName, mixer.OutletName, out PipeNode? inletOne, out PipeNode? inletTwo, out PipeNode? outlet)) { _ambientSoundSystem.SetAmbience(uid, false); return; diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs index 2c2f1584a53..1bab2abd8e9 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs @@ -33,11 +33,7 @@ private void OnInit(EntityUid uid, PressureControlledValveComponent comp, Compon private void OnUpdate(EntityUid uid, PressureControlledValveComponent comp, ref AtmosDeviceUpdateEvent args) { - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer) - || !EntityManager.TryGetComponent(uid, out AtmosDeviceComponent? device) - || !_nodeContainer.TryGetNode(nodeContainer, comp.InletName, out PipeNode? inletNode) - || !_nodeContainer.TryGetNode(nodeContainer, comp.ControlName, out PipeNode? controlNode) - || !_nodeContainer.TryGetNode(nodeContainer, comp.OutletName, out PipeNode? outletNode)) + if (!_nodeContainer.TryGetNodes(uid, comp.InletName, comp.ControlName, comp.OutletName, out PipeNode? inletNode, out PipeNode? controlNode, out PipeNode? outletNode)) { _ambientSoundSystem.SetAmbience(uid, false); comp.Enabled = false; diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs index 170586339db..3e4340bf1db 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs @@ -60,7 +60,7 @@ public void PurgeContents(EntityUid uid, GasCanisterComponent? canister = null, if (!Resolve(uid, ref canister, ref transform)) return; - var environment = _atmos.GetContainingMixture(uid, false, true); + var environment = _atmos.GetContainingMixture((uid, transform), false, true); if (environment is not null) _atmos.Merge(environment, canister.Air); @@ -168,7 +168,7 @@ private void OnCanisterUpdated(EntityUid uid, GasCanisterComponent canister, ref } else { - var environment = _atmos.GetContainingMixture(uid, false, true); + var environment = _atmos.GetContainingMixture(uid, args.Grid, args.Map, false, true); _atmos.ReleaseGasTo(canister.Air, environment, canister.ReleasePressure); } } diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCondenserSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCondenserSystem.cs index 852542ec6cd..e903ceedafa 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCondenserSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCondenserSystem.cs @@ -30,9 +30,8 @@ public override void Initialize() private void OnCondenserUpdated(Entity entity, ref AtmosDeviceUpdateEvent args) { - if (!(_power.IsPowered(entity) && TryComp(entity, out var receiver)) - || !TryComp(entity, out var nodeContainer) - || !_nodeContainer.TryGetNode(nodeContainer, entity.Comp.Inlet, out PipeNode? inlet) + if (!(TryComp(entity, out var receiver) && _power.IsPowered(entity, receiver)) + || !_nodeContainer.TryGetNode(entity.Owner, entity.Comp.Inlet, out PipeNode? inlet) || !_solution.ResolveSolution(entity.Owner, entity.Comp.SolutionId, ref entity.Comp.Solution, out var solution)) { return; diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs index 8029a095565..834a1dfb0b7 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs @@ -50,16 +50,10 @@ private void OnOutletInjectorUpdated(EntityUid uid, GasOutletInjectorComponent i if (!injector.Enabled) return; - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) + if (!_nodeContainer.TryGetNode(uid, injector.InletName, out PipeNode? inlet)) return; - if (!TryComp(uid, out AtmosDeviceComponent? device)) - return; - - if (!_nodeContainer.TryGetNode(nodeContainer, injector.InletName, out PipeNode? inlet)) - return; - - var environment = _atmosphereSystem.GetContainingMixture(uid, true, true); + var environment = _atmosphereSystem.GetContainingMixture(uid, args.Grid, args.Map, true, true); if (environment == null) return; diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPassiveVentSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPassiveVentSystem.cs index c8fd23d466a..72812cb5237 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPassiveVentSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPassiveVentSystem.cs @@ -24,15 +24,12 @@ public override void Initialize() private void OnPassiveVentUpdated(EntityUid uid, GasPassiveVentComponent vent, ref AtmosDeviceUpdateEvent args) { - var environment = _atmosphereSystem.GetContainingMixture(uid, true, true); + var environment = _atmosphereSystem.GetContainingMixture(uid, args.Grid, args.Map, true, true); if (environment == null) return; - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; - - if (!_nodeContainer.TryGetNode(nodeContainer, vent.InletName, out PipeNode? inlet)) + if (!_nodeContainer.TryGetNode(uid, vent.InletName, out PipeNode? inlet)) return; var inletAir = inlet.Air.RemoveRatio(1f); diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPortableSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPortableSystem.cs index 4ddd19dd45e..7cb8102a388 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPortableSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPortableSystem.cs @@ -39,10 +39,7 @@ private void OnPortableAnchorAttempt(EntityUid uid, GasPortableComponent compone private void OnAnchorChanged(EntityUid uid, GasPortableComponent portable, ref AnchorStateChangedEvent args) { - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; - - if (!_nodeContainer.TryGetNode(nodeContainer, portable.PortName, out PipeNode? portableNode)) + if (!_nodeContainer.TryGetNode(uid, portable.PortName, out PipeNode? portableNode)) return; portableNode.ConnectionsEnabled = args.Anchored; diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs index d4ddd65a8ec..9b61044f03e 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs @@ -110,7 +110,7 @@ private void OnThermoMachineUpdated(EntityUid uid, GasThermoMachineComponent the _atmosphereSystem.AddHeat(heatExchangeGasMixture, dQPipe); thermoMachine.LastEnergyDelta = dQPipe; - if (dQLeak != 0f && _atmosphereSystem.GetContainingMixture(uid, excite: true) is { } containingMixture) + if (dQLeak != 0f && _atmosphereSystem.GetContainingMixture(uid, args.Grid, args.Map, excite: true) is { } containingMixture) _atmosphereSystem.AddHeat(containingMixture, dQLeak); } @@ -130,8 +130,7 @@ private void GetHeatExchangeGasMixture(EntityUid uid, GasThermoMachineComponent } else { - if (!TryComp(uid, out var nodeContainer) - || !_nodeContainer.TryGetNode(nodeContainer, thermoMachine.InletName, out PipeNode? inlet)) + if (!_nodeContainer.TryGetNode(uid, thermoMachine.InletName, out PipeNode? inlet)) return; heatExchangeGasMixture = inlet.Air; } diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index 3a3ccf75234..a986385f5e9 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -67,15 +67,12 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref _ => throw new ArgumentOutOfRangeException() }; - if (!vent.Enabled - || !TryComp(uid, out AtmosDeviceComponent? device) - || !TryComp(uid, out NodeContainerComponent? nodeContainer) - || !_nodeContainer.TryGetNode(nodeContainer, nodeName, out PipeNode? pipe)) + if (!vent.Enabled || !_nodeContainer.TryGetNode(uid, nodeName, out PipeNode? pipe)) { return; } - var environment = _atmosphereSystem.GetContainingMixture(uid, true, true); + var environment = _atmosphereSystem.GetContainingMixture(uid, args.Grid, args.Map, true, true); // We're in an air-blocked tile... Do nothing. if (environment == null) @@ -295,9 +292,6 @@ private void OnExamine(EntityUid uid, GasVentPumpComponent component, ExaminedEv /// private void OnAnalyzed(EntityUid uid, GasVentPumpComponent component, GasAnalyzerScanEvent args) { - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; - var gasMixDict = new Dictionary(); // these are both called pipe, above it switches using this so I duplicated that...? @@ -307,7 +301,7 @@ private void OnAnalyzed(EntityUid uid, GasVentPumpComponent component, GasAnalyz VentPumpDirection.Siphoning => component.Outlet, _ => throw new ArgumentOutOfRangeException() }; - if (_nodeContainer.TryGetNode(nodeContainer, nodeName, out PipeNode? pipe)) + if (_nodeContainer.TryGetNode(uid, nodeName, out PipeNode? pipe)) gasMixDict.Add(nodeName, pipe.Air); args.GasMixtures = gasMixDict; diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs index 5afa007e5e1..b27689ed586 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs @@ -49,27 +49,18 @@ public override void Initialize() private void OnVentScrubberUpdated(EntityUid uid, GasVentScrubberComponent scrubber, ref AtmosDeviceUpdateEvent args) { if (_weldable.IsWelded(uid)) - { - return; - } - - if (!TryComp(uid, out AtmosDeviceComponent? device)) return; var timeDelta = args.dt; - if (!scrubber.Enabled - || !EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer) - || !_nodeContainer.TryGetNode(nodeContainer, scrubber.OutletName, out PipeNode? outlet)) + if (!scrubber.Enabled || !_nodeContainer.TryGetNode(uid, scrubber.OutletName, out PipeNode? outlet)) return; - var xform = Transform(uid); - - if (xform.GridUid == null) + if (args.Grid is not {} grid) return; - var position = _transformSystem.GetGridTilePositionOrDefault((uid,xform)); - var environment = _atmosphereSystem.GetTileMixture(xform.GridUid, xform.MapUid, position, true); + var position = _transformSystem.GetGridTilePositionOrDefault(uid); + var environment = _atmosphereSystem.GetTileMixture(grid, args.Map, position, true); Scrub(timeDelta, scrubber, environment, outlet); @@ -77,7 +68,7 @@ private void OnVentScrubberUpdated(EntityUid uid, GasVentScrubberComponent scrub return; // Scrub adjacent tiles too. - var enumerator = _atmosphereSystem.GetAdjacentTileMixtures(xform.GridUid.Value, position, false, true); + var enumerator = _atmosphereSystem.GetAdjacentTileMixtures(grid, position, false, true); while (enumerator.MoveNext(out var adjacent)) { Scrub(timeDelta, scrubber, adjacent, outlet); diff --git a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs index e986f8f991d..f9043c091a8 100644 --- a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs +++ b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs @@ -47,17 +47,13 @@ private bool IsFull(PortableScrubberComponent component) private void OnDeviceUpdated(EntityUid uid, PortableScrubberComponent component, ref AtmosDeviceUpdateEvent args) { - if (!TryComp(uid, out AtmosDeviceComponent? device)) - return; - var timeDelta = args.dt; if (!component.Enabled) return; // If we are on top of a connector port, empty into it. - if (TryComp(uid, out var nodeContainer) - && _nodeContainer.TryGetNode(nodeContainer, component.PortName, out PortablePipeNode? portableNode) + if (_nodeContainer.TryGetNode(uid, component.PortName, out PortablePipeNode? portableNode) && portableNode.ConnectionsEnabled) { _atmosphereSystem.React(component.Air, portableNode); @@ -71,13 +67,11 @@ private void OnDeviceUpdated(EntityUid uid, PortableScrubberComponent component, return; } - var xform = Transform(uid); - - if (xform.GridUid == null) + if (args.Grid is not {} grid) return; - var position = _transformSystem.GetGridTilePositionOrDefault((uid,xform)); - var environment = _atmosphereSystem.GetTileMixture(xform.GridUid, xform.MapUid, position, true); + var position = _transformSystem.GetGridTilePositionOrDefault(uid); + var environment = _atmosphereSystem.GetTileMixture(grid, args.Map, position, true); var running = Scrub(timeDelta, component, environment); @@ -85,8 +79,9 @@ private void OnDeviceUpdated(EntityUid uid, PortableScrubberComponent component, // We scrub once to see if we can and set the animation if (!running) return; + // widenet - var enumerator = _atmosphereSystem.GetAdjacentTileMixtures(xform.GridUid.Value, position, false, true); + var enumerator = _atmosphereSystem.GetAdjacentTileMixtures(grid, position, false, true); while (enumerator.MoveNext(out var adjacent)) { Scrub(timeDelta, component, adjacent); @@ -98,10 +93,7 @@ private void OnDeviceUpdated(EntityUid uid, PortableScrubberComponent component, /// private void OnAnchorChanged(EntityUid uid, PortableScrubberComponent component, ref AnchorStateChangedEvent args) { - if (!TryComp(uid, out NodeContainerComponent? nodeContainer)) - return; - - if (!_nodeContainer.TryGetNode(nodeContainer, component.PortName, out PipeNode? portableNode)) + if (!_nodeContainer.TryGetNode(uid, component.PortName, out PipeNode? portableNode)) return; portableNode.ConnectionsEnabled = (args.Anchored && _gasPortableSystem.FindGasPortIn(Transform(uid).GridUid, Transform(uid).Coordinates, out _)); @@ -159,14 +151,10 @@ private void UpdateAppearance(EntityUid uid, bool isFull, bool isRunning) /// private void OnScrubberAnalyzed(EntityUid uid, PortableScrubberComponent component, GasAnalyzerScanEvent args) { - var gasMixDict = new Dictionary { { Name(uid), component.Air } }; + args.GasMixtures ??= new Dictionary { { Name(uid), component.Air } }; // If it's connected to a port, include the port side - if (TryComp(uid, out NodeContainerComponent? nodeContainer)) - { - if (_nodeContainer.TryGetNode(nodeContainer, component.PortName, out PipeNode? port)) - gasMixDict.Add(component.PortName, port.Air); - } - args.GasMixtures = gasMixDict; + if (_nodeContainer.TryGetNode(uid, component.PortName, out PipeNode? port)) + args.GasMixtures.Add(component.PortName, port.Air); } } } diff --git a/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs b/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs index 16311328218..fff15f696c4 100644 --- a/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs +++ b/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs @@ -71,7 +71,7 @@ private void OnDeviceUpdated(EntityUid uid, SpaceHeaterComponent spaceHeater, re // If in automatic temperature mode, check if we need to adjust the heat exchange direction if (spaceHeater.Mode == SpaceHeaterMode.Auto) { - var environment = _atmosphereSystem.GetContainingMixture(uid); + var environment = _atmosphereSystem.GetContainingMixture(uid, args.Grid, args.Map); if (environment == null) return; diff --git a/Content.Server/Electrocution/ElectrocutionNode.cs b/Content.Server/Electrocution/ElectrocutionNode.cs index 7abcba76666..c8e437d3532 100644 --- a/Content.Server/Electrocution/ElectrocutionNode.cs +++ b/Content.Server/Electrocution/ElectrocutionNode.cs @@ -9,7 +9,7 @@ namespace Content.Server.Electrocution public sealed partial class ElectrocutionNode : Node { [DataField("cable")] - public EntityUid CableEntity; + public EntityUid? CableEntity; [DataField("node")] public string? NodeName; @@ -19,12 +19,11 @@ public override IEnumerable GetReachableNodes(TransformComponent xform, MapGridComponent? grid, IEntityManager entMan) { - var _nodeContainer = entMan.System(); - - if (!nodeQuery.TryGetComponent(CableEntity, out var nodeContainer)) + if (CableEntity == null || NodeName == null) yield break; - if (_nodeContainer.TryGetNode(nodeContainer, NodeName, out Node? node)) + var _nodeContainer = entMan.System(); + if (_nodeContainer.TryGetNode(CableEntity.Value, NodeName, out Node? node)) yield return node; } } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs b/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs index 8d2a699de27..7db1f513f7c 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs @@ -271,7 +271,7 @@ private void AddNewAdjacentTiles(int iteration, IEnumerable tiles, boo var direction = (AtmosDirection) (1 << i); if (ignoreTileBlockers || !blockedDirections.IsFlagSet(direction)) { - ProcessNewTile(iteration, tile.Offset(direction), direction.GetOpposite()); + ProcessNewTile(iteration, tile.Offset(direction), i.ToOppositeDir()); } } @@ -300,7 +300,7 @@ private void AddNewAdjacentTiles(int iteration, IEnumerable tiles, boo var direction = (AtmosDirection) (1 << i); if (blockedDirections.IsFlagSet(direction)) { - list.Add((tile.Offset(direction), direction.GetOpposite())); + list.Add((tile.Offset(direction), i.ToOppositeDir())); } } } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSpaceTileFlood.cs b/Content.Server/Explosion/EntitySystems/ExplosionSpaceTileFlood.cs index f8c917c1cd6..313b03e03a6 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSpaceTileFlood.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSpaceTileFlood.cs @@ -97,7 +97,7 @@ private void AddNewAdjacentTiles(int iteration, IEnumerable tiles) if (!unblockedDirections.IsFlagSet(direction)) continue; // explosion cannot propagate in this direction. Ever. - ProcessNewTile(iteration, tile.Offset(direction), direction.GetOpposite()); + ProcessNewTile(iteration, tile.Offset(direction), i.ToOppositeDir()); } } } diff --git a/Content.Server/Mech/Systems/MechSystem.cs b/Content.Server/Mech/Systems/MechSystem.cs index 78034e0fc3d..9e546dc33fe 100644 --- a/Content.Server/Mech/Systems/MechSystem.cs +++ b/Content.Server/Mech/Systems/MechSystem.cs @@ -404,14 +404,17 @@ private void OnExpose(EntityUid uid, MechPilotComponent component, ref AtmosExpo if (args.Handled) return; - if (!TryComp(component.Mech, out var mech) || - !TryComp(component.Mech, out var mechAir)) + if (!TryComp(component.Mech, out MechComponent? mech)) + return; + + if (mech.Airtight && TryComp(component.Mech, out MechAirComponent? air)) { + args.Handled = true; + args.Gas = air.Air; return; } - args.Gas = mech.Airtight ? mechAir.Air : _atmosphere.GetContainingMixture(component.Mech); - + args.Gas = _atmosphere.GetContainingMixture(component.Mech, excite: args.Excite); args.Handled = true; } diff --git a/Content.Server/Medical/CryoPodSystem.cs b/Content.Server/Medical/CryoPodSystem.cs index a7d12d9f0fd..a949d980bef 100644 --- a/Content.Server/Medical/CryoPodSystem.cs +++ b/Content.Server/Medical/CryoPodSystem.cs @@ -257,10 +257,7 @@ private void OnPowerChanged(Entity entity, ref PowerChangedEve private void OnCryoPodUpdateAtmosphere(Entity entity, ref AtmosDeviceUpdateEvent args) { - if (!TryComp(entity, out NodeContainerComponent? nodeContainer)) - return; - - if (!_nodeContainer.TryGetNode(nodeContainer, entity.Comp.PortName, out PortablePipeNode? portNode)) + if (!_nodeContainer.TryGetNode(entity.Owner, entity.Comp.PortName, out PortablePipeNode? portNode)) return; if (!TryComp(entity, out CryoPodAirComponent? cryoPodAir)) @@ -279,14 +276,10 @@ private void OnGasAnalyzed(Entity entity, ref GasAnalyzerScanE if (!TryComp(entity, out CryoPodAirComponent? cryoPodAir)) return; - var gasMixDict = new Dictionary { { Name(entity.Owner), cryoPodAir.Air } }; + args.GasMixtures ??= new Dictionary { { Name(entity.Owner), cryoPodAir.Air } }; // If it's connected to a port, include the port side - if (TryComp(entity, out NodeContainerComponent? nodeContainer)) - { - if (_nodeContainer.TryGetNode(nodeContainer, entity.Comp.PortName, out PipeNode? port)) - gasMixDict.Add(entity.Comp.PortName, port.Air); - } - args.GasMixtures = gasMixDict; + if (_nodeContainer.TryGetNode(entity.Owner, entity.Comp.PortName, out PipeNode? port)) + args.GasMixtures.Add(entity.Comp.PortName, port.Air); } private void OnEjected(Entity cryoPod, ref EntRemovedFromContainerMessage args) diff --git a/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs b/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs index 99d18aeb3f9..19b811a287f 100644 --- a/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs +++ b/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs @@ -14,6 +14,7 @@ namespace Content.Server.NodeContainer.EntitySystems public sealed class NodeContainerSystem : EntitySystem { [Dependency] private readonly NodeGroupSystem _nodeGroupSystem = default!; + private EntityQuery _query; public override void Initialize() { @@ -26,6 +27,8 @@ public override void Initialize() SubscribeLocalEvent(OnReAnchor); SubscribeLocalEvent(OnMoveEvent); SubscribeLocalEvent(OnExamine); + + _query = GetEntityQuery(); } public bool TryGetNode(NodeContainerComponent component, string? identifier, [NotNullWhen(true)] out T? node) where T : Node @@ -46,6 +49,77 @@ public bool TryGetNode(NodeContainerComponent component, string? identifier, return false; } + public bool TryGetNode(Entity ent, string identifier, [NotNullWhen(true)] out T? node) where T : Node + { + if (_query.Resolve(ent, ref ent.Comp, false) + && ent.Comp.Nodes.TryGetValue(identifier, out var n) + && n is T t) + { + node = t; + return true; + } + + node = null; + return false; + } + + public bool TryGetNodes( + Entity ent, + string id1, + string id2, + [NotNullWhen(true)] out T1? node1, + [NotNullWhen(true)] out T2? node2) + where T1 : Node + where T2 : Node + { + if (_query.Resolve(ent, ref ent.Comp, false) + && ent.Comp.Nodes.TryGetValue(id1, out var n1) + && n1 is T1 t1 + && ent.Comp.Nodes.TryGetValue(id2, out var n2) + && n2 is T2 t2) + { + node1 = t1; + node2 = t2; + return true; + } + + node1 = null; + node2 = null; + return false; + } + + public bool TryGetNodes( + Entity ent, + string id1, + string id2, + string id3, + [NotNullWhen(true)] out T1? node1, + [NotNullWhen(true)] out T2? node2, + [NotNullWhen(true)] out T3? node3) + where T1 : Node + where T2 : Node + where T3 : Node + { + if (_query.Resolve(ent, ref ent.Comp, false) + && ent.Comp.Nodes.TryGetValue(id1, out var n1) + && n1 is T1 t1 + && ent.Comp.Nodes.TryGetValue(id2, out var n2) + && n2 is T2 t2 + && ent.Comp.Nodes.TryGetValue(id3, out var n3) + && n2 is T3 t3) + { + node1 = t1; + node2 = t2; + node3 = t3; + return true; + } + + node1 = null; + node2 = null; + node3 = null; + return false; + } + private void OnInitEvent(EntityUid uid, NodeContainerComponent component, ComponentInit args) { foreach (var (key, node) in component.Nodes) diff --git a/Content.Server/PneumaticCannon/PneumaticCannonSystem.cs b/Content.Server/PneumaticCannon/PneumaticCannonSystem.cs index 60f0603074d..6e0e0c503a9 100644 --- a/Content.Server/PneumaticCannon/PneumaticCannonSystem.cs +++ b/Content.Server/PneumaticCannon/PneumaticCannonSystem.cs @@ -94,7 +94,7 @@ private void OnShoot(Entity cannon, ref GunShotEvent a return; // this should always be possible, as we'll eject the gas tank when it no longer is - var environment = _atmos.GetContainingMixture(cannon, false, true); + var environment = _atmos.GetContainingMixture(cannon.Owner, false, true); var removed = _gasTank.RemoveAir(gas.Value, component.GasUsage); if (environment != null && removed != null) { diff --git a/Content.Server/Power/Components/CableVisComponent.cs b/Content.Server/Power/Components/CableVisComponent.cs index bd9c62ba808..51d68b99fdc 100644 --- a/Content.Server/Power/Components/CableVisComponent.cs +++ b/Content.Server/Power/Components/CableVisComponent.cs @@ -4,7 +4,7 @@ public sealed partial class CableVisComponent : Component { [ViewVariables(VVAccess.ReadWrite)] - [DataField("node")] - public string? Node; + [DataField("node", required:true)] + public string Node; } } diff --git a/Content.Server/Power/EntitySystems/CableVisSystem.cs b/Content.Server/Power/EntitySystems/CableVisSystem.cs index ec08523d447..1a68e87ad61 100644 --- a/Content.Server/Power/EntitySystems/CableVisSystem.cs +++ b/Content.Server/Power/EntitySystems/CableVisSystem.cs @@ -23,10 +23,7 @@ public override void Initialize() private void UpdateAppearance(EntityUid uid, CableVisComponent cableVis, ref NodeGroupsRebuilt args) { - if (!TryComp(uid, out NodeContainerComponent? nodeContainer) || !TryComp(uid, out AppearanceComponent? appearance)) - return; - - if (!_nodeContainer.TryGetNode(nodeContainer, cableVis.Node, out var node)) + if (!_nodeContainer.TryGetNode(uid, cableVis.Node, out CableNode? node)) return; var transform = Transform(uid); @@ -55,7 +52,7 @@ private void UpdateAppearance(EntityUid uid, CableVisComponent cableVis, ref Nod }; } - _appearance.SetData(uid, WireVisVisuals.ConnectedMask, mask, appearance); + _appearance.SetData(uid, WireVisVisuals.ConnectedMask, mask); } } } diff --git a/Content.Server/Power/Generator/GasPowerReceiverSystem.cs b/Content.Server/Power/Generator/GasPowerReceiverSystem.cs index 76cf90c3693..5f79906c995 100644 --- a/Content.Server/Power/Generator/GasPowerReceiverSystem.cs +++ b/Content.Server/Power/Generator/GasPowerReceiverSystem.cs @@ -26,12 +26,8 @@ private void OnDeviceUpdated(EntityUid uid, GasPowerReceiverComponent component, { var timeDelta = args.dt; - if (!HasComp(uid) - || !TryComp(uid, out var nodeContainer) - || !_nodeContainer.TryGetNode(nodeContainer, "pipe", out var pipe)) - { + if (!_nodeContainer.TryGetNode(uid, "pipe", out PipeNode? pipe)) return; - } // if we're below the max temperature, then we are simply consuming our target gas if (pipe.Air.Temperature <= component.MaxTemperature) @@ -57,7 +53,7 @@ private void OnDeviceUpdated(EntityUid uid, GasPowerReceiverComponent component, if (component.OffVentGas) { // eject the gas into the atmosphere - var mix = _atmosphereSystem.GetContainingMixture(uid, false, true); + var mix = _atmosphereSystem.GetContainingMixture(uid, args.Grid, args.Map, false, true); if (mix is not null) _atmosphereSystem.Merge(res, mix); } diff --git a/Content.Server/Spreader/SpreaderSystem.cs b/Content.Server/Spreader/SpreaderSystem.cs index 671c281d1f4..fe14d86aa1d 100644 --- a/Content.Server/Spreader/SpreaderSystem.cs +++ b/Content.Server/Spreader/SpreaderSystem.cs @@ -231,10 +231,9 @@ public void GetNeighbors(EntityUid uid, TransformComponent comp, ProtoId + /// This returns the index that corresponds to the opposite direction of some other direction index. + /// I.e., 1<<OppositeIndex(i) == (1<<i).GetOpposite() + /// + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static int ToOppositeIndex(this int index) + { + return index ^ 1; + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static AtmosDirection ToOppositeDir(this int index) + { + return (AtmosDirection) (1 << (index ^ 1)); + } + public static Direction ToDirection(this AtmosDirection direction) { return direction switch @@ -119,10 +138,11 @@ public static AtmosDirection ToAtmosDirection(this Angle angle) return angle.GetDir().ToAtmosDirection(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public static int ToIndex(this AtmosDirection direction) { // This will throw if you pass an invalid direction. Not this method's fault, but yours! - return (int) Math.Log2((int) direction); + return BitOperations.Log2((uint)direction); } public static AtmosDirection WithFlag(this AtmosDirection direction, AtmosDirection other) diff --git a/Content.Shared/Tools/Systems/WeldableSystem.cs b/Content.Shared/Tools/Systems/WeldableSystem.cs index f887ed3049f..b0ea68f713f 100644 --- a/Content.Shared/Tools/Systems/WeldableSystem.cs +++ b/Content.Shared/Tools/Systems/WeldableSystem.cs @@ -15,14 +15,7 @@ public sealed class WeldableSystem : EntitySystem [Dependency] private readonly SharedToolSystem _toolSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; - - public bool IsWelded(EntityUid uid, WeldableComponent? component = null) - { - if (!Resolve(uid, ref component, false)) - return false; - - return component.IsWelded; - } + private EntityQuery _query; public override void Initialize() { @@ -31,6 +24,13 @@ public override void Initialize() SubscribeLocalEvent(OnWeldFinished); SubscribeLocalEvent(OnWeldChanged); SubscribeLocalEvent(OnExamine); + + _query = GetEntityQuery(); + } + + public bool IsWelded(EntityUid uid, WeldableComponent? component = null) + { + return _query.Resolve(uid, ref component, false) && component.IsWelded; } private void OnExamine(EntityUid uid, WeldableComponent component, ExaminedEvent args) @@ -49,7 +49,7 @@ private void OnInteractUsing(EntityUid uid, WeldableComponent component, Interac private bool CanWeld(EntityUid uid, EntityUid tool, EntityUid user, WeldableComponent? component = null) { - if (!Resolve(uid, ref component)) + if (!_query.Resolve(uid, ref component)) return false; // Other component systems @@ -63,7 +63,7 @@ private bool CanWeld(EntityUid uid, EntityUid tool, EntityUid user, WeldableComp private bool TryWeld(EntityUid uid, EntityUid tool, EntityUid user, WeldableComponent? component = null) { - if (!Resolve(uid, ref component)) + if (!_query.Resolve(uid, ref component)) return false; if (!CanWeld(uid, tool, user, component)) @@ -115,17 +115,13 @@ private void OnWeldChanged(EntityUid uid, LayerChangeOnWeldComponent component, private void UpdateAppearance(EntityUid uid, WeldableComponent? component = null) { - if (!Resolve(uid, ref component)) - return; - - if (!TryComp(uid, out AppearanceComponent? appearance)) - return; - _appearance.SetData(uid, WeldableVisuals.IsWelded, component.IsWelded, appearance); + if (_query.Resolve(uid, ref component)) + _appearance.SetData(uid, WeldableVisuals.IsWelded, component.IsWelded); } public void SetWeldedState(EntityUid uid, bool state, WeldableComponent? component = null) { - if (!Resolve(uid, ref component)) + if (!_query.Resolve(uid, ref component)) return; if (component.IsWelded == state) @@ -141,7 +137,7 @@ public void SetWeldedState(EntityUid uid, bool state, WeldableComponent? compone public void SetWeldingTime(EntityUid uid, TimeSpan time, WeldableComponent? component = null) { - if (!Resolve(uid, ref component)) + if (!_query.Resolve(uid, ref component)) return; if (component.WeldingTime.Equals(time)) diff --git a/Resources/Prototypes/Entities/Virtual/electrocution.yml b/Resources/Prototypes/Entities/Virtual/electrocution.yml index 497071ee939..ac65245191e 100644 --- a/Resources/Prototypes/Entities/Virtual/electrocution.yml +++ b/Resources/Prototypes/Entities/Virtual/electrocution.yml @@ -1,7 +1,7 @@ # Special entity used to attach to power networks as load when somebody gets electrocuted. - type: entity id: VirtualElectrocutionLoadBase - noSpawn: true + abstract: true components: - type: Electrocution - type: Icon From 9ddfe38668a263d0d9dc7230727cb55b9ab9e283 Mon Sep 17 00:00:00 2001 From: liltenhead <104418166+liltenhead@users.noreply.github.com> Date: Fri, 29 Mar 2024 21:36:33 -0700 Subject: [PATCH 18/83] Adjust syndicate hardbomb damage (#26548) hardbomb tweaks --- Resources/Prototypes/explosion.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/explosion.yml b/Resources/Prototypes/explosion.yml index a768dead6da..4f720673765 100644 --- a/Resources/Prototypes/explosion.yml +++ b/Resources/Prototypes/explosion.yml @@ -110,9 +110,9 @@ Blunt: 15 Piercing: 6 Structural: 40 - tileBreakChance: [ 0.75, 0.95, 1 ] - tileBreakIntensity: [ 1, 10, 15 ] - tileBreakRerollReduction: 30 + tileBreakChance: [ 0, 0.5, 1 ] + tileBreakIntensity: [ 0, 10, 30 ] + tileBreakRerollReduction: 10 intensityPerState: 20 lightColor: Orange texturePath: /Textures/Effects/fire.rsi From 0f6c7c9d51f81c01dba3a5047ce5e78acdc5bba5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 30 Mar 2024 04:37:39 +0000 Subject: [PATCH 19/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8c70fdc6380..4429f2be05f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Alekshhh - changes: - - message: Cerberus now has a wideswing that works similarly to spears. - type: Tweak - id: 5759 - time: '2024-01-20T23:38:27.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24328 - author: TheShuEd changes: - message: Added new Floral anomaly! @@ -3793,3 +3786,11 @@ id: 6258 time: '2024-03-30T04:00:21.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/25830 +- author: liltenhead + changes: + - message: Changed the syndicate hardbomb to have less of a chance to completely + destroy tiles. + type: Tweak + id: 6259 + time: '2024-03-30T04:36:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26548 From 97b390d35f503dd9bda35e0b3a6192b2a502d120 Mon Sep 17 00:00:00 2001 From: takemysoult <143123247+takemysoult@users.noreply.github.com> Date: Sat, 30 Mar 2024 09:52:27 +0300 Subject: [PATCH 20/83] up stimulants (no sleep) (#25886) * up stimulants (no sleep) * Update SharedSleepingSystem.cs --- Content.Shared/Bed/Sleep/SharedSleepingSystem.cs | 2 +- Resources/Prototypes/Reagents/narcotics.yml | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs b/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs index 4e4bc2c574b..c6248c88f77 100644 --- a/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs @@ -37,7 +37,7 @@ private void OnMapInit(EntityUid uid, SleepingComponent component, MapInitEvent _actionsSystem.AddAction(uid, ref component.WakeAction, WakeActionId, uid); // TODO remove hardcoded time. - _actionsSystem.SetCooldown(component.WakeAction, _gameTiming.CurTime, _gameTiming.CurTime + TimeSpan.FromSeconds(15)); + _actionsSystem.SetCooldown(component.WakeAction, _gameTiming.CurTime, _gameTiming.CurTime + TimeSpan.FromSeconds(2f)); } private void OnShutdown(EntityUid uid, SleepingComponent component, ComponentShutdown args) diff --git a/Resources/Prototypes/Reagents/narcotics.yml b/Resources/Prototypes/Reagents/narcotics.yml index d05cc29ab02..cefc8043b08 100644 --- a/Resources/Prototypes/Reagents/narcotics.yml +++ b/Resources/Prototypes/Reagents/narcotics.yml @@ -116,6 +116,13 @@ damage: types: Poison: 1 + - !type:AdjustReagent + conditions: + - !type:ReagentThreshold + reagent: ChloralHydrate + min: 1 + reagent: ChloralHydrate + amount: -10 - !type:GenericStatusEffect key: Stun time: 3 @@ -129,6 +136,10 @@ component: StaminaModifier time: 3 type: Add + - !type:GenericStatusEffect + key: ForcedSleep + time: 3 + type: Remove Medicine: metabolismRate: 1.0 effects: From 1e51febc67fdd010a286f170bf47d6b7e7445a4e Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 30 Mar 2024 06:53:32 +0000 Subject: [PATCH 21/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4429f2be05f..136f7054ef8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: Added new Floral anomaly! - type: Add - id: 5760 - time: '2024-01-21T01:31:12.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24351 - author: Menshin changes: - message: The PA control box should now properly detect the PA parts in all situations @@ -3794,3 +3787,10 @@ id: 6259 time: '2024-03-30T04:36:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26548 +- author: takemysoult + changes: + - message: stimulants removes chloral hydrate from body + type: Tweak + id: 6260 + time: '2024-03-30T06:52:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25886 From 1ffa5c28d8b50368884177abacf1625f6d37b2d1 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sat, 30 Mar 2024 17:38:38 +0100 Subject: [PATCH 22/83] Make BaseMedicalPDA abstract (#26567) --- Resources/Prototypes/Entities/Objects/Devices/pda.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 0056f965a5c..73976b48e03 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -108,6 +108,7 @@ - type: entity parent: BasePDA id: BaseMedicalPDA + abstract: true components: - type: HealthAnalyzer scanDelay: 1 From 7638252df3b0c7e958e988fc7e491d81c1e8a656 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 30 Mar 2024 11:11:44 -0700 Subject: [PATCH 23/83] Fix GasMixers/Filters not working (#26568) * Fix GasMixers/Filters not working * OKAY GAS FILTERS TOO --------- Co-authored-by: Plykiya --- .../Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs | 2 +- .../NodeContainer/EntitySystems/NodeContainerSystem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs index f856946a925..fbd42604694 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs @@ -53,7 +53,7 @@ private void OnInit(EntityUid uid, GasFilterComponent filter, ComponentInit args private void OnFilterUpdated(EntityUid uid, GasFilterComponent filter, ref AtmosDeviceUpdateEvent args) { if (!filter.Enabled - || !_nodeContainer.TryGetNodes(uid, filter.InletName, filter.OutletName, filter.FilterName, out PipeNode? inletNode, out PipeNode? filterNode, out PipeNode? outletNode) + || !_nodeContainer.TryGetNodes(uid, filter.InletName, filter.FilterName, filter.OutletName, out PipeNode? inletNode, out PipeNode? filterNode, out PipeNode? outletNode) || outletNode.Air.Pressure >= Atmospherics.MaxOutputPressure) // No need to transfer if target is full. { _ambientSoundSystem.SetAmbience(uid, false); diff --git a/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs b/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs index 19b811a287f..c0603949be5 100644 --- a/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs +++ b/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs @@ -106,7 +106,7 @@ public bool TryGetNodes( && ent.Comp.Nodes.TryGetValue(id2, out var n2) && n2 is T2 t2 && ent.Comp.Nodes.TryGetValue(id3, out var n3) - && n2 is T3 t3) + && n3 is T3 t3) { node1 = t1; node2 = t2; From c9e19445b49ca60b1096fbd48a9ede022fa8b166 Mon Sep 17 00:00:00 2001 From: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Date: Sat, 30 Mar 2024 21:25:50 +0100 Subject: [PATCH 24/83] Industrial Reagent Grinder Hotfix (#26571) fixed --- .../Entities/Structures/Machines/reagent_grinder.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml index 3bb1458b8c5..773112f6f36 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml @@ -97,4 +97,8 @@ node: machine containers: - machine_parts - - machine_board \ No newline at end of file + - machine_board + - type: DrainableSolution + solution: output + - type: ExaminableSolution + solution: output \ No newline at end of file From fde1daebc56bfd04d75047c0e3d24a6a908a8878 Mon Sep 17 00:00:00 2001 From: Syxapik <127504249+Syxapik@users.noreply.github.com> Date: Sun, 31 Mar 2024 06:00:33 +0700 Subject: [PATCH 25/83] [MapUpdate] Avrite (#2006) --- Resources/Maps/corvax_avrit.yml | 87782 ++++++++++++++++-------------- 1 file changed, 47981 insertions(+), 39801 deletions(-) diff --git a/Resources/Maps/corvax_avrit.yml b/Resources/Maps/corvax_avrit.yml index 37959f9430e..8508a72d428 100644 --- a/Resources/Maps/corvax_avrit.yml +++ b/Resources/Maps/corvax_avrit.yml @@ -7,6 +7,7 @@ tilemap: 2: FloorArcadeBlue2 3: FloorArcadeRed 4: FloorAsphalt + 5: FloorAsteroidIronsandUnvariantized 7: FloorAsteroidSand 8: FloorAsteroidSandDug 9: FloorAsteroidSandRed @@ -139,11 +140,11 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: cwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAACYAAAAAADbgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAbgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUAAAAAADUAAAAAAAUAAAAAACUAAAAAACUAAAAAABYAAAAAAAYAAAAAADbgAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUAAAAAACbQAAAAACMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAbQAAAAACbQAAAAADgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACagAAAAACbQAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAAAbgAAAAAAbgAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADgQAAAAAAYAAAAAADbgAAAAAAYAAAAAADgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAACgQAAAAAAYAAAAAABMAAAAAAAYAAAAAADMAAAAAAAfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAAAYAAAAAACMAAAAAAAYAAAAAADMAAAAAAAfQAAAAADQgAAAAAAQgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADMAAAAAAAfQAAAAAAQgAAAAAAQgAAAAAAfQAAAAADgQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAYAAAAAAAbgAAAAAAYAAAAAABMAAAAAAAfQAAAAABQgAAAAAAQgAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADbgAAAAAAYAAAAAABgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACbgAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACMAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAA + tiles: cwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACMAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAACYAAAAAADbgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAbgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUAAAAAADUAAAAAAAUAAAAAACUAAAAAACUAAAAAABYAAAAAAAYAAAAAADbgAAAAABgQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUAAAAAACbQAAAAACMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAbQAAAAACbQAAAAADgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACagAAAAACbQAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAAAbgAAAAAAbgAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAADgQAAAAAAYAAAAAADbgAAAAAAYAAAAAADgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAAAYAAAAAABMAAAAAAAYAAAAAADMAAAAAAAfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAAYAAAAAACMAAAAAAAYAAAAAADMAAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAbgAAAAAAYAAAAAABMAAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADbgAAAAAAYAAAAAABgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAADDAAAAAAADAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACbgAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACMAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: MAAAAAAAMAAAAAAAbQAAAAADbQAAAAACbQAAAAAAMAAAAAAAMAAAAAAAYAAAAAABMAAAAAAAYAAAAAABMAAAAAAAYAAAAAAAJgAAAAAAYAAAAAAAJgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAABMAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAbgAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAIAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACbgAAAAADYAAAAAAAgQAAAAAAXAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADbgAAAAAAYAAAAAABgQAAAAAAXAAAAAAAYAAAAAABJgAAAAAAJgAAAAAAYAAAAAACJgAAAAAAJgAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAXAAAAAAAYAAAAAADJgAAAAAAYAAAAAACYAAAAAABYAAAAAAAJgAAAAAAIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAAAOQAAAAAAEgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAACgQAAAAAAMAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAYAAAAAADVwAAAAAAVwAAAAAAIAAAAAACIAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAADgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADbgAAAAAAYAAAAAADMAAAAAAAMAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACbgAAAAAAbgAAAAAAYAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABagAAAAADbQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAABbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAUAAAAAACUAAAAAADUAAAAAABUAAAAAACUAAAAAACYAAAAAACYAAAAAAAbgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABbgAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABbgAAAAAA + tiles: MAAAAAAAMAAAAAAAbQAAAAADbQAAAAACbQAAAAAAMAAAAAAAMAAAAAAAYAAAAAABMAAAAAAAYAAAAAABMAAAAAAAYAAAAAAAJgAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAABMAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAbgAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAYAAAAAAAYAAAAAAAIAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACbgAAAAADYAAAAAAAgQAAAAAAXAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADbgAAAAAAYAAAAAABgQAAAAAAXAAAAAAAYAAAAAABJgAAAAAAJgAAAAAAYAAAAAACJgAAAAAAJgAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAXAAAAAAAYAAAAAADJgAAAAAAYAAAAAACYAAAAAABYAAAAAAAJgAAAAAAIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAAAOQAAAAAAEgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAACgQAAAAAAMAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAYAAAAAADVwAAAAAAVwAAAAAAIAAAAAACIAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAADgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADbgAAAAAAYAAAAAADMAAAAAAAMAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACbgAAAAAAbgAAAAAAYAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABagAAAAADbQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAABbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAUAAAAAACUAAAAAADUAAAAAABUAAAAAACUAAAAAACYAAAAAACYAAAAAAAbgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABbgAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABbgAAAAAA version: 6 0,-1: ind: 0,-1 @@ -151,19 +152,19 @@ entities: version: 6 0,0: ind: 0,0 - tiles: JgAAAAAAYAAAAAABJgAAAAAAYAAAAAACMAAAAAAAYAAAAAADMAAAAAAAUAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAbQAAAAABbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACUAAAAAACMAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABbgAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADWgAAAAAAgQAAAAAAYAAAAAACbgAAAAABYAAAAAABgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAJgAAAAAAYAAAAAABJgAAAAAAJgAAAAAAYAAAAAAAWgAAAAAAgQAAAAAAYAAAAAAAbgAAAAABYAAAAAABgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAACYAAAAAABYAAAAAABJgAAAAAAYAAAAAADWgAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVwAAAAAAYAAAAAACWQAAAAAAWQAAAAAAWQAAAAAAMAAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAADgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAMAAAAAAAMAAAAAAAYAAAAAABbgAAAAABYAAAAAABgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADbgAAAAADbgAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAbQAAAAADagAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAADUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAADYAAAAAADUAAAAAADUAAAAAABUAAAAAADUAAAAAABUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAD + tiles: JgAAAAAAYAAAAAABJgAAAAAAYAAAAAACMAAAAAAAYAAAAAADMAAAAAAAUAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAbQAAAAABbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACUAAAAAACMAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABbgAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADWgAAAAAAgQAAAAAAYAAAAAACbgAAAAABYAAAAAABgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAJgAAAAAAYAAAAAABJgAAAAAAJgAAAAAAYAAAAAAAWgAAAAAAgQAAAAAAYAAAAAAAbgAAAAABYAAAAAABgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAACYAAAAAAAYAAAAAABJgAAAAAAYAAAAAADWgAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVwAAAAAAYAAAAAACWQAAAAAAWQAAAAAAWQAAAAAAMAAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAADgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAMAAAAAAAMAAAAAAAYAAAAAABbgAAAAABYAAAAAABgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADbgAAAAADbgAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAbQAAAAADagAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAADUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAADYAAAAAADUAAAAAADUAAAAAABUAAAAAADUAAAAAABUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAD version: 6 1,0: ind: 1,0 - tiles: bQAAAAACbQAAAAABbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAADbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAABbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABMAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADbgAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAJAAAAAABJAAAAAABgQAAAAAAJAAAAAABJAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAADbgAAAAACYAAAAAAAgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAJAAAAAABJAAAAAACJAAAAAABgQAAAAAAJAAAAAACJAAAAAABVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACIAAAAAABIAAAAAADIAAAAAADgQAAAAAAJAAAAAAAJAAAAAACJAAAAAABgQAAAAAAJAAAAAABJAAAAAABVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAAAbgAAAAACYAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfQAAAAACgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfQAAAAABfQAAAAADgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAIAAAAAAAYgAAAAAAYgAAAAAAIAAAAAAA + tiles: bQAAAAACbQAAAAABbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAADbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAABbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABMAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADbgAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAABJAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAADbgAAAAACYAAAAAAAgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAJAAAAAACJAAAAAABVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACIAAAAAABIAAAAAADIAAAAAADgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAJAAAAAABJAAAAAABVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAAAbgAAAAACYAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfQAAAAACgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfQAAAAABfQAAAAADgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAIAAAAAAAYgAAAAAAYgAAAAAAIAAAAAAA version: 6 2,0: ind: 2,0 - tiles: MAAAAAAAbQAAAAACbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAaAAAAAAAMAAAAAAAMAAAAAAAaAAAAAAAYAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAAJAAAAAACgQAAAAAAJAAAAAACJAAAAAADJAAAAAADgQAAAAAAJAAAAAACJAAAAAADJAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAJAAAAAACJAAAAAAAJAAAAAABgQAAAAAAJAAAAAACJAAAAAAAJAAAAAABgQAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAJAAAAAACgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAABgQAAAAAAJAAAAAACJAAAAAACJAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAgQAAAAAA + tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAaAAAAAAAMAAAAAAAMAAAAAAAaAAAAAAAYAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAAJAAAAAACJAAAAAAAJAAAAAACJAAAAAADJAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAACJAAAAAAAJAAAAAABgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAJAAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAABgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAgQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: YAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADUAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADMAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADMAAAAAAAbQAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAACYAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAMgAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADNAAAAAAANAAAAAAANAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAD + tiles: YAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADMAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADMAAAAAAAbQAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAACYAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAMgAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADNAAAAAAANAAAAAAANAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAD version: 6 -1,-2: ind: -1,-2 @@ -183,19 +184,19 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: fQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAADQAAAAAADQAAAAAAYAAAAAACMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAADQAAAAAADQAAAAAADQAAAAAAYAAAAAABMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAYAAAAAADbgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAYAAAAAAAbgAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAMAAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAMAAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAbQAAAAACMAAAAAAAMAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAbAAAAAAADAAAAAAAgQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAgQAAAAAAYAAAAAAAbgAAAAADfQAAAAAANQAAAAAANQAAAAAAgQAAAAAAYAAAAAAAbAAAAAAAYAAAAAAAgQAAAAAACQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAYAAAAAABbgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAbAAAAAAAYAAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAYAAAAAADMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAMAAAAAAANgAAAAAAMAAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAQwAAAAAAQwAAAAAAYAAAAAACMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACMAAAAAAAfQAAAAAANQAAAAAANQAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAACbgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAbgAAAAAD + tiles: fQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAADQAAAAAADQAAAAAAYAAAAAACMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAADQAAAAAADQAAAAAADQAAAAAAYAAAAAABMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAYAAAAAADbgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAYAAAAAAAbgAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAMAAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAMAAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAbQAAAAACMAAAAAAAMAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAbAAAAAAADAAAAAAAgQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAgQAAAAAAYAAAAAAAbgAAAAADfQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAAAbAAAAAAAYAAAAAAAgQAAAAAACQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAYAAAAAABbgAAAAACfQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAAAbAAAAAAAYAAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAYAAAAAADMAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAMAAAAAAANgAAAAAAMAAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAQwAAAAAAQwAAAAAAYAAAAAACMAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAACbgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAbgAAAAAD version: 6 -2,-1: ind: -2,-1 - tiles: IAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAIAAAAAABUQAAAAAAIAAAAAABgQAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAABMAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADIAAAAAABUQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAADMAAAAAAAIAAAAAAAUQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAACfQAAAAAAfQAAAAACMAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACUQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAIAAAAAAAUQAAAAAAIAAAAAACgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAACUQAAAAAAIAAAAAABgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADIAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABJQAAAAABJQAAAAAAJQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAADJQAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABMAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAB + tiles: IAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAIAAAAAABUQAAAAAAIAAAAAABgQAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAABMAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADIAAAAAABUQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAADMAAAAAAAIAAAAAAAUQAAAAAAIAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAACfQAAAAAAfQAAAAACMAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACUQAAAAAAIAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAIAAAAAAAUQAAAAAAIAAAAAACgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAACUQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABJQAAAAABJQAAAAAAJQAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAADJQAAAAADgQAAAAAAgQAAAAAAYAAAAAACDAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABMAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAB version: 6 -3,-1: ind: -3,-1 - tiles: VAAAAAAAVAAAAAAAVAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAMwAAAAAAbwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAMwAAAAACgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAYAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAC + tiles: VAAAAAAAVAAAAAAAVAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAMwAAAAAAbwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAMwAAAAACgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADAAAAAAADAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADAAAAAAADAAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAC version: 6 -3,0: ind: -3,0 - tiles: bQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAABbQAAAAABMAAAAAAAbQAAAAAAYAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAZQAAAAADZQAAAAAAZQAAAAACgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAABZQAAAAADLQAAAAAALQAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAABbAAAAAAAbAAAAAAAYAAAAAAAZQAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAACgQAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAABbAAAAAAAbAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAZgAAAAAAgQAAAAAAZgAAAAACgQAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAABbAAAAAAAbAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAZgAAAAADgQAAAAAAZgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKAAAAAABIAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAANQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAKAAAAAADIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAANQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAKQAAAAABgQAAAAAAKAAAAAAAIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAACNQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAKAAAAAADIAAAAAADIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADAAAAAAAbQAAAAABMAAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADAAAAAAADAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADAAAAAAADAAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAZQAAAAADZQAAAAAAZQAAAAACgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAABZQAAAAADLQAAAAAALQAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAABbAAAAAAAbAAAAAAAYAAAAAAAZQAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAACgQAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAABbAAAAAAAbAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAZgAAAAAAgQAAAAAAZgAAAAACgQAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAABbAAAAAAAbAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAZgAAAAADgQAAAAAAZgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKAAAAAABIAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAANQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAKAAAAAADIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAANQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAKQAAAAABgQAAAAAAKAAAAAAAIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAACNQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAKAAAAAADIAAAAAADIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAA version: 6 -2,0: ind: -2,0 @@ -203,11 +204,11 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: LwAAAAAALwAAAAAALwAAAAAAgQAAAAAAfAAAAAAAfAAAAAABfAAAAAADfAAAAAABfAAAAAAAfAAAAAADfAAAAAAAYAAAAAABewAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAfAAAAAACdAAAAAAAfAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAfAAAAAAAdgAAAAAAdgAAAAAAUQAAAAAAdgAAAAAAdgAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAfAAAAAAAdAAAAAAAfAAAAAABfAAAAAACfAAAAAABfAAAAAAAfAAAAAABYAAAAAAAdgAAAAAAUQAAAAAAdgAAAAAAdgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAdAAAAAAAfAAAAAACgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAdgAAAAAAUQAAAAAAdgAAAAAAdgAAAAAAdAAAAAAAfAAAAAADfAAAAAACfAAAAAAAfAAAAAACfAAAAAAAcwAAAAABgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdAAAAAAAfAAAAAACfAAAAAADfAAAAAADfAAAAAAAfAAAAAACfAAAAAAAYAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAACfAAAAAAAfAAAAAAAfAAAAAADfAAAAAACfAAAAAAAYAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAVQAAAAAAVQAAAAAAfAAAAAACfAAAAAAAfAAAAAACfAAAAAABfAAAAAABfAAAAAAAfAAAAAABgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAVQAAAAAAVQAAAAAAfAAAAAAAfAAAAAAAfAAAAAADgQAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfAAAAAACfAAAAAAAfAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAABUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAdAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAUgAAAAAAUgAAAAAAYAAAAAADgQAAAAAAgQAAAAAAdAAAAAADdAAAAAAAdAAAAAADdAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAUgAAAAAAUgAAAAAAYAAAAAACgQAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAAAdAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABdAAAAAAAdAAAAAAAdAAAAAACdAAAAAADdAAAAAAAdAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAA + tiles: LwAAAAAALwAAAAAALwAAAAAAgQAAAAAAfAAAAAAAfAAAAAABfAAAAAADfAAAAAABfAAAAAAAfAAAAAADfAAAAAAAYAAAAAABewAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAfAAAAAACdAAAAAAAfAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAfAAAAAAAdgAAAAAAdgAAAAAAUQAAAAAAdgAAAAAAdgAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAfAAAAAAAdAAAAAAAfAAAAAABfAAAAAACfAAAAAABfAAAAAAAfAAAAAABYAAAAAAAdgAAAAAAUQAAAAAAdgAAAAAAdgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAdAAAAAAAfAAAAAACgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAdgAAAAAAUQAAAAAAdgAAAAAAdgAAAAAAdAAAAAAAfAAAAAADfAAAAAACfAAAAAAAfAAAAAACfAAAAAAAcwAAAAABgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdAAAAAAAfAAAAAACfAAAAAADfAAAAAADfAAAAAAAfAAAAAACfAAAAAAAYAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAACfAAAAAAAfAAAAAAAfAAAAAADfAAAAAACfAAAAAAAYAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAVQAAAAAAVQAAAAAAfAAAAAACfAAAAAAAfAAAAAACfAAAAAABfAAAAAABfAAAAAAAfAAAAAABgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAVQAAAAAAVQAAAAAAfAAAAAAAfAAAAAAAfAAAAAADgQAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfAAAAAACfAAAAAAAfAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAABUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAdAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAUgAAAAAAUgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAdAAAAAADdAAAAAAAdAAAAAADdAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAUgAAAAAAUgAAAAAAYAAAAAACgQAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAAAdAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABdAAAAAAAdAAAAAAAdAAAAAACdAAAAAADdAAAAAAAdAAAAAAAdAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: fQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAVwAAAAAAfAAAAAAAgQAAAAAALwAAAAAALwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAVwAAAAAAfAAAAAAAgQAAAAAALwAAAAAALwAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAALwAAAAAALwAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfAAAAAAAfAAAAAADfAAAAAAAfAAAAAADfAAAAAADfAAAAAAAfAAAAAADfAAAAAAAfAAAAAACdAAAAAAAdAAAAAAAMAAAAAAAfQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAfAAAAAACfAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAfAAAAAACfAAAAAAAfAAAAAADfAAAAAAAdAAAAAAAdAAAAAAAfAAAAAACfAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAfAAAAAABfAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAfAAAAAAAfAAAAAABfAAAAAADfAAAAAACfAAAAAACfAAAAAAAdAAAAAAAfAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAfAAAAAADfAAAAAADfAAAAAACfAAAAAACfAAAAAAAfAAAAAAAfAAAAAADfAAAAAAAfAAAAAADfAAAAAADfAAAAAAAfAAAAAADfAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAABfAAAAAAAfAAAAAAAfAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAABYAAAAAABYAAAAAACfAAAAAABfAAAAAABfAAAAAABfAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACMAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAMAAAAAAAMAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADbgAAAAADgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAbQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAbQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAbgAAAAAA + tiles: fQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAVwAAAAAAfAAAAAAAgQAAAAAALwAAAAAALwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAVwAAAAAAfAAAAAAAgQAAAAAALwAAAAAALwAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAALwAAAAAALwAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfAAAAAAAfAAAAAADfAAAAAAAfAAAAAADfAAAAAADfAAAAAAAfAAAAAADfAAAAAAAfAAAAAACdAAAAAAAdAAAAAAAMAAAAAAAfQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAfAAAAAACfAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAfAAAAAACfAAAAAAAfAAAAAADfAAAAAAAdAAAAAAAdAAAAAAAfAAAAAACfAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAfAAAAAABfAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAfAAAAAAAfAAAAAABfAAAAAADfAAAAAACfAAAAAACfAAAAAAAdAAAAAAAfAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAfAAAAAADfAAAAAADfAAAAAACfAAAAAACfAAAAAAAfAAAAAAAfAAAAAADfAAAAAAAfAAAAAADfAAAAAADfAAAAAAAfAAAAAADfAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAABfAAAAAAAfAAAAAAAfAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAABfAAAAAAAfAAAAAAAfAAAAAABfAAAAAABfAAAAAABfAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAewAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAbQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAbQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAbgAAAAAA version: 6 1,-2: ind: 1,-2 @@ -215,7 +216,7 @@ entities: version: 6 -2,-2: ind: -2,-2 - tiles: IAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAUQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACUQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAcwAAAAADcwAAAAABcwAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAACUQAAAAAAIAAAAAACgQAAAAAAcwAAAAACcwAAAAADcwAAAAAA + tiles: IAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAUQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACUQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAcwAAAAADcwAAAAABcwAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAACUQAAAAAAIAAAAAACgQAAAAAAcwAAAAACcwAAAAADcwAAAAAA version: 6 1,1: ind: 1,1 @@ -239,11 +240,11 @@ entities: version: 6 1,-3: ind: 1,-3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADwAAAAAAgQAAAAAADwAAAAADDwAAAAACDwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAADwAAAAACgQAAAAAAgQAAAAAADwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAACDwAAAAACgQAAAAAADwAAAAACgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAADDwAAAAABgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAhAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAhAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAhAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAhQAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAhQAAAAAAgQAAAAAAFgAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAfQAAAAAAgQAAAAAAFgAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAFgAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAFgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAdAAAAAAAdQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAdAAAAAAAdQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAMAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAFgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAdAAAAAAAdQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAdAAAAAAAdQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAhAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMAAAAAAAcwAAAAADhAAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAA version: 6 0,-4: ind: 0,-4 @@ -291,15 +292,15 @@ entities: version: 6 -3,-2: ind: -3,-2 - tiles: IAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA + tiles: IAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAABgQAAAAAAbwAAAAAAMwAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAMwAAAAABMwAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAADbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADYAAAAAACgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAMwAAAAABgQAAAAAAbwAAAAAAMwAAAAADbgAAAAADNQAAAAAANQAAAAAANQAAAAAAbgAAAAABYAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAMwAAAAABgQAAAAAAbwAAAAAAbgAAAAADNQAAAAAANQAAAAAANQAAAAAAbgAAAAABYAAAAAADMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbgAAAAABNQAAAAAANQAAAAAANQAAAAAAbQAAAAACbQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbQAAAAABYAAAAAABMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADbQAAAAADYAAAAAABMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYAAAAAABbQAAAAAAbQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAUQAAAAAAUAAAAAAAYAAAAAAAbQAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAABgQAAAAAAbwAAAAAAMwAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAMwAAAAABMwAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAADbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADYAAAAAACgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAMwAAAAABgQAAAAAAbwAAAAAAMwAAAAADbgAAAAADNQAAAAAANQAAAAAANQAAAAAAbgAAAAABYAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAMwAAAAABgQAAAAAAbwAAAAAAbgAAAAADNQAAAAAANQAAAAAANQAAAAAAbgAAAAABYAAAAAADMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbgAAAAABNQAAAAAANQAAAAAANQAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAYAAAAAABMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADbQAAAAADYAAAAAABMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYAAAAAABbQAAAAAAbQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAUQAAAAAAYAAAAAAAYAAAAAAAbQAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: MAAAAAAAMAAAAAAAUQAAAAAAUAAAAAAAYAAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAUQAAAAAAUAAAAAAAYAAAAAACbQAAAAABfQAAAAABfQAAAAABfQAAAAABfQAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYAAAAAADbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAADgQAAAAAAMAAAAAAAMAAAAAAAeAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABbQAAAAADfQAAAAACfQAAAAACfQAAAAADfQAAAAACfQAAAAABgQAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAABfQAAAAABfQAAAAADfQAAAAABfQAAAAACfQAAAAACgQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAbQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbQAAAAABbQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAbQAAAAABbQAAAAACgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAbQAAAAAAbQAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAbQAAAAADbQAAAAADRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAbQAAAAACbQAAAAABgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAbQAAAAADbQAAAAABgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABZwAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADMAAAAAAAYAAAAAABNQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADMAAAAAAAMAAAAAAAYAAAAAADNQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACMAAAAAAAYAAAAAACNQAAAAAA + tiles: MAAAAAAAMAAAAAAAUQAAAAAAYAAAAAAAYAAAAAACaAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAUQAAAAAAYAAAAAAAYAAAAAACbQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYAAAAAADbQAAAAAAbQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAeAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABbQAAAAADYAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAaAAAAAAAYAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAbQAAAAACYAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbQAAAAABbQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAbQAAAAABbQAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAbQAAAAAAbQAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAbQAAAAADbQAAAAADRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAbQAAAAACbQAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAbQAAAAADbQAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABZwAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADMAAAAAAAYAAAAAABNQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAACYAAAAAACYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADYAAAAAADMAAAAAAAMAAAAAAAYAAAAAADNQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACMAAAAAAAYAAAAAACNQAAAAAA version: 6 -3,-5: ind: -3,-5 @@ -311,7 +312,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAANgAAAAAANgAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYgAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAANgAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAABMAAAAAAAIAAAAAAAgQAAAAAAfwAAAAAAgQAAAAAAfQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAYAAAAAABbgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABbgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAbgAAAAACUAAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAABYAAAAAABMAAAAAAAUAAAAAAAYgAAAAAAYgAAAAAAgQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABMAAAAAAAfQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAABYAAAAAADbgAAAAAAfQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADMAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAANgAAAAAANgAAAAAANgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAYAAAAAABYAAAAAADbgAAAAABfQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACbgAAAAADgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAADYAAAAAADbgAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAABYAAAAAACbgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAbgAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfQAAAAAAfQAAAAAANgAAAAAANgAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfQAAAAAAfQAAAAAANgAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAABMAAAAAAAfgAAAAAAgQAAAAAAYgAAAAAAgQAAAAAAfQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAYAAAAAABbgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABbgAAAAAAUAAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAbgAAAAACUAAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAABYAAAAAABMAAAAAAAUAAAAAAAYgAAAAAAYgAAAAAAgQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABMAAAAAAAfQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAABYAAAAAADbgAAAAAAfQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAANgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADMAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAANgAAAAAANgAAAAAANgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAYAAAAAABYAAAAAADbgAAAAABfQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACbgAAAAADgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAADYAAAAAADbgAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAABYAAAAAACbgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAbgAAAAAA version: 6 0,2: ind: 0,2 @@ -319,11 +320,11 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: KAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAACMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAADKAAAAAACgQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAKAAAAAABgQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAACMAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAKAAAAAAAgQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAYAAAAAABbgAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAbgAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABMAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAABMAAAAAAAMAAAAAAAbQAAAAABbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAACbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABbgAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABNQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAADwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAADwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAADwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAALwAAAAAALwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAADwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAALwAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAADwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAALwAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAADwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: KAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAACMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAADKAAAAAACgQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAKAAAAAABgQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAACMAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAKAAAAAAAgQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAYAAAAAABbgAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAbgAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABMAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAABMAAAAAAAMAAAAAAAbQAAAAABbQAAAAABMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAACbQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAbQAAAAAAMAAAAAAAMAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABbgAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABNQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAADwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAADwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAADwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAALwAAAAAALwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAADwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAALwAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAADwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAALwAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAADwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: cAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAYAAAAAAANQAAAAAAYAAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAgQAAAAAAegAAAAAAMAAAAAAAegAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcwAAAAAAYAAAAAAAbgAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAcwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAMAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAMAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAANQAAAAAAUQAAAAAAMwAAAAAAMwAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAgQAAAAAAYAAAAAAAbgAAAAAAYAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAdwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAMwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAMwAAAAAAYAAAAAAAbgAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAMwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAMwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAMwAAAAAAYAAAAAAAbgAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: cAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAYAAAAAAANQAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAgQAAAAAAMAAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcwAAAAAAYAAAAAAAbgAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAcwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAMAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAMAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAANQAAAAAAUQAAAAAAMwAAAAAAMwAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAgQAAAAAAYAAAAAAAbgAAAAAAYAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAdwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAMwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAMwAAAAAAYAAAAAAAbgAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAMwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAMwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAMwAAAAAAYAAAAAAAbgAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-2: ind: -4,-2 @@ -351,7 +352,7 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: YAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAIAAAAAABIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADIAAAAAADYAAAAAAAYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAIAAAAAAAIAAAAAACQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADIAAAAAADYAAAAAACYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKAAAAAADIAAAAAACIAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAABIAAAAAADYAAAAAAAYAAAAAABMAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKAAAAAABIAAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADIAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAQgAAAAAAMAAAAAAAQgAAAAAAMAAAAAAAMAAAAAAANQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAANQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAbQAAAAADMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAACbQAAAAADMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAADMAAAAAAANQAAAAAAYAAAAAADMAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATwAAAAAAYAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAYAAAAAAATwAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAATwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATwAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAIAAAAAABIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADIAAAAAADYAAAAAAAYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAIAAAAAAAIAAAAAACQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADIAAAAAADYAAAAAACYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKAAAAAADIAAAAAACIAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAABIAAAAAADYAAAAAAAYAAAAAABMAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKAAAAAABIAAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADIAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAQgAAAAAAMAAAAAAAQgAAAAAAMAAAAAAAMAAAAAAANQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAANQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAbQAAAAAAbQAAAAADMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAACbQAAAAADMAAAAAAAMAAAAAAAMAAAAAAAbQAAAAADMAAAAAAANQAAAAAAYAAAAAADMAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAATwAAAAAAYAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAYAAAAAAATwAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAATwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATwAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAQAAAAAAALwAAAAAALwAAAAAALwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAAQAAAAAAAQAAAAAAALwAAAAAALwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAALwAAAAAALwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,2: ind: -3,2 @@ -371,7 +372,7 @@ entities: version: 6 -4,1: ind: -4,1 - tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAADMAAAAAAAYAAAAAAAYAAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACYAAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAABMAAAAAAAYAAAAAABYAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADMAAAAAAAYAAAAAACNQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAZwAAAAAAMAAAAAAAMAAAAAAAYAAAAAADNQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABMAAAAAAAYAAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAgQAAAAAA + tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAADMAAAAAAAYAAAAAAAYAAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACYAAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAABMAAAAAAAYAAAAAABYAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADMAAAAAAAYAAAAAACNQAAAAAAYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAZwAAAAAAMAAAAAAAMAAAAAAAYAAAAAADNQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABMAAAAAAAYAAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAADgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAADgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAgQAAAAAA version: 6 -1,-5: ind: -1,-5 @@ -379,19 +380,19 @@ entities: version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAfQAAAAAAFgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAfQAAAAAAFgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAADgQAAAAAAcAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAACgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAfQAAAAAAFgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAfQAAAAAAFgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAhQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAbwAAAAAAhAAAAAAAhAAAAAAAbwAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAhAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAhAAAAAAAbwAAAAAAbwAAAAAAhAAAAAAAbwAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAhAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAhAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAbwAAAAAAgQAAAAAAhQAAAAAAhAAAAAAAbwAAAAAAhAAAAAAAbwAAAAAAhAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAhQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAhQAAAAAAbwAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAFwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAhQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAbwAAAAAAhAAAAAAAhAAAAAAAbwAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAhAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAhAAAAAAAbwAAAAAAbwAAAAAAhAAAAAAAbwAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAhAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAhAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAbwAAAAAAgQAAAAAAhQAAAAAAhAAAAAAAbwAAAAAAhAAAAAAAbwAAAAAAhAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAhQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAhQAAAAAAbwAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAFwAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAANgAAAAAAgQAAAAAAgQAAAAAANgAAAAAAgQAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAANgAAAAAAgQAAAAAAgQAAAAAANgAAAAAAgQAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAA version: 6 2,3: ind: 2,3 @@ -419,7 +420,7 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: hAAAAAAAhAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAXwAAAAAAfQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAbQAAAAAAaAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAEwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAEwAAAAAAEwAAAAAAOgAAAAAAOgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbQAAAAAAaAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA + tiles: hAAAAAAAhAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAbQAAAAAAaAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAEwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAEwAAAAAAEwAAAAAAOgAAAAAAOgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAUQAAAAAAbgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbQAAAAAAaAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA version: 6 -3,4: ind: -3,4 @@ -435,19 +436,19 @@ entities: version: 6 1,4: ind: 1,4 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,4: ind: 2,4 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABgQAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACbwAAAAAAbwAAAAAAbwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAJwAAAAACJwAAAAAAJwAAAAADJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAADJwAAAAABJwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAADJwAAAAADJwAAAAABJwAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: bwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABgQAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACbwAAAAAAbwAAAAAAbwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAJwAAAAACJwAAAAAAJwAAAAADJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAADJwAAAAABJwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAADJwAAAAADJwAAAAABJwAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 -5,1: ind: -5,1 - tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABMAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAACYAAAAAABMAAAAAAAYAAAAAADYAAAAAABMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAABYAAAAAABMAAAAAAAYAAAAAABYAAAAAACMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAABYAAAAAADMAAAAAAAYAAAAAAAYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAACYAAAAAACMAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAYAAAAAADMAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: gQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAYAAAAAACgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAFwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAMAAAAAAAFwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAB + tiles: gQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAYAAAAAACgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAFwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAMAAAAAAAFwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAADMAAAAAAAMAAAAAAAYAAAAAACYAAAAAAAYAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAABYAAAAAACMAAAAAAAYAAAAAABMAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAB version: 6 -4,3: ind: -4,3 @@ -455,11 +456,11 @@ entities: version: 6 -5,2: ind: -5,2 - tiles: gQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAACYAAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAABYAAAAAACYAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAACYAAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAABYAAAAAACYAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,1: ind: -6,1 - tiles: YAAAAAADgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABMAAAAAAAMwAAAAAAMwAAAAAAYAAAAAAAMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACMAAAAAAAMwAAAAAAMwAAAAAAYAAAAAADMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABMAAAAAAAMwAAAAAAMwAAAAAAYAAAAAADgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAAAhQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAhQAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAADYAAAAAABMAAAAAAAYAAAAAACYAAAAAADgQAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAADYAAAAAAAMAAAAAAAYAAAAAABYAAAAAABMAAAAAAAMwAAAAAAMwAAAAAAYAAAAAAAMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAACYAAAAAACMAAAAAAAYAAAAAADYAAAAAACMAAAAAAAMwAAAAAAMwAAAAAAYAAAAAADMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMAAAAAAAYAAAAAADYAAAAAAAMAAAAAAAYAAAAAABYAAAAAABMAAAAAAAMwAAAAAAMwAAAAAAYAAAAAADgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAADYAAAAAABMAAAAAAAYAAAAAADYAAAAAABgQAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABMAAAAAAAMAAAAAAAYAAAAAABYAAAAAACYAAAAAACMAAAAAAAMAAAAAAAYAAAAAAAMAAAAAAAYAAAAAADMAAAAAAAYAAAAAADYAAAAAAAYAAAAAABMAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAAAhQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAhQAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 @@ -467,15 +468,15 @@ entities: version: 6 -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAgAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADIAAAAAACIAAAAAACIAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAgAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAC + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAgAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADIAAAAAACIAAAAAACIAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAgAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACMAAAAAAAMAAAAAAAYAAAAAABYAAAAAADYAAAAAADMAAAAAAAMAAAAAAAYAAAAAABMAAAAAAAYAAAAAADMAAAAAAAYAAAAAADYAAAAAAAYAAAAAABMAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAC version: 6 -5,-1: ind: -5,-1 - tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADMAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAABMAAAAAAAVQAAAAAAVQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACMAAAAAAAVQAAAAAAVQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAABbgAAAAABbgAAAAADgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAQQAAAAAAQQAAAAAAMAAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAACbgAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAQQAAAAAAQQAAAAAAMAAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADbgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUQAAAAAA + tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADMAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfQAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABMAAAAAAAVQAAAAAAVQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfQAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACMAAAAAAAVQAAAAAAVQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAADAAAAAAADAAAAAAADAAAAAAANwAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAgQAAAAAADAAAAAAAOAAAAAAANwAAAAAAOAAAAAAAOAAAAAAAbgAAAAABbgAAAAABaAAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAQQAAAAAAQQAAAAAAMAAAAAAAOAAAAAAANwAAAAAAOAAAAAAANwAAAAAAgQAAAAAAYAAAAAABYAAAAAACbQAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAQQAAAAAAQQAAAAAAMAAAAAAAOAAAAAAAOAAAAAAANgAAAAAADAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADbQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAANwAAAAAAOAAAAAAADAAAAAAADAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAaAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAOAAAAAAAOAAAAAAADAAAAAAADAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUQAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVwAAAAAAVwAAAAAAYAAAAAACYAAAAAACYAAAAAADWwAAAAAAWwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVwAAAAAAVwAAAAAAbgAAAAABbgAAAAABbgAAAAADWwAAAAAAWwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVwAAAAAAVwAAAAAAYAAAAAADbgAAAAACYAAAAAADWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADbgAAAAADYAAAAAABYAAAAAABYAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAbgAAAAADDAAAAAAADAAAAAAADAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAYAAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAbgAAAAAADAAAAAAADAAAAAAADAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAYAAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAbgAAAAABDAAAAAAADAAAAAAADAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAACbgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAYAAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAbgAAAAADDAAAAAAADAAAAAAADAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAYAAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAbgAAAAACDAAAAAAADAAAAAAADAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAYAAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAA + tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVwAAAAAAVwAAAAAAYAAAAAACYAAAAAACYAAAAAADWwAAAAAAWwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVwAAAAAAVwAAAAAAbgAAAAABbgAAAAABbgAAAAADWwAAAAAAWwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVwAAAAAAVwAAAAAAYAAAAAADbgAAAAACYAAAAAADWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAOAAAAAAAOAAAAAAADAAAAAAAfQAAAAAAfQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAOAAAAAAANwAAAAAANgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAADAAAAAAADAAAAAAAfQAAAAAAfQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAAOAAAAAAANwAAAAAANgAAAAAAOAAAAAAAOAAAAAAADAAAAAAADAAAAAAADAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAANwAAAAAAOAAAAAAANgAAAAAAOAAAAAAAOAAAAAAANgAAAAAANgAAAAAAOAAAAAAAOAAAAAAADAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAADAAAAAAADAAAAAAANwAAAAAAOAAAAAAANgAAAAAADAAAAAAAOAAAAAAANwAAAAAAOAAAAAAAOAAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAAOAAAAAAANgAAAAAADAAAAAAADAAAAAAADAAAAAAANwAAAAAAOAAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAANwAAAAAAOAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAADAAAAAAADAAAAAAAOAAAAAAANgAAAAAAOAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAA version: 6 3,4: ind: 3,4 @@ -495,7 +496,7 @@ entities: version: 6 -7,1: ind: -7,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAADYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAADYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAA version: 6 -7,0: ind: -7,0 @@ -587,11 +588,11 @@ entities: version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACgAAAAAACgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACgAAAAAACgAAAAAACgAAAAAARwAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAARwAAAAAARwAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgAAAAAAARwAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACgAAAAAACgAAAAAACgAAAAAARwAAAAAARwAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACgAAAAAACgAAAAAACgAAAAAARwAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACgAAAAAACgAAAAAACgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAACgAAAAAAgQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACgAAAAAACgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACgAAAAAACgAAAAAACgAAAAAARwAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAARwAAAAAARwAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAARAAAAAAARwAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACgAAAAAACgAAAAAACgAAAAAARwAAAAAARwAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACgAAAAAACgAAAAAACgAAAAAARwAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACgAAAAAACgAAAAAACgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAACgAAAAAAgQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 4,2: ind: 4,2 - tiles: gQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAARwAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAARwAAAAAARwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAARwAAAAAAgAAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAARwAAAAAARwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAARwAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAARwAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAARwAAAAAARwAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAARwAAAAAARAAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAARwAAAAAARwAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAARwAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAARwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA version: 6 3,2: ind: 3,2 @@ -684,12227 +685,13827 @@ entities: color: '#951710FF' id: 1 decals: - 7579: -39,-14 - 7580: -34,-14 + 7202: -39,-14 + 7203: -34,-14 - node: color: '#951710FF' id: 2 decals: - 7581: -39,-13 - 7582: -34,-13 + 7204: -39,-13 + 7205: -34,-13 - node: color: '#951710FF' id: 3 decals: - 7583: -39,-12 - 7584: -34,-12 + 7206: -39,-12 + 7207: -34,-12 - node: color: '#951710FF' id: 4 decals: - 7585: -39,-11 - 7586: -34,-11 + 7208: -39,-11 + 7209: -34,-11 - node: color: '#951710FF' id: 5 decals: - 7587: -39,-10 - 7588: -34,-10 + 7210: -39,-10 + 7211: -34,-10 - node: color: '#951710FF' id: 6 decals: - 7589: -39,-9 - 7590: -34,-9 + 7212: -39,-9 + 7213: -34,-9 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 8136: -14,-2 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 999: -21,-3 + 935: -21,-3 - node: color: '#FFFFFFFF' id: Arrows decals: - 398: -4,-22 - 399: -4,-21 - 400: -4,-20 - 746: -22,-67 - 747: -36,-65 - 748: -35,-65 - 4733: 73,-6 - 5577: 5,23 - 5578: 3,21 - 5609: -18,-1 + 341: -4,-22 + 342: -4,-21 + 343: -4,-20 + 688: -22,-67 + 689: -36,-65 + 690: -35,-65 + 4456: 73,-6 + 8135: -18,-2 + 9057: 3,21 + 9058: 5,23 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 2428: -25,-27 - 4735: 59.967907,-4.433128 - 5579: 5,21 - 5580: 3,23 - 5610: -14.026905,-1.4398844 - 7058: 50,1 + 2281: -25,-27 + 4458: 59.967907,-4.433128 + 6708: 50,1 + 9059: 3,23 + 9060: 5,21 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 5741: -23,-3 - 5742: -22,-3 + 5427: -23,-3 + 5428: -22,-3 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 7059: 49,1 - 7060: 48,1 + 6709: 49,1 + 6710: 48,1 - node: color: '#FFFFFFFF' id: Basalt1 decals: - 3480: 44.808918,-43.982224 - 4782: 55.50155,-14.88576 - 4822: 1.8564861,-18.77299 + 3282: 44.808918,-43.982224 + 4505: 55.50155,-14.88576 + 4545: 1.8564861,-18.77299 + 9255: -77.331535,-9.593727 + 9329: -77.03618,-5.6974883 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 9322: -90.9955,-8.870629 + 9328: -78.08376,-4.2257433 - node: color: '#FFFFFFFF' id: Basalt3 decals: - 2958: -10,-33 - 4151: -85.858086,-9.36618 - 4823: 1.2471111,-16.038616 + 2774: -10,-33 + 4546: 1.2471111,-16.038616 + 9241: -78.30029,-9.406227 + - node: + color: '#FFFFFFFF' + id: Basalt4 + decals: + 9318: -85.926315,-6.8190928 + 9325: -83.12693,-11.928968 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 9299: -78.03467,-10.078103 + 9319: -91.04009,-5.674395 + 9323: -84.0558,-9.951779 + 9330: -90.241615,-4.104428 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 9320: -88.126434,-11.977667 + 9324: -79.32132,-10.115293 + 9327: -86.32047,-5.8015804 - node: color: '#FFFFFFFF' id: Basalt7 decals: - 3479: 45.74027,-45.012947 + 3281: 45.74027,-45.012947 + 7747: -57.94177,4.8802023 + 9321: -91.04009,-12.081729 - node: color: '#FFFFFFFF' id: Basalt8 decals: - 4826: 4.434611,-17.351114 + 4549: 4.434611,-17.351114 + 9223: -78.05029,-8.906227 + 9326: -84.22005,-4.8352857 - node: - color: '#FFFF0096' - id: Bot + color: '#FFFFFFFF' + id: Basalt9 decals: - 8: 62,-5 - 9: 61,-5 - 10: 62,-3 - 11: 60,-3 - 12: 60,-3 - 13: 61,-3 - 14: 60,-1 - 15: 61,-1 - 16: 62,-1 - 17: 59,-3 - 18: 59,-5 + 9230: -77.612785,-9.687476 - node: - color: '#FFFF00FF' + color: '#FFFF0096' id: Bot decals: - 0: -18,-2 - 1: -17,-2 - 2: -16,-2 - 3: -15,-2 - 4: -14,-2 + 3: 62,-5 + 4: 61,-5 + 5: 62,-3 + 6: 60,-3 + 7: 60,-3 + 8: 61,-3 + 9: 60,-1 + 10: 61,-1 + 11: 62,-1 + 12: 59,-3 + 13: 59,-5 - node: color: '#FFFFFFFF' id: Bot decals: - 1143: 10,-55 - 1303: 39,39 - 1304: 38,38 - 1305: 39,38 - 1306: 40,38 - 1307: 39,37 - 1640: -77,21 - 1641: -77,15 - 1642: -96,18 - 1643: -88,18 - 1893: -81,2 - 1894: -80,2 - 1895: -79,2 - 1896: -78,3 - 1897: -82,3 - 1898: -82,6 - 1899: -81,7 - 1900: -80,7 - 1901: -79,7 - 1902: -78,6 - 1903: -85,1 - 1904: -83,1 - 1905: -83,8 - 1906: -85,8 - 1907: -85,4 - 1908: -85,5 - 1909: -83,4 - 1910: -83,5 - 1911: -86,3 - 1912: -86,6 - 1913: -87,7 - 1914: -88,7 - 1915: -89,7 - 1916: -90,6 - 1917: -91,8 - 1918: -92,8 - 1919: -91,1 - 1920: -92,1 - 1921: -90,3 - 1922: -89,2 - 1923: -88,2 - 1924: -87,2 - 2141: 66,-5 - 2142: 67,-5 - 2143: 68,-5 - 2144: 69,-5 - 2145: 66,-3 - 2146: 67,-3 - 2147: 68,-3 - 2148: 69,-3 - 2149: 70,-3 - 2150: 70,-5 - 2151: 70,-1 - 2152: 69,-1 - 2153: 68,-1 - 2154: 67,-1 - 2155: 66,-1 - 2156: 65,-3 - 2157: 65,-5 - 2158: 65,-1 - 2222: 59,-1 - 2225: 58,-1 - 2226: 58,-3 - 2227: 58,-5 - 2311: -34,-30 - 2312: -33,-30 - 2313: -32,-30 - 2314: -31,-30 - 2315: -31,-26 - 2316: -32,-26 - 2317: -33,-26 - 2318: -34,-26 - 2350: -36,-24 - 2351: -37,-24 - 2352: -38,-24 - 2353: -36,-30 - 2354: -37,-30 - 2355: -38,-30 - 2356: -38,-28 - 2357: -37,-28 - 2358: -36,-28 - 2359: -34,-28 - 2360: -33,-28 - 2361: -32,-24 - 2362: -33,-24 - 2363: -34,-24 - 2372: -32,-28 - 2383: -44,-23 - 2384: -43,-23 - 2385: -43,-24 - 2386: -44,-24 - 2387: -44,-25 - 2388: -43,-25 - 2389: -43,-26 - 2390: -44,-26 - 2391: -41,-23 - 2392: -41,-24 - 2393: -40,-24 - 2394: -40,-23 - 2408: -41,-26 - 2409: -40,-26 - 2418: -30,-30 - 2419: -29,-30 - 2420: -28,-30 - 2421: -27,-30 - 2507: -19,-16 - 2511: 11,-3 - 2512: 12,-3 - 2513: 15,-3 - 2514: 17,-3 - 2515: 17,-4 - 2516: 17,-5 - 2517: 17,-6 - 2518: 17,-7 - 2754: 15,-4 - 2755: 15,-5 - 2760: 13,-3 - 2761: 13,-7 - 2762: 14,-7 - 2763: 15,-7 - 2764: 11,-7 - 2772: 79,-53 - 2843: 79,-37 - 2906: -24,-45 - 2907: -23,-45 - 2908: -22,-45 - 2954: -24,-48 - 3022: -30,-7 - 3023: -29,-7 - 3024: -28,-7 - 3025: -27,-7 - 3026: -27,-9 - 3027: -28,-9 - 3028: -29,-9 - 3029: -30,-9 - 3199: -24,25 - 3200: -24,30 - 3201: 76,-3 - 3202: -4,-34 - 3203: -4,-33 - 3204: -4,-32 - 3207: 71,2 - 3208: 72,2 - 3353: 10,45 - 3354: 11,45 - 3510: 79,38 - 3629: 7,32 - 3666: 49,44 - 3667: 49,45 - 3668: 49,46 - 3669: -32,-85 - 3670: -32,-87 - 3671: -34,-87 - 3672: -34,-85 - 4138: -9,53 - 4139: -9,57 - 4143: -9,66 - 4144: -9,67 - 4145: -9,68 - 4474: 8,-40 - 4475: 15,-38 - 4541: 27,-15 - 4678: -50,-49 - 5005: -9,60 - 5088: 8,-62 - 5089: 10,-62 - 5096: -1,-61 - 5196: 49,-31 - 5197: 49,-36 - 5341: -13,-44 - 5342: -16,-50 - 5343: -11,-50 - 5388: 10,-51 - 5468: 37,29 - 5469: 38,29 - 5470: 39,29 - 5471: 29,19 - 5472: 29,20 - 5479: 39,18 - 5480: 40,18 - 5491: 13,36 - 5492: 14,36 - 5493: 16,36 - 5494: 17,36 - 5495: 28,39 - 5496: 28,38 - 5497: 28,37 - 5498: 17,29 - 5499: 17,30 - 5500: 17,31 - 5501: 24,36 - 5532: 7,12 - 5533: 8,11 - 5570: 11,19 - 5571: 6,19 - 5598: 28,40 - 5945: -49,24 - 6003: 2,-34 - 6004: 3,-35 - 6005: 1,-36 - 6006: -3,-36 - 6021: -13,-37 - 6033: -3,-38 - 6034: 1,-38 - 6035: -1,-38 - 6133: -37,-51 - 6134: -37,-50 - 6135: -34,-51 - 6138: -33,-54 - 6139: -33,-53 - 6193: 28,42 - 6279: 67,2 - 6280: 64,5 - 6285: -6,-27 - 6286: -18,-16 - 6290: -30,-26 - 6292: -28,-5 - 6293: 5,49 - 6294: 5,50 - 6296: -9,-11 - 6297: -10,-10 - 6298: 7,-11 - 6299: 8,-10 - 6300: -10,11 - 6301: -9,12 - 6303: 8,-46 - 6304: 7,-46 - 6500: -9,49 - 6501: -7,49 - 6552: -3,43 - 6553: 1,38 - 6557: 1,35 - 6558: 1,30 - 6609: 27,9 - 6615: 25,11 - 6618: 7,47 - 6734: 25,-18 - 6735: 26,-18 - 6940: 13,11 - 6941: 15,11 - 6942: 13,9 - 6943: 13,7 - 6944: 13,5 - 6945: 13,3 - 6946: 11,6 - 6947: 15,5 - 6948: 15,3 - 6949: 15,7 - 6950: 15,9 - 6951: 17,6 - 6967: 51,6 - 6968: 51,3 - 7061: 48,-2 - 7062: 49,-3 - 7063: 50,-2 - 7064: 51,-3 - 7069: 45,-3 - 7071: 53,-3 - 7075: 38,-3 - 7076: 53,-4 - 7354: 45,-5 - 7355: 50,-5 - 7362: -38,25 - 7363: -34,25 - 7364: 31,-3 - 7365: 35,-3 - 7481: 27,21 - 7482: 28,22 - 7539: -31,-16 - 7540: -32,-16 - 7541: -29,-16 - 7697: 15,-28 - 7698: 15,-26 - 7709: -25,-28 - 7710: -25,-26 - 7712: 26,-6 - 7798: 23,-6 - 7825: 38,-19 - 7826: 11,-14 - 7827: 12,-14 - 7872: 37,-17 - 7942: 68,-39 - 7943: 67,-39 - 7944: 67,-37 - 7945: 68,-35 - 7993: 57,-23 - 7994: 57,-21 - 7995: 53,-25 - 8031: 60,-25 - 8032: 61,-34 + 1076: 10,-55 + 1232: 39,39 + 1233: 38,38 + 1234: 39,38 + 1235: 40,38 + 1236: 39,37 + 1568: -77,21 + 1569: -77,15 + 1570: -88,18 + 1747: -81,2 + 1748: -80,2 + 1749: -79,2 + 1750: -78,3 + 1751: -82,3 + 1752: -82,6 + 1753: -81,7 + 1754: -80,7 + 1755: -79,7 + 1756: -78,6 + 1757: -85,1 + 1758: -83,1 + 1759: -83,8 + 1760: -85,8 + 1761: -85,4 + 1762: -85,5 + 1763: -83,4 + 1764: -83,5 + 1765: -86,3 + 1766: -86,6 + 1767: -87,7 + 1768: -88,7 + 1769: -89,7 + 1770: -90,6 + 1771: -91,8 + 1772: -92,8 + 1773: -91,1 + 1774: -92,1 + 1775: -90,3 + 1776: -89,2 + 1777: -88,2 + 1778: -87,2 + 1994: 66,-5 + 1995: 67,-5 + 1996: 68,-5 + 1997: 69,-5 + 1998: 66,-3 + 1999: 67,-3 + 2000: 68,-3 + 2001: 69,-3 + 2002: 70,-3 + 2003: 70,-5 + 2004: 70,-1 + 2005: 69,-1 + 2006: 68,-1 + 2007: 67,-1 + 2008: 66,-1 + 2009: 65,-3 + 2010: 65,-5 + 2011: 65,-1 + 2075: 59,-1 + 2078: 58,-1 + 2079: 58,-3 + 2080: 58,-5 + 2164: -34,-30 + 2165: -33,-30 + 2166: -32,-30 + 2167: -31,-30 + 2168: -31,-26 + 2169: -32,-26 + 2170: -33,-26 + 2171: -34,-26 + 2203: -36,-24 + 2204: -37,-24 + 2205: -38,-24 + 2206: -36,-30 + 2207: -37,-30 + 2208: -38,-30 + 2209: -38,-28 + 2210: -37,-28 + 2211: -36,-28 + 2212: -34,-28 + 2213: -33,-28 + 2214: -32,-24 + 2215: -33,-24 + 2216: -34,-24 + 2225: -32,-28 + 2236: -44,-23 + 2237: -43,-23 + 2238: -43,-24 + 2239: -44,-24 + 2240: -44,-25 + 2241: -43,-25 + 2242: -43,-26 + 2243: -44,-26 + 2244: -41,-23 + 2245: -41,-24 + 2246: -40,-24 + 2247: -40,-23 + 2261: -41,-26 + 2262: -40,-26 + 2271: -30,-30 + 2272: -29,-30 + 2273: -28,-30 + 2274: -27,-30 + 2357: -19,-16 + 2361: 11,-3 + 2362: 12,-3 + 2363: 15,-3 + 2364: 17,-3 + 2365: 17,-4 + 2366: 17,-5 + 2367: 17,-6 + 2368: 17,-7 + 2570: 15,-4 + 2571: 15,-5 + 2576: 13,-3 + 2577: 13,-7 + 2578: 14,-7 + 2579: 15,-7 + 2580: 11,-7 + 2588: 79,-53 + 2659: 79,-37 + 2722: -24,-45 + 2723: -23,-45 + 2724: -22,-45 + 2770: -24,-48 + 2838: -30,-7 + 2839: -29,-7 + 2840: -28,-7 + 2841: -27,-7 + 2842: -27,-9 + 2843: -28,-9 + 2844: -29,-9 + 2845: -30,-9 + 3005: -24,25 + 3006: -24,30 + 3007: 76,-3 + 3008: -4,-34 + 3009: -4,-33 + 3010: -4,-32 + 3013: 71,2 + 3014: 72,2 + 3155: 10,45 + 3156: 11,45 + 3302: 79,38 + 3421: 7,32 + 3458: 49,44 + 3459: 49,45 + 3460: 49,46 + 3461: -32,-85 + 3462: -32,-87 + 3463: -34,-87 + 3464: -34,-85 + 3928: -9,67 + 3929: -9,68 + 4225: 8,-40 + 4226: 15,-38 + 4292: 27,-15 + 4422: -50,-49 + 4807: 8,-62 + 4808: 10,-62 + 4815: -1,-61 + 4897: 49,-31 + 4898: 49,-36 + 5042: -13,-44 + 5043: -16,-50 + 5044: -11,-50 + 5087: 10,-51 + 5167: 37,29 + 5168: 38,29 + 5169: 39,29 + 5170: 29,19 + 5171: 29,20 + 5178: 39,18 + 5179: 40,18 + 5190: 13,36 + 5191: 14,36 + 5192: 16,36 + 5193: 17,36 + 5194: 28,39 + 5195: 28,38 + 5196: 28,37 + 5197: 17,29 + 5198: 17,30 + 5199: 17,31 + 5200: 24,36 + 5231: 7,12 + 5232: 8,11 + 5269: 11,19 + 5270: 6,19 + 5289: 28,40 + 5622: -49,24 + 5678: 2,-34 + 5679: 3,-35 + 5680: 1,-36 + 5681: -3,-36 + 5696: -13,-37 + 5708: -3,-38 + 5709: 1,-38 + 5806: -37,-51 + 5807: -37,-50 + 5808: -34,-51 + 5811: -33,-54 + 5812: -33,-53 + 5859: 28,42 + 5935: 67,2 + 5936: 64,5 + 5941: -6,-27 + 5942: -18,-16 + 5946: -30,-26 + 5948: -28,-5 + 5949: 5,49 + 5950: 5,50 + 5952: -9,-11 + 5953: -10,-10 + 5954: 7,-11 + 5955: 8,-10 + 5956: -10,11 + 5957: -9,12 + 5959: 8,-46 + 5960: 7,-46 + 6155: -9,49 + 6206: -3,43 + 6207: 1,38 + 6211: 1,35 + 6212: 1,30 + 6263: 27,9 + 6269: 25,11 + 6272: 7,47 + 6388: 25,-18 + 6389: 26,-18 + 6594: 13,11 + 6595: 15,11 + 6596: 13,9 + 6597: 13,7 + 6598: 13,5 + 6599: 13,3 + 6600: 11,6 + 6601: 15,5 + 6602: 15,3 + 6603: 15,7 + 6604: 15,9 + 6605: 17,6 + 6621: 51,6 + 6622: 51,3 + 6711: 48,-2 + 6712: 49,-3 + 6713: 50,-2 + 6714: 51,-3 + 6719: 45,-3 + 6721: 53,-3 + 6724: 38,-3 + 6725: 53,-4 + 6988: 45,-5 + 6989: 50,-5 + 6996: -38,25 + 6997: -34,25 + 6998: 31,-3 + 6999: 35,-3 + 7105: 27,21 + 7106: 28,22 + 7162: -31,-16 + 7163: -32,-16 + 7164: -29,-16 + 7320: 15,-28 + 7321: 15,-26 + 7332: -25,-28 + 7333: -25,-26 + 7335: 26,-6 + 7421: 23,-6 + 7448: 38,-19 + 7449: 11,-14 + 7450: 12,-14 + 7495: 37,-17 + 7565: 68,-39 + 7566: 67,-39 + 7567: 67,-37 + 7568: 68,-35 + 7616: 57,-23 + 7617: 57,-21 + 7618: 53,-25 + 7654: 60,-25 + 7655: 61,-34 + 7669: -52,-35 + 7670: -52,-34 + 7671: -43,-33 + 7858: 36,4 + 8120: -18,-3 + 8121: -17,-3 + 8122: -16,-3 + 8123: -15,-3 + 8124: -14,-3 + 8125: -18,-2 + 8126: -14,-2 + 8337: -5,0 + 8338: 3,0 + 8448: -1,-38 + 8592: -96,18 + 8685: -66,18 + 8913: -7,49 + 8938: -9,66 + 8992: -9,60 + 8993: -9,57 + 8994: -9,53 + 9222: 38,1 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 82: 14,25 - 83: 13,25 - 84: 13,26 - 85: 13,27 - 86: 13,28 - 88: 14,31 - 89: 13,31 - 90: 13,30 - 91: 13,29 - 1156: -18,-42 - 1159: 65,1 - 1160: 65,5 - 1161: 64,5 - 1162: -45,18 - 1163: -45,20 - 1164: -45,16 - 1165: -48,12 - 1166: -52,16 - 1167: -52,20 - 1168: -59,15 - 1169: -59,21 - 1170: 56,-7 - 1171: 57,-7 + 77: 14,25 + 78: 13,25 + 79: 13,26 + 80: 13,27 + 81: 13,28 + 83: 14,31 + 84: 13,31 + 85: 13,30 + 86: 13,29 + 1089: -18,-42 + 1092: 65,1 + 1093: 65,5 + 1094: 64,5 + 1095: -45,20 + 1096: -45,16 + 1097: -48,12 + 1098: -52,16 + 1099: -52,20 + 1100: -59,15 + 1101: -59,21 + 1102: 56,-7 + 1103: 57,-7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 743: -31,-69 - 744: -21,-59 - 745: -16,-62 - 5249: 49,-25 - 5250: 49,-27 - 5251: 29,-14 - 5252: -8,-46 + 685: -31,-69 + 686: -21,-59 + 687: -16,-62 + 4950: 49,-25 + 4951: 49,-27 + 4952: 29,-14 + 4953: -8,-46 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Bot decals: - 2216: 74,6 - 2217: 73,6 - 2218: 74,2 - 2219: 73,2 + 2069: 74,6 + 2070: 73,6 + 2071: 74,2 + 2072: 73,2 - node: color: '#FFFFFFE2' id: BotGreyscale decals: - 441: -19,-22 - 442: -13,-22 + 384: -19,-22 + 385: -13,-22 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 2481: -20,-22 - 2482: -20,-21 - 2490: -12,-21 - 2491: -12,-22 - 2528: -20,-20 - 2529: -12,-20 - 4477: 8,-41 - 4478: 10,-44 - 5245: 54,-31 - 5246: 54,-36 - 5247: 60,-41 - 5248: 58,-41 - 5344: -11,-53 - 5345: -17,-42 - 5387: 10,-52 - 5503: 24,3 - 6022: -12,-39 - 6023: -10,-39 - 6024: -8,-39 - 6276: 71,7 - 6277: 72,7 - 6278: 73,4 - 6281: 73,-16 - 6282: 21,-14 - 6283: 30,-13 - 6284: -4,-25 - 6287: -32,-20 - 6288: -31,-20 - 6289: -30,-20 - 6291: -26,-3 - 6295: 7,60 - 6302: -29,5 - 6596: 55,-7 - 6610: 26,12 - 6611: 27,12 - 6619: 3,45 - 6620: 3,47 - 6621: 7,45 - 6966: 49,3 - 7072: 51,1 - 7356: 48,-5 - 7357: 42,-8 - 7358: 43,-8 - 7518: -33,-7 - 7519: -32,-7 - 7699: 10,-26 - 7700: 11,-26 - 7701: 14,-24 - 7828: 12,-16 - 7871: 36,-17 - 7996: 61,-32 + 2331: -20,-22 + 2332: -20,-21 + 2340: -12,-21 + 2341: -12,-22 + 2378: -20,-20 + 2379: -12,-20 + 4228: 8,-41 + 4229: 10,-44 + 4946: 54,-31 + 4947: 54,-36 + 4948: 60,-41 + 4949: 58,-41 + 5045: -11,-53 + 5046: -17,-42 + 5086: 10,-52 + 5202: 24,3 + 5697: -12,-39 + 5698: -10,-39 + 5699: -8,-39 + 5932: 71,7 + 5933: 72,7 + 5934: 73,4 + 5937: 73,-16 + 5938: 21,-14 + 5939: 30,-13 + 5940: -4,-25 + 5943: -32,-20 + 5944: -31,-20 + 5945: -30,-20 + 5947: -26,-3 + 5951: 7,60 + 5958: -29,5 + 6250: 55,-7 + 6264: 26,12 + 6265: 27,12 + 6273: 3,45 + 6274: 3,47 + 6275: 7,45 + 6620: 49,3 + 6722: 51,1 + 6990: 48,-5 + 6991: 42,-8 + 6992: 43,-8 + 7141: -33,-7 + 7142: -32,-7 + 7322: 10,-26 + 7323: 11,-26 + 7324: 14,-24 + 7451: 12,-16 + 7494: 36,-17 + 7619: 61,-32 - node: color: '#FFFFFFFF' id: BotLeft decals: - 5198: 49,-32 - 5199: 49,-37 - 5475: 41,16 - 5476: 41,15 + 4899: 49,-32 + 4900: 49,-37 + 5174: 41,16 + 5175: 41,15 - node: color: '#EFB341D9' id: BotLeftGreyscale decals: - 1042: 10,16 - 1043: 9,16 - 1044: 8,16 - 1045: 8,15 - 1046: 9,15 - 1047: 10,15 + 975: 10,16 + 976: 9,16 + 977: 8,16 + 978: 8,15 + 979: 9,15 + 980: 10,15 - node: color: '#FFFFFFE0' id: BotLeftGreyscale decals: - 445: -17,-20 + 388: -17,-20 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 1302: 40,39 - 1308: 38,37 + 1231: 40,39 + 1237: 38,37 - node: color: '#EFB341D9' id: BotRight decals: - 1037: 3,16 - 1038: 2,16 - 1039: 2,15 - 1040: 3,15 - 1041: 4,15 + 970: 3,16 + 971: 2,16 + 972: 2,15 + 973: 3,15 + 974: 4,15 - node: color: '#F2AF41C0' id: BotRight decals: - 1049: 4,16 + 982: 4,16 - node: color: '#FFFFFFFF' id: BotRight decals: - 3673: -38,-94 - 5477: 43,16 - 5478: 43,15 + 3465: -38,-94 + 5176: 43,16 + 5177: 43,15 - node: color: '#FFFFFFE2' id: BotRightGreyscale decals: - 435: -15,-20 + 378: -15,-20 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 1301: 38,39 - 1309: 40,37 + 1230: 38,39 + 1238: 40,37 - node: color: '#52B4E996' id: Box decals: - 61: -24,-59 + 56: -24,-59 - node: color: '#FFFFFFFF' id: Box decals: - 2904: -25,-45 - 2909: -21,-45 - 3347: 12,47 - 3348: 12,46 - 3349: 12,45 - 3350: 13,45 - 3351: 13,46 - 3352: 13,47 - 3511: 75,42 - 3512: 75,34 - 3513: 83,34 - 3514: 83,42 - 3664: -26,-7 - 3665: -26,-9 - 3960: 36,32 - 3961: 37,32 - 3962: 37,33 - 3963: 36,33 - 3964: 38,33 - 3965: 38,32 - 3966: 39,33 - 4193: 31,19 - 4194: 31,20 - 4476: 14,-42 - 4727: -29,36 - 4728: -28,36 - 4730: 75,-16 - 4731: 76,-16 - 4746: 64,-38 - 5502: 25,23 - 5572: 3,23 - 5573: 3,21 - 5574: 5,21 - 5575: 5,23 - 6136: -34,-50 - 6612: 23,11 - 6613: 24,11 - 6614: 23,3 - 6616: -11,-37 - 6617: -8,-37 - 6622: 8,47 - 6623: 23,8 - 7057: 50,1 - 7359: 44,-5 - 7360: 49,-8 - 7361: 50,-8 - 7467: 31,24 - 7468: 31,25 - 7520: -31,-3 - 7521: -30,-3 - 7702: 13,-27 - 7703: 15,-27 - 7704: 9,-24 - 7939: 66,-34 - 7940: 67,-34 - 7941: 68,-34 + 2720: -25,-45 + 2725: -21,-45 + 3149: 12,47 + 3150: 12,46 + 3151: 12,45 + 3152: 13,45 + 3153: 13,46 + 3154: 13,47 + 3303: 75,42 + 3304: 75,34 + 3305: 83,34 + 3306: 83,42 + 3456: -26,-7 + 3457: -26,-9 + 3748: 36,32 + 3749: 37,32 + 3750: 37,33 + 3751: 36,33 + 3752: 38,33 + 3753: 38,32 + 3754: 39,33 + 3956: 31,19 + 3957: 31,20 + 4227: 14,-42 + 4450: -29,36 + 4451: -28,36 + 4453: 75,-16 + 4454: 76,-16 + 4469: 64,-38 + 5201: 25,23 + 5809: -34,-50 + 6266: 23,11 + 6267: 24,11 + 6268: 23,3 + 6270: -11,-37 + 6271: -8,-37 + 6276: 8,47 + 6277: 23,8 + 6707: 50,1 + 6993: 44,-5 + 6994: 49,-8 + 6995: 50,-8 + 7091: 31,24 + 7092: 31,25 + 7143: -31,-3 + 7144: -30,-3 + 7325: 13,-27 + 7326: 15,-27 + 7327: 9,-24 + 7562: 66,-34 + 7563: 67,-34 + 7564: 68,-34 + 9053: 3,21 + 9054: 3,23 + 9055: 5,23 + 9056: 5,21 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: - 87: 15,28 - 4326: 8,56 - 4327: 8,57 - 4328: 9,57 - 4329: 9,56 + 82: 15,28 + 4080: 8,56 + 4081: 8,57 + 4082: 9,57 + 4083: 9,56 - node: color: '#52B4E996' id: BoxGreyscale decals: - 5051: 2,-59 - 5052: 3,-59 - 5053: 3,-60 - 5054: 2,-60 - 5055: 2,-62 - 5056: 3,-62 - 5057: 5,-62 - 5058: 6,-62 - 5059: 6,-60 - 5060: 5,-60 - 5061: 5,-59 - 5062: 6,-59 - 5063: 6,-57 - 5064: 5,-57 - 5065: 4,-57 - 5066: 3,-57 - 5067: 2,-57 + 4770: 2,-59 + 4771: 3,-59 + 4772: 3,-60 + 4773: 2,-60 + 4774: 2,-62 + 4775: 3,-62 + 4776: 5,-62 + 4777: 6,-62 + 4778: 6,-60 + 4779: 5,-60 + 4780: 5,-59 + 4781: 6,-59 + 4782: 6,-57 + 4783: 5,-57 + 4784: 4,-57 + 4785: 3,-57 + 4786: 2,-57 + - node: + color: '#A72323FF' + id: BoxGreyscale + decals: + 8270: -27,46 - node: color: '#FFFFFFE2' id: BoxGreyscale decals: - 436: -16,-22 - 437: -17,-22 - 438: -15,-22 - 439: -14,-22 - 440: -18,-22 + 379: -16,-22 + 380: -17,-22 + 381: -15,-22 + 382: -14,-22 + 383: -18,-22 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 4989: 15,-42 - 4990: 15,-42 - 7055: 49,1 - 7056: 48,1 - 7469: 30,22 - 7470: 30,23 - 7542: -30,-16 + 4712: 15,-42 + 4713: 15,-42 + 6705: 49,1 + 6706: 48,1 + 7093: 30,22 + 7094: 30,23 + 7165: -30,-16 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 4527: 13,-14 + 4278: 13,-14 + 7820: 36,4 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 2974: -21,-29 - 4526: 11,-14 + 2790: -21,-29 + 4277: 11,-14 + 7819: 30,4 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 4524: 13,-16 + 4275: 13,-16 + 7822: 36,1 + 7874: -16,37 - node: color: '#D4D4D496' id: BrickTileDarkCornerSw decals: - 3554: -21,-31 - 3555: -21,-31 + 3346: -21,-31 + 3347: -21,-31 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 4529: 11,-16 + 4280: 11,-16 + 7821: 30,1 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 9354: -34,50 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 5116: 11,-60 + 4835: 11,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 5113: 8,-60 + 4832: 8,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 2977: -2,-29 + 2793: -2,-29 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 2792: -2,-31 + 2825: -5,-31 - node: + zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 2976: -2,-31 - 3009: -5,-31 + 9366: -34,51 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 4530: 13,-15 + 4281: 13,-15 + 7830: 36,2 + 7831: 36,3 + 7875: -16,38 + 7876: -16,39 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 2978: -3,-29 - 2979: -5,-29 - 2980: -7,-29 - 2981: -8,-29 - 2982: -6,-29 - 2983: -9,-29 - 2984: -10,-29 - 2985: -12,-29 - 2986: -11,-29 - 2987: -13,-29 - 2988: -20,-29 - 2989: -19,-29 - 2990: -18,-29 - 2991: -17,-29 - 2992: -15,-29 - 2993: -16,-29 - 2994: -14,-29 - 4528: 12,-14 - 5114: 9,-60 - 5115: 10,-60 - 5942: -4,-29 + 2794: -3,-29 + 2795: -5,-29 + 2796: -7,-29 + 2797: -8,-29 + 2798: -6,-29 + 2799: -9,-29 + 2800: -10,-29 + 2801: -12,-29 + 2802: -11,-29 + 2803: -13,-29 + 2804: -20,-29 + 2805: -19,-29 + 2806: -18,-29 + 2807: -17,-29 + 2808: -15,-29 + 2809: -16,-29 + 2810: -14,-29 + 4279: 12,-14 + 4833: 9,-60 + 4834: 10,-60 + 5619: -4,-29 + 7832: 31,4 + 7833: 32,4 + 7834: 33,4 + 7835: 34,4 + 7836: 35,4 - node: color: '#D4D4D496' id: BrickTileDarkLineS decals: - 3547: -18,-31 - 3548: -18,-31 - 3549: -19,-31 - 3551: -19,-31 - 3552: -20,-31 - 3553: -20,-31 + 3339: -18,-31 + 3340: -18,-31 + 3341: -19,-31 + 3343: -19,-31 + 3344: -20,-31 + 3345: -20,-31 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 2811: -17,-31 + 2812: -16,-31 + 2813: -15,-31 + 2814: -14,-31 + 2815: -13,-31 + 2816: -9,-31 + 2817: -8,-31 + 2818: -7,-31 + 2819: -6,-31 + 2820: -4,-31 + 2821: -3,-31 + 4274: 12,-16 + 4836: 9,-60 + 4837: 10,-60 + 5620: -12,-31 + 7825: 31,1 + 7826: 32,1 + 7827: 33,1 + 7828: 34,1 + 7829: 35,1 + 7871: -19,37 + 7872: -18,37 + 7873: -17,37 - node: + zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2995: -17,-31 - 2996: -16,-31 - 2997: -15,-31 - 2998: -14,-31 - 2999: -13,-31 - 3000: -9,-31 - 3001: -8,-31 - 3002: -7,-31 - 3003: -6,-31 - 3004: -4,-31 - 3005: -3,-31 - 4523: 12,-16 - 5117: 9,-60 - 5118: 10,-60 - 5943: -12,-31 + 9365: -35,51 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 2975: -21,-30 - 3006: -5,-34 - 3007: -5,-33 - 3008: -5,-32 - 4522: 11,-15 + 2791: -21,-30 + 2822: -5,-34 + 2823: -5,-33 + 2824: -5,-32 + 4273: 11,-15 + 7823: 30,2 + 7824: 30,3 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 7094: -1,-34 - 7095: -1,-24 - 7096: -1,-32 - 7097: -1,-30 - 7098: -1,-28 - 7099: -1,-26 - 7165: -34,0 - 7166: -32,0 - 7167: -30,0 - 7168: -28,0 - 7169: -26,0 - 7241: -14,22 - 7242: -9,22 - 7243: -1,30 - 7278: 39,-1 - 7279: 42,-1 - 7282: -7,50 - 7283: -8,51 - 7284: 1,50 - 7285: 2,51 - 7286: -8,66 - 7287: -7,67 - 7288: 1,67 - 7289: 2,66 - 7417: -4,0 - 7418: -2,0 - 7419: 0,0 - 7420: 2,0 - 7976: 56,-22 + 6743: -1,-34 + 6744: -1,-24 + 6745: -1,-32 + 6746: -1,-30 + 6747: -1,-28 + 6748: -1,-26 + 6813: -32,0 + 6814: -30,0 + 6815: -28,0 + 6816: -26,0 + 6886: -14,22 + 6887: -9,22 + 6888: -1,30 + 6913: 39,-1 + 6914: 42,-1 + 6917: -8,51 + 6918: 1,50 + 6919: 2,51 + 6920: -8,66 + 6921: -7,67 + 6922: 1,67 + 6923: 2,66 + 7043: -4,0 + 7044: 2,0 + 7599: 56,-22 + 7686: -34,0 + 7790: 33,0 + 8145: -69,14 + 8146: -67,14 + 8149: -69,22 + 8150: -67,22 + 8208: -85,22 + 8209: -87,22 + 8210: -87,14 + 8211: -85,14 + 8328: -3,2 + 8329: 1,2 + 8912: -7,50 - node: color: '#DE3A3A95' id: BrickTileSteelCornerNe decals: - 3313: 13,47 + 3115: 13,47 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 3453: 8,54 - 6510: 8,47 + 3255: 8,54 + 6164: 8,47 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 6695: 24,-15 - 7770: 35,-19 - 7985: 58,-26 - 8013: 56,-31 - 8014: 60,-35 - 8018: 56,-35 + 6349: 24,-15 + 7393: 35,-19 + 7608: 58,-26 + 7636: 56,-31 + 7637: 60,-35 + 7641: 56,-35 + 8160: -97,20 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 2431: 39,-25 + 2284: 39,-25 - node: color: '#DE3A3A95' id: BrickTileSteelCornerNw decals: - 3314: 10,47 - 3329: 5,54 + 3116: 10,47 + 3131: 5,54 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 6507: 3,47 + 6161: 3,47 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 6694: 16,-15 - 7771: 31,-19 - 7986: 55,-26 - 8015: 55,-31 - 8016: 55,-35 - 8017: 58,-35 + 6348: 16,-15 + 7394: 31,-19 + 7609: 55,-26 + 7638: 55,-31 + 7639: 55,-35 + 7640: 58,-35 + 8162: -98,20 - node: color: '#DE3A3A95' id: BrickTileSteelCornerSe decals: - 3316: 13,45 - 3324: 8,49 + 3118: 13,45 + 3126: 8,49 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 6508: 8,45 + 6162: 8,45 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 7437: 3,4 - 7785: 35,-23 - 7988: 58,-27 - 8019: 56,-33 - 8020: 60,-36 - 8021: 56,-36 + 7061: 3,4 + 7408: 35,-23 + 7611: 58,-27 + 7642: 56,-33 + 7643: 60,-36 + 7644: 56,-36 + 8167: -97,16 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 2434: 39,-28 + 2287: 39,-28 - node: color: '#DE3A3A95' id: BrickTileSteelCornerSw decals: - 3315: 10,45 - 3325: 5,49 + 3117: 10,45 + 3127: 5,49 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 6509: 3,45 + 6163: 3,45 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 7438: -5,4 - 7772: 31,-23 - 7987: 55,-27 - 8022: 55,-36 - 8023: 58,-36 - 8024: 55,-33 + 7062: -5,4 + 7395: 31,-23 + 7610: 55,-27 + 7645: 55,-36 + 7646: 58,-36 + 7647: 55,-33 + 8165: -98,16 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 3209: 0,-37 - 4544: 21,-15 - 6625: 5,22 - 6628: 5,-21 - 6663: 15,-21 - 6677: 21,-21 - 6678: 27,-21 - 6679: 52,-22 - 6700: 17,-15 - 7081: -17,-30 - 7082: -10,-30 - 7083: -5,-30 - 7101: 0,-21 - 7109: 9,-21 - 7116: -5,12 - 7117: 5,12 - 7118: 5,-11 - 7119: -5,-11 - 7175: -21,0 - 7178: -15,0 - 7179: 9,0 - 7189: 21,0 - 7190: 15,0 - 7205: 0,22 - 7206: -5,22 - 7207: -11,22 - 7208: -16,22 - 7209: -21,22 - 7210: -26,22 - 7211: -31,22 - 7212: -35,22 - 7213: -40,22 - 7257: -49,0 - 7265: 26,0 - 7266: 32,0 - 7267: 37,0 - 7277: 41,-2 - 7280: 41,0 - 7296: -1,50 - 7297: -1,67 - 7334: -45,14 - 7336: -45,22 - 7436: -4,4 - 7444: 0,4 - 7721: 48,-22 - 7728: 34,-21 - 7765: 32,-23 - 7766: 32,-19 + 4295: 21,-15 + 6279: 5,22 + 6282: 5,-21 + 6317: 15,-21 + 6331: 21,-21 + 6332: 27,-21 + 6333: 52,-22 + 6354: 17,-15 + 6730: -17,-30 + 6731: -10,-30 + 6732: -5,-30 + 6749: 0,-21 + 6757: 9,-21 + 6764: -5,12 + 6765: 5,12 + 6766: 5,-11 + 6767: -5,-11 + 6822: -21,0 + 6825: -15,0 + 6826: 9,0 + 6836: 21,0 + 6837: 15,0 + 6851: 0,22 + 6852: -5,22 + 6853: -11,22 + 6854: -16,22 + 6855: -21,22 + 6856: -26,22 + 6857: -31,22 + 6858: -35,22 + 6859: -40,22 + 6903: 26,0 + 6904: 37,0 + 6912: 41,-2 + 6915: 41,0 + 6930: -1,50 + 6931: -1,67 + 6968: -45,14 + 6970: -45,22 + 7060: -4,4 + 7068: 0,4 + 7344: 48,-22 + 7351: 34,-21 + 7388: 32,-23 + 7389: 32,-19 + 8140: -55,14 + 8157: -61,14 + 8168: -55,22 + 8169: -61,22 + 8196: -94,22 + 8197: -94,14 + 8198: -73,14 + 8199: -73,22 + 8201: -79,22 + 8202: -79,14 + 8206: -89,22 + 8207: -89,14 + 8330: 0,0 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 3213: 20,-9 - 3224: 20,6 - 6272: -1,-36 - 6632: 20,-4 - 7100: -1,-20 - 7105: -1,-15 - 7145: -10,-5 - 7146: -10,8 - 7147: 8,8 - 7148: 8,-5 - 7173: -22,1 - 7174: -10,1 - 7180: 8,1 - 7184: -1,18 - 7188: 20,1 - 7214: -1,23 - 7215: -22,18 - 7216: -22,13 - 7217: -22,10 - 7218: -22,6 - 7244: -1,34 - 7245: -1,28 - 7252: -1,42 - 7253: -1,39 - 7290: -8,64 - 7291: -8,60 - 7292: 2,64 - 7293: 2,60 - 7294: 2,55 - 7295: -8,55 - 7340: -51,15 - 7341: -46,15 - 7342: -46,23 - 7343: -51,23 - 7348: -51,19 - 7349: -46,19 - 7433: -5,5 - 7434: 3,5 - 7446: -1,5 - 7451: -22,38 - 7452: -22,41 - 7453: -22,44 - 7454: -22,47 - 7455: -22,51 - 7724: 33,-20 - 7763: 31,-22 - 7764: 35,-22 + 3016: 20,-9 + 3027: 20,6 + 6286: 20,-4 + 6753: -1,-15 + 6793: -10,-5 + 6794: -10,8 + 6795: 8,8 + 6796: 8,-5 + 6820: -22,1 + 6821: -10,1 + 6827: 8,1 + 6831: -1,18 + 6835: 20,1 + 6860: -1,23 + 6861: -22,18 + 6862: -22,13 + 6863: -22,10 + 6889: -1,34 + 6890: -1,28 + 6897: -1,42 + 6898: -1,39 + 6924: -8,64 + 6925: -8,60 + 6926: 2,64 + 6927: 2,60 + 6928: 2,55 + 6929: -8,55 + 6974: -51,15 + 6975: -46,15 + 6976: -46,23 + 6977: -51,23 + 6982: -51,19 + 6983: -46,19 + 7057: -5,5 + 7058: 3,5 + 7070: -1,5 + 7075: -22,38 + 7076: -22,41 + 7077: -22,44 + 7078: -22,47 + 7079: -22,51 + 7347: 33,-20 + 7386: 31,-22 + 7387: 35,-22 + 8148: -68,20 + 8212: -86,20 + 8222: -59,39 + 8223: -59,30 + 8238: -77,39 + 8242: -77,30 + 8823: -22,6 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 3210: -1,-38 - 3212: 20,-11 - 3225: 20,4 - 6631: 20,-6 - 6698: 16,-16 - 6699: 24,-16 - 7103: -1,-22 - 7106: -1,-17 - 7149: 8,-7 - 7150: 8,5 - 7151: -10,5 - 7152: -10,-7 - 7176: -22,-1 - 7177: -10,-1 - 7181: 8,-1 - 7185: -1,16 - 7191: 20,-1 - 7219: -22,4 - 7220: -22,9 - 7221: -22,12 - 7222: -22,16 - 7223: -22,21 - 7224: -1,21 - 7246: -1,26 - 7247: -1,32 - 7254: -1,41 - 7255: -1,38 - 7298: -8,62 - 7299: 2,62 - 7300: 2,57 - 7301: -8,57 - 7302: -8,53 - 7303: 2,53 - 7344: -51,21 - 7345: -46,21 - 7346: -51,13 - 7347: -46,13 - 7350: -51,17 - 7351: -46,17 - 7456: -22,36 - 7457: -22,40 - 7458: -22,43 - 7459: -22,46 - 7460: -22,49 - 7725: 33,-22 - 7767: 35,-20 - 7768: 31,-20 + 3015: 20,-11 + 3028: 20,4 + 6285: 20,-6 + 6352: 16,-16 + 6353: 24,-16 + 6751: -1,-22 + 6754: -1,-17 + 6797: 8,-7 + 6798: 8,5 + 6799: -10,5 + 6800: -10,-7 + 6823: -22,-1 + 6824: -10,-1 + 6828: 8,-1 + 6832: -1,16 + 6838: 20,-1 + 6864: -22,4 + 6865: -22,9 + 6866: -22,12 + 6867: -22,16 + 6868: -22,21 + 6869: -1,21 + 6891: -1,26 + 6892: -1,32 + 6899: -1,41 + 6900: -1,38 + 6932: -8,62 + 6933: 2,62 + 6934: 2,57 + 6935: -8,57 + 6936: -8,53 + 6937: 2,53 + 6978: -51,21 + 6979: -46,21 + 6980: -51,13 + 6981: -46,13 + 6984: -51,17 + 6985: -46,17 + 7080: -22,36 + 7081: -22,40 + 7082: -22,43 + 7083: -22,46 + 7084: -22,49 + 7348: 33,-22 + 7390: 35,-20 + 7391: 31,-20 + 8147: -68,16 + 8213: -86,16 + 8220: -59,26 + 8221: -59,34 + 8226: -77,26 + 8228: -77,34 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 3211: -2,-37 - 4545: 19,-15 - 6624: 3,22 - 6626: 3,-21 - 6627: 7,-21 - 6662: 13,-21 - 6674: 19,-21 - 6675: 25,-21 - 6676: 32,-21 - 6701: 23,-15 - 7078: -19,-30 - 7079: -14,-30 - 7080: -7,-30 - 7102: -2,-21 - 7112: -7,-11 - 7113: 3,-11 - 7114: -7,12 - 7115: 3,12 - 7170: -23,0 - 7171: -17,0 - 7172: -11,0 - 7192: 13,0 - 7193: 19,0 - 7196: -42,22 - 7197: -37,22 - 7198: -33,22 - 7199: -28,22 - 7200: -23,22 - 7201: -18,22 - 7202: -12,22 - 7203: -7,22 - 7204: -2,22 - 7256: -52,0 - 7262: 29,0 - 7263: 24,0 - 7264: 35,0 - 7276: 40,-2 - 7281: 40,0 - 7304: -5,50 - 7305: -5,67 - 7337: -52,22 - 7338: -52,14 - 7435: 2,4 - 7445: -2,4 - 7719: 51,-22 - 7720: 47,-22 - 7769: 34,-19 - 7784: 34,-23 + 4296: 19,-15 + 6278: 3,22 + 6280: 3,-21 + 6281: 7,-21 + 6316: 13,-21 + 6328: 19,-21 + 6329: 25,-21 + 6330: 32,-21 + 6355: 23,-15 + 6727: -19,-30 + 6728: -14,-30 + 6729: -7,-30 + 6750: -2,-21 + 6760: -7,-11 + 6761: 3,-11 + 6762: -7,12 + 6763: 3,12 + 6817: -23,0 + 6818: -17,0 + 6819: -11,0 + 6839: 13,0 + 6840: 19,0 + 6843: -42,22 + 6844: -37,22 + 6845: -33,22 + 6846: -28,22 + 6847: -23,22 + 6848: -18,22 + 6849: -7,22 + 6850: -2,22 + 6901: 29,0 + 6902: 24,0 + 6911: 40,-2 + 6916: 40,0 + 6938: -5,50 + 6939: -5,67 + 6971: -52,22 + 6972: -52,14 + 7059: 2,4 + 7069: -2,4 + 7342: 51,-22 + 7343: 47,-22 + 7392: 34,-19 + 7407: 34,-23 + 8141: -57,14 + 8144: -63,14 + 8164: -63,22 + 8166: -57,22 + 8192: -81,14 + 8193: -81,22 + 8194: -75,22 + 8195: -75,14 + 8200: -95,22 + 8203: -95,14 + 8204: -90,14 + 8205: -90,22 + 8331: -2,0 + 8846: -12,22 - node: color: '#DE3A3A95' id: BrickTileSteelInnerNe decals: - 3340: 8,51 + 3142: 8,51 - node: color: '#DE3A3A96' id: BrickTileSteelInnerNe decals: - 3454: 8,53 + 3256: 8,53 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 7368: -1,-37 - 7374: -1,-21 - 7375: -1,22 - 7382: 20,0 - 7383: -22,0 - 7408: -46,14 - 7409: -46,22 - 7410: 8,0 - 7439: -5,4 - 7450: -1,4 - 7731: 33,-21 - 7773: 31,-23 + 7004: -1,-21 + 7005: -1,22 + 7012: 20,0 + 7013: -22,0 + 7036: -46,14 + 7037: -46,22 + 7038: 8,0 + 7063: -5,4 + 7074: -1,4 + 7354: 33,-21 + 7396: 31,-23 + 7724: -55,-1 + 7908: -17,27 + 7966: -37,-1 + 7991: -46,-2 + 8015: -41,0 + 8093: -18,-3 - node: color: '#DE3A3A95' id: BrickTileSteelInnerNw decals: - 3318: 10,46 - 3337: 5,51 + 3120: 10,46 + 3139: 5,51 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 7367: -1,-37 - 7373: -1,-21 - 7376: -1,22 - 7381: 20,0 - 7384: -22,0 - 7388: -10,0 - 7406: -51,22 - 7407: -51,14 - 7440: 3,4 - 7449: -1,4 - 7729: 33,-21 - 7786: 35,-23 + 7003: -1,-21 + 7006: -1,22 + 7011: 20,0 + 7014: -22,0 + 7018: -10,0 + 7034: -51,22 + 7035: -51,14 + 7064: 3,4 + 7073: -1,4 + 7352: 33,-21 + 7409: 35,-23 + 7692: -53,-1 + 7738: -35,-1 + 7990: -38,-2 + 8014: -43,0 + 8092: -14,-3 - node: color: '#DE3A3A95' id: BrickTileSteelInnerSe decals: - 3335: 6,49 - 3336: 8,51 + 3137: 6,49 + 3138: 8,51 - node: color: '#DE3A3A96' id: BrickTileSteelInnerSe decals: - 3455: 8,53 + 3257: 8,53 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 6697: 16,-15 - 7370: -1,-37 - 7371: -1,-21 - 7378: -1,22 - 7379: 20,0 - 7385: -22,0 - 7393: -22,22 - 7404: -46,14 - 7405: -46,22 - 7411: 8,0 - 7730: 33,-21 - 7774: 31,-19 + 6351: 16,-15 + 7001: -1,-21 + 7008: -1,22 + 7009: 20,0 + 7015: -22,0 + 7023: -22,22 + 7032: -46,14 + 7033: -46,22 + 7039: 8,0 + 7353: 33,-21 + 7397: 31,-19 + 7725: -55,1 + 7907: -17,29 + 7965: -37,1 + 7989: -46,2 + 8012: -41,0 + 8129: -18,-1 + 8130: -14,-1 - node: color: '#DE3A3A95' id: BrickTileSteelInnerSw decals: - 3317: 10,46 - 3338: 5,51 - 3339: 6,49 + 3119: 10,46 + 3140: 5,51 + 3141: 6,49 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 6696: 24,-15 - 7369: -1,-37 - 7372: -1,-21 - 7377: -1,22 - 7380: 20,0 - 7386: -22,0 - 7387: -10,0 - 7392: -22,22 - 7402: -51,22 - 7403: -51,14 - 7732: 33,-21 - 7775: 35,-19 + 6350: 24,-15 + 7002: -1,-21 + 7007: -1,22 + 7010: 20,0 + 7016: -22,0 + 7017: -10,0 + 7022: -22,22 + 7030: -51,22 + 7031: -51,14 + 7355: 33,-21 + 7398: 35,-19 + 7693: -53,1 + 7737: -35,1 + 7988: -38,2 + 8013: -43,0 + 8127: -18,-1 + 8128: -14,-1 + - node: + color: '#9FED58AE' + id: BrickTileSteelLineE + decals: + 8292: -26,31 + 8293: -26,30 - node: color: '#DE3A3A95' id: BrickTileSteelLineE decals: - 3321: 13,46 - 3327: 8,50 - 3328: 8,52 + 3123: 13,46 + 3129: 8,50 + 3130: 8,52 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2805: 68,-45 - 2806: 71,-45 - 3214: 20,-10 - 3227: 20,5 - 4983: 74,-45 - 5240: 63,-45 - 6633: 20,-5 - 7107: -1,-16 - 7153: -10,-6 - 7154: 8,-6 - 7155: 8,7 - 7156: 8,6 - 7157: -10,7 - 7158: -10,6 - 7186: -1,17 - 7227: -22,17 - 7228: -22,5 - 7250: -1,33 - 7251: -1,27 - 7326: -8,63 - 7327: 2,63 - 7328: 2,59 - 7329: 2,58 - 7330: -8,58 - 7331: -8,59 - 7332: -8,54 - 7333: 2,54 - 7389: -10,0 - 7390: -10,0 - 7397: -46,18 - 7398: -51,22 - 7399: -51,18 - 7400: -51,14 - 7461: -22,50 - 7462: -22,37 - 8025: 56,-32 + 2621: 68,-45 + 2622: 71,-45 + 3017: 20,-10 + 3030: 20,5 + 4706: 74,-45 + 4941: 63,-45 + 6287: 20,-5 + 6755: -1,-16 + 6801: -10,-6 + 6802: 8,-6 + 6803: 8,7 + 6804: 8,6 + 6805: -10,7 + 6806: -10,6 + 6833: -1,17 + 6872: -22,17 + 6873: -22,5 + 6895: -1,33 + 6896: -1,27 + 6960: -8,63 + 6961: 2,63 + 6962: 2,59 + 6963: 2,58 + 6964: -8,58 + 6965: -8,59 + 6966: -8,54 + 6967: 2,54 + 7019: -10,0 + 7020: -10,0 + 7026: -51,22 + 7027: -51,18 + 7028: -51,14 + 7085: -22,50 + 7086: -22,37 + 7648: 56,-32 + 7688: -55,0 + 7906: -17,28 + 7964: -37,0 + 7976: -46,1 + 7977: -46,-1 + 7998: -46,0 + 8008: -41,-1 + 8009: -41,1 + 8088: -18,-2 + 8154: -68,17 + 8155: -68,18 + 8156: -68,19 + 8175: -97,19 + 8176: -97,18 + 8177: -97,17 + 8178: -98,17 + 8179: -98,18 + 8180: -98,19 + 8217: -86,17 + 8218: -86,18 + 8219: -86,19 + 8224: -59,29 + 8225: -59,28 + 8227: -59,35 + 8229: -59,36 + 8230: -59,37 + 8231: -59,38 + 8247: -77,38 + 8248: -77,37 + 8249: -77,36 + 8250: -77,27 + 8251: -77,35 + 8252: -77,28 + 8253: -77,29 + 8271: -35,30 + 8272: -35,29 + 8273: -35,28 + 8479: -59,27 + 8639: -46,18 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 2429: 42,-25 + 2282: 42,-25 - node: color: '#DE3A3A95' id: BrickTileSteelLineN decals: - 3319: 11,47 - 3320: 12,47 + 3121: 11,47 + 3122: 12,47 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 3458: 6,54 - 3459: 7,54 - 6512: 4,47 - 6513: 6,47 - 6514: 7,47 - 6522: 5,47 - 6523: 6,47 + 3260: 6,54 + 3261: 7,54 + 6166: 4,47 + 6167: 6,47 + 6168: 7,47 + 6176: 5,47 + 6177: 6,47 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2800: 64,-44 - 2801: 65,-44 - 2802: 66,-44 - 2803: 67,-44 - 2804: 72,-44 + 2616: 64,-44 + 2617: 65,-44 + 2618: 66,-44 + 2619: 67,-44 + 2620: 72,-44 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2793: 64,-46 - 2794: 65,-46 - 2795: 66,-46 - 2796: 67,-46 - 2797: 72,-46 - 4543: 20,-15 - 4984: 75,-46 - 4985: 76,-46 - 4986: 77,-46 - 4987: 78,-46 - 6201: 70,-46 - 6629: 4,-21 - 6665: 14,-21 - 6681: 26,-21 - 6682: 20,-21 - 7084: -18,-30 - 7085: -13,-30 - 7086: -12,-30 - 7087: -11,-30 - 7088: -6,-30 - 7111: 8,-21 - 7124: -6,12 - 7125: 4,12 - 7126: 4,-11 - 7127: -6,-11 - 7183: -16,0 - 7195: 14,0 - 7229: -41,22 - 7230: -36,22 - 7231: -32,22 - 7232: -27,22 - 7233: -17,22 - 7234: -6,22 - 7258: -51,0 - 7259: -50,0 - 7268: 25,0 - 7269: 30,0 - 7270: 31,0 - 7271: 36,0 - 7312: -4,67 - 7313: -3,67 - 7314: -2,67 - 7315: -2,50 - 7316: -3,50 - 7317: -4,50 - 7353: 4,22 - 7391: -22,22 - 7991: 56,-26 - 7992: 57,-26 - 8028: 59,-35 + 2609: 64,-46 + 2610: 65,-46 + 2611: 66,-46 + 2612: 67,-46 + 2613: 72,-46 + 4294: 20,-15 + 4707: 75,-46 + 4708: 76,-46 + 4709: 77,-46 + 4710: 78,-46 + 5867: 70,-46 + 6283: 4,-21 + 6319: 14,-21 + 6335: 26,-21 + 6336: 20,-21 + 6733: -18,-30 + 6734: -13,-30 + 6735: -12,-30 + 6736: -11,-30 + 6737: -6,-30 + 6759: 8,-21 + 6772: -6,12 + 6773: 4,12 + 6774: 4,-11 + 6775: -6,-11 + 6830: -16,0 + 6842: 14,0 + 6874: -41,22 + 6875: -36,22 + 6876: -32,22 + 6877: -27,22 + 6878: -17,22 + 6879: -6,22 + 6905: 25,0 + 6906: 30,0 + 6907: 31,0 + 6946: -4,67 + 6947: -3,67 + 6948: -2,67 + 6949: -2,50 + 6950: -3,50 + 6951: -4,50 + 6987: 4,22 + 7021: -22,22 + 7614: 56,-26 + 7615: 57,-26 + 7651: 59,-35 + 7690: -54,-1 + 7696: -36,-1 + 7787: 32,0 + 7788: 34,0 + 7789: 35,0 + 7856: 36,0 + 7905: -14,27 + 7927: -15,27 + 7928: -16,27 + 7984: -45,-2 + 7985: -44,-2 + 7986: -40,-2 + 7987: -39,-2 + 7992: -43,-2 + 7993: -42,-2 + 7994: -41,-2 + 8000: -45,0 + 8001: -44,0 + 8002: -40,0 + 8003: -39,0 + 8089: -17,-3 + 8090: -16,-3 + 8091: -15,-3 + 8143: -56,14 + 8159: -62,14 + 8161: -56,22 + 8163: -62,22 + 8188: -80,22 + 8189: -74,22 + 8190: -74,14 + 8191: -80,14 + 8333: -1,0 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 2436: 42,-28 + 2289: 42,-28 - node: color: '#DE3A3A95' id: BrickTileSteelLineS decals: - 3322: 11,45 - 3323: 12,45 - 3334: 7,49 + 3124: 11,45 + 3125: 12,45 + 3136: 7,49 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 4542: 20,-15 - 4979: 75,-44 - 4980: 76,-44 - 4981: 77,-44 - 4982: 78,-44 - 6202: 70,-44 - 6630: 4,-21 - 6664: 14,-21 - 6680: 26,-21 - 6683: 20,-21 - 7089: -6,-30 - 7090: -13,-30 - 7091: -12,-30 - 7092: -11,-30 - 7093: -18,-30 - 7110: 8,-21 - 7120: -6,-11 - 7121: 4,-11 - 7122: 4,12 - 7123: -6,12 - 7182: -16,0 - 7194: 14,0 - 7235: -6,22 - 7236: -17,22 - 7237: -27,22 - 7238: -32,22 - 7239: -36,22 - 7240: -41,22 - 7260: -51,0 - 7261: -50,0 - 7272: 25,0 - 7273: 30,0 - 7274: 31,0 - 7275: 36,0 - 7306: -4,67 - 7307: -3,67 - 7308: -2,67 - 7309: -4,50 - 7310: -3,50 - 7311: -2,50 - 7352: 4,22 - 7448: -1,4 - 7989: 57,-27 - 7990: 56,-27 - 8027: 59,-36 + 4293: 20,-15 + 4702: 75,-44 + 4703: 76,-44 + 4704: 77,-44 + 4705: 78,-44 + 5868: 70,-44 + 6284: 4,-21 + 6318: 14,-21 + 6334: 26,-21 + 6337: 20,-21 + 6738: -6,-30 + 6739: -13,-30 + 6740: -12,-30 + 6741: -11,-30 + 6742: -18,-30 + 6758: 8,-21 + 6768: -6,-11 + 6769: 4,-11 + 6770: 4,12 + 6771: -6,12 + 6829: -16,0 + 6841: 14,0 + 6880: -6,22 + 6881: -17,22 + 6882: -27,22 + 6883: -32,22 + 6884: -36,22 + 6885: -41,22 + 6908: 25,0 + 6909: 30,0 + 6910: 31,0 + 6940: -4,67 + 6941: -3,67 + 6942: -2,67 + 6943: -4,50 + 6944: -3,50 + 6945: -2,50 + 6986: 4,22 + 7072: -1,4 + 7612: 57,-27 + 7613: 56,-27 + 7650: 59,-36 + 7689: -54,1 + 7694: -36,1 + 7784: 32,0 + 7785: 34,0 + 7786: 35,0 + 7855: 36,0 + 7903: -14,29 + 7904: -16,29 + 7910: -15,29 + 7980: -45,2 + 7981: -44,2 + 7982: -40,2 + 7983: -39,2 + 7995: -43,2 + 7996: -41,2 + 7997: -42,2 + 8004: -45,0 + 8005: -44,0 + 8006: -40,0 + 8007: -39,0 + 8084: -17,-1 + 8085: -16,-1 + 8086: -15,-1 + 8142: -56,14 + 8158: -62,14 + 8173: -62,22 + 8174: -56,22 + 8181: -74,14 + 8182: -80,14 + 8185: -80,22 + 8187: -74,22 + 8274: -35,28 + 8332: -1,0 - node: color: '#DE3A3A95' id: BrickTileSteelLineW decals: - 3330: 5,53 - 3332: 5,52 - 3333: 5,50 + 3132: 5,53 + 3134: 5,52 + 3135: 5,50 - node: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 6511: 3,46 + 6165: 3,46 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 2809: 68,-45 - 2810: 71,-45 - 3215: 20,-10 - 3226: 20,5 - 4977: 74,-45 - 4978: 79,-45 - 6634: 20,-5 - 7108: -1,-16 - 7159: -10,7 - 7160: -10,6 - 7161: -10,-6 - 7162: 8,-6 - 7163: 8,6 - 7164: 8,7 - 7187: -1,17 - 7225: -22,5 - 7226: -22,17 - 7248: -1,33 - 7249: -1,27 - 7318: -8,54 - 7319: 2,54 - 7320: 2,58 - 7321: 2,59 - 7322: -8,58 - 7323: -8,59 - 7324: -8,63 - 7325: 2,63 - 7394: -46,22 - 7395: -46,14 - 7396: -46,18 - 7401: -51,18 - 7412: 8,0 - 7463: -22,37 - 7464: -22,50 - 8026: 55,-32 + 2625: 68,-45 + 2626: 71,-45 + 3018: 20,-10 + 3029: 20,5 + 4700: 74,-45 + 4701: 79,-45 + 6288: 20,-5 + 6756: -1,-16 + 6807: -10,7 + 6808: -10,6 + 6809: -10,-6 + 6810: 8,-6 + 6811: 8,6 + 6812: 8,7 + 6834: -1,17 + 6870: -22,5 + 6871: -22,17 + 6893: -1,33 + 6894: -1,27 + 6952: -8,54 + 6953: 2,54 + 6954: 2,58 + 6955: 2,59 + 6956: -8,58 + 6957: -8,59 + 6958: -8,63 + 6959: 2,63 + 7024: -46,22 + 7025: -46,14 + 7029: -51,18 + 7040: 8,0 + 7087: -22,37 + 7088: -22,50 + 7649: 55,-32 + 7691: -53,0 + 7695: -35,0 + 7978: -38,1 + 7979: -38,-1 + 7999: -38,0 + 8010: -43,-1 + 8011: -43,1 + 8087: -14,-2 + 8151: -68,17 + 8152: -68,18 + 8153: -68,19 + 8170: -98,17 + 8171: -98,18 + 8172: -98,19 + 8183: -97,19 + 8184: -97,18 + 8186: -97,17 + 8214: -86,17 + 8215: -86,18 + 8216: -86,19 + 8232: -59,38 + 8233: -59,37 + 8234: -59,36 + 8235: -59,35 + 8236: -59,28 + 8237: -59,29 + 8239: -77,27 + 8240: -77,28 + 8241: -77,29 + 8243: -77,35 + 8244: -77,36 + 8245: -77,37 + 8246: -77,38 + 8478: -59,27 + 8638: -46,18 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 62: -20,-62 - 63: -19,-62 + 57: -20,-62 + 58: -19,-62 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 6540: -42,-20 + 6194: -42,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 6227: 54,5 - 6235: 60,2 + 5884: 54,5 + 5892: 60,2 + 9156: -11,-1 + 9178: -23,-1 + 9192: 19,-1 + 9199: -2,21 + 9212: -2,-22 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 64: -16,-59 - 2263: 24,40 - 2277: 15,40 + 59: -16,-59 + 2116: 24,40 + 2130: 15,40 - node: color: '#60B2FFFF' id: BrickTileWhiteCornerNe decals: - 217: -16,-16 + 189: -16,-16 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 1738: -59,11 - 1836: -77,-4 - 2587: -25,33 - 2595: -25,29 - 2636: -25,50 - 4113: -21,53 + 1646: -59,11 + 2422: -25,33 + 2428: -25,29 + 2463: -25,50 + 3901: -21,53 + 8914: -8,50 + 8929: 1,66 + 9116: -52,21 + 9117: -52,13 + 9144: -23,21 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: - 2168: 72,0 - 2184: 76,0 - 2185: 76,-5 - 2201: 74,7 - 6953: 49,6 + 2021: 72,0 + 2037: 76,0 + 2038: 76,-5 + 2054: 74,7 + 6607: 49,6 + 9090: 39,-2 - node: color: '#D24646EF' id: BrickTileWhiteCornerNe decals: - 3015: -23,-25 + 2831: -23,-25 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 1989: -45,-34 - 2031: -41,-33 - 2043: -12,-16 - 3378: 1,47 - 6532: -41,-19 - 7499: -32,-3 - 7500: -30,-3 - 7591: -34,-16 - 7636: -41,-9 + 1842: -45,-34 + 1884: -41,-33 + 1896: -12,-16 + 3180: 1,47 + 6186: -41,-19 + 7122: -32,-3 + 7123: -30,-3 + 7214: -34,-16 + 7259: -41,-9 - node: color: '#DE3A3AC6' id: BrickTileWhiteCornerNe decals: - 4551: -48,-30 - 4562: -48,-38 - 4581: -48,-49 + 4302: -48,-30 + 4313: -48,-38 + 4332: -48,-49 - node: color: '#DE3A3AE2' id: BrickTileWhiteCornerNe decals: - 328: -21,-7 - 368: -4,-16 - 381: -25,-3 - 422: -4,-24 + 271: -21,-7 + 311: -4,-16 + 324: -25,-3 + 365: -4,-24 - node: color: '#E34646CE' id: BrickTileWhiteCornerNe decals: - 1969: -27,-20 + 1822: -27,-20 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 4682: -32,44 - 6905: 15,12 - 6917: 17,9 + 4426: -32,44 + 6559: 15,12 + 6571: 17,9 - node: color: '#FFB88BFF' id: BrickTileWhiteCornerNe decals: - 3910: -65,-10 + 3698: -65,-10 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 4532: 31,-13 - 6793: -7,-42 + 4283: 31,-13 + 6447: -7,-42 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 9153: -21,-1 + 9154: 0,21 + 9155: 21,-1 + 9157: 9,-1 + 9214: 0,-22 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 2276: 12,40 + 2129: 12,40 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 1739: -60,11 - 1743: -65,5 - 1759: -65,-3 - 1844: -91,-4 - 2637: -28,50 - 3179: -75,-4 - 4112: -23,53 - 4142: -9,68 - 6502: -3,47 + 1647: -60,11 + 1651: -65,5 + 1667: -65,-3 + 2464: -28,50 + 2991: -75,-4 + 3900: -23,53 + 3927: -9,68 + 6156: -3,47 + 8319: -30,33 + 8334: -30,27 + 8917: 2,50 + 8930: -7,66 + 9121: -45,21 + 9122: -45,13 + 9145: -21,21 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: - 979: 53,5 - 2183: 74,0 - 6952: 48,6 + 915: 53,5 + 2036: 74,0 + 6606: 48,6 + 9092: 42,-2 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 2003: -52,-30 - 2032: -43,-33 - 2041: -14,-16 - 6533: -43,-19 - 7498: -35,-3 - 7501: -31,-3 - 7535: -32,-16 - 7614: -45,-11 - 7637: -45,-9 + 1856: -52,-30 + 1885: -43,-33 + 1894: -14,-16 + 6187: -43,-19 + 7121: -35,-3 + 7124: -31,-3 + 7158: -32,-16 + 7237: -45,-11 + 7260: -45,-9 - node: color: '#DE3A3AC6' id: BrickTileWhiteCornerNw decals: - 4561: -50,-38 - 4584: -52,-34 + 4312: -50,-38 + 4335: -52,-34 - node: color: '#DE3A3AC7' id: BrickTileWhiteCornerNw decals: - 4657: -50,-49 + 4402: -50,-49 - node: color: '#DE3A3AE2' id: BrickTileWhiteCornerNw decals: - 326: -23,-7 - 382: -28,-3 - 421: -6,-24 + 269: -23,-7 + 325: -28,-3 + 364: -6,-24 - node: color: '#E34646CE' id: BrickTileWhiteCornerNw decals: - 1965: -25,-20 - 1975: -32,-20 - 2010: -10,-16 + 1818: -25,-20 + 1828: -32,-20 + 1863: -10,-16 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 6906: 13,12 - 6916: 11,9 + 6560: 13,12 + 6570: 11,9 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 3192: -24,38 - 4533: 30,-13 - 4537: 29,-14 - 6792: -9,-42 + 2998: -24,38 + 4284: 30,-13 + 4288: 29,-14 + 6446: -9,-42 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 9163: -11,1 + 9180: -23,1 + 9194: 19,1 + 9201: -2,23 + 9215: -2,-20 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 2262: 24,38 - 2274: 15,38 + 2115: 24,38 + 2127: 15,38 - node: color: '#60B2FFFF' id: BrickTileWhiteCornerSe decals: - 215: -16,-18 + 187: -16,-18 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 1861: -77,-12 - 2571: -26,25 - 2588: -25,32 - 2594: -25,26 - 2631: -21,34 - 2638: -25,48 - 3177: -59,-8 + 2411: -26,25 + 2423: -25,32 + 2427: -25,26 + 2458: -21,34 + 2465: -25,48 + 2989: -59,-8 + 8916: 1,51 + 8928: -8,67 + 9118: -52,15 + 9119: -52,23 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 2181: 76,-3 - 2182: 76,-7 - 2200: 74,2 - 6957: 51,3 + 2034: 76,-3 + 2035: 76,-7 + 2053: 74,2 + 6611: 51,3 + 9093: 39,0 - node: color: '#D24646EF' id: BrickTileWhiteCornerSe decals: - 3014: -23,-30 + 2830: -23,-30 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 1990: -45,-36 - 2002: -48,-32 - 2033: -41,-37 - 3373: 1,45 - 6535: -41,-21 - 7508: -30,-5 - 7511: -32,-7 - 7635: -41,-10 + 1843: -45,-36 + 1855: -48,-32 + 1886: -41,-37 + 3175: 1,45 + 6189: -41,-21 + 7131: -30,-5 + 7134: -32,-7 + 7258: -41,-10 - node: color: '#DE3A3AC6' id: BrickTileWhiteCornerSe decals: - 4571: -48,-47 - 4577: -48,-53 + 4322: -48,-47 + 4328: -48,-53 - node: color: '#DE3A3AE2' id: BrickTileWhiteCornerSe decals: - 367: -4,-18 - 423: -4,-27 + 310: -4,-18 + 366: -4,-27 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 4680: -33,40 - 4681: -32,42 - 6908: 15,11 - 6919: 17,3 + 4424: -33,40 + 4425: -32,42 + 6562: 15,11 + 6573: 17,3 - node: color: '#FFB88BFF' id: BrickTileWhiteCornerSe decals: - 3908: -65,-12 + 3696: -65,-12 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 4536: 31,-15 - 6794: -7,-43 + 4287: 31,-15 + 6448: -7,-43 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 9168: 9,1 + 9179: -21,1 + 9193: 21,1 + 9200: 0,23 + 9213: 0,-20 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 2258: 17,38 - 2275: 12,38 + 2111: 17,38 + 2128: 12,38 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 1744: -65,3 - 1822: -75,-12 - 2576: -30,25 - 2629: -23,34 - 2635: -28,48 - 3182: -91,-12 - 6492: -9,49 - 6503: -3,45 + 1652: -65,3 + 1711: -75,-12 + 2416: -30,25 + 2456: -23,34 + 2462: -28,48 + 6148: -9,49 + 6157: -3,45 + 8295: -30,29 + 8915: -7,51 + 8927: 2,67 + 9120: -45,23 + 9123: -45,15 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 6956: 48,3 + 6610: 48,3 + 9091: 42,0 - node: color: '#D24646EF' id: BrickTileWhiteCornerSw decals: - 3013: -25,-30 + 2829: -25,-30 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 2001: -52,-32 - 2028: -43,-37 - 2042: -14,-18 - 3933: 5,56 - 6534: -43,-21 - 7509: -31,-5 - 7510: -35,-7 - 7536: -32,-18 - 7593: -39,-17 - 7610: -45,-17 - 7634: -45,-10 + 1854: -52,-32 + 1881: -43,-37 + 1895: -14,-18 + 3721: 5,56 + 6188: -43,-21 + 7132: -31,-5 + 7133: -35,-7 + 7159: -32,-18 + 7216: -39,-17 + 7233: -45,-17 + 7257: -45,-10 - node: color: '#DE3A3AC6' id: BrickTileWhiteCornerSw decals: - 4560: -50,-47 - 4575: -50,-53 - 4583: -52,-35 - 4585: -50,-36 + 4311: -50,-47 + 4326: -50,-53 + 4334: -52,-35 + 4336: -50,-36 - node: color: '#DE3A3AE2' id: BrickTileWhiteCornerSw decals: - 383: -28,-5 - 424: -6,-27 + 326: -28,-5 + 367: -6,-27 - node: color: '#E34646CE' id: BrickTileWhiteCornerSw decals: - 1961: -25,-23 - 1974: -32,-22 - 2011: -10,-18 + 1814: -25,-23 + 1827: -32,-22 + 1864: -10,-18 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 6907: 13,11 - 6918: 11,3 + 6561: 13,11 + 6572: 11,3 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 3191: -24,35 - 4535: 29,-15 - 6791: -9,-43 + 2997: -24,35 + 4286: 29,-15 + 6445: -9,-43 - node: color: '#9FED5896' id: BrickTileWhiteEndE decals: - 3379: 0,46 + 3181: 0,46 + - node: + color: '#A4610696' + id: BrickTileWhiteEndE + decals: + 9088: 41,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteEndE decals: - 6525: 6,46 - 7617: -41,-11 + 6179: 6,46 + 7240: -41,-11 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: - 6786: -16,-41 - 6857: 9,-47 + 6440: -16,-41 + 6511: 9,-47 + 8439: 0,-37 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: - 4349: -49,4 + 4100: -49,4 - node: color: '#9FED58FC' id: BrickTileWhiteEndN decals: - 4633: -29,41 - 4634: -28,41 - 4635: -28,42 - 4636: -29,42 - 4637: -28,43 - 4638: -29,43 - 4639: -29,44 - 4640: -28,44 - 4641: -28,45 - 4642: -28,46 - 4643: -25,45 - 4644: -25,46 - 4645: -25,41 - 4646: -25,42 - 4647: -25,43 + 4378: -29,41 + 4379: -28,41 + 4380: -28,42 + 4381: -29,42 + 4382: -28,43 + 4383: -29,43 + 4384: -29,44 + 4385: -28,44 + 4386: -28,45 + 4387: -28,46 + 4388: -25,45 + 4389: -25,46 + 4390: -25,41 + 4391: -25,42 + 4392: -25,43 - node: color: '#A4610696' id: BrickTileWhiteEndN decals: - 6954: 51,6 + 6608: 51,6 + - node: + color: '#D4D4D4C7' + id: BrickTileWhiteEndN + decals: + 9206: -1,-20 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN decals: - 6850: 5,-45 + 6504: 5,-45 + 8441: -1,-36 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteEndN decals: - 4348: -51,5 + 4099: -51,5 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndS decals: - 6851: 5,-47 + 6505: 5,-47 + 8442: -1,-38 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteEndS decals: - 4347: -51,3 + 4098: -51,3 - node: color: '#9FED5896' id: BrickTileWhiteEndW decals: - 3391: -2,46 + 3193: -2,46 + - node: + color: '#A4610696' + id: BrickTileWhiteEndW + decals: + 9089: 40,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteEndW decals: - 6524: 5,46 + 6178: 5,46 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndW decals: - 6785: -19,-41 - 6856: 7,-47 + 6439: -19,-41 + 6510: 7,-47 + 8440: -2,-37 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 6230: 54,2 + 5887: 54,2 + - node: + color: '#79150096' + id: BrickTileWhiteInnerNe + decals: + 8072: -46,-2 + - node: + color: '#791500C3' + id: BrickTileWhiteInnerNe + decals: + 7916: -17,27 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe decals: - 2592: -26,29 - 2648: -30,33 + 2425: -26,29 + 7679: -59,1 + 7727: -55,-1 + 8318: -29,33 - node: color: '#A4610696' id: BrickTileWhiteInnerNe decals: - 2178: 72,-5 - 6961: 49,5 + 2031: 72,-5 + 6615: 49,5 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 6521: 8,46 - 7622: -43,-16 + 6175: 8,46 + 7245: -43,-16 - node: color: '#DE3A3AC7' id: BrickTileWhiteInnerNe decals: - 4525: -8,-25 - 4658: -49,-49 - 4663: -49,-38 - 4666: -49,-34 + 4276: -8,-25 + 4403: -49,-49 + 4407: -49,-38 + 4410: -49,-34 - node: color: '#DE3A3AE2' id: BrickTileWhiteInnerNe decals: - 341: -21,-20 - 344: -19,-20 - 396: -25,-17 + 284: -21,-20 + 287: -19,-20 + 339: -25,-17 - node: color: '#E34646CE' id: BrickTileWhiteInnerNe decals: - 1981: -27,-22 + 1834: -27,-22 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 6915: 14,9 + 6569: 14,9 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 8445: -1,-37 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 4355: -51,4 + 4106: -51,4 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 977: 7,-9 - 978: 6,-10 + 913: 7,-9 + 914: 6,-10 + - node: + color: '#79150096' + id: BrickTileWhiteInnerNw + decals: + 8071: -38,-2 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 1747: -60,5 - 1806: -65,-4 - 1831: -60,-8 - 2634: -23,38 - 2639: -28,49 - 3169: -61,-3 - 5745: -23,1 + 1655: -60,5 + 1695: -65,-4 + 1720: -60,-8 + 2461: -23,38 + 2466: -28,49 + 2981: -61,-3 + 5431: -23,1 + 7733: -53,-1 + 8317: -29,33 + 8336: -29,27 - node: color: '#A4610696' id: BrickTileWhiteInnerNw decals: - 6960: 51,5 + 6614: 51,5 - node: color: '#DE3A3AC7' id: BrickTileWhiteInnerNw decals: - 4659: -49,-49 - 4664: -49,-38 - 4665: -49,-34 - 4669: -52,-31 - 4675: -50,-45 + 4404: -49,-49 + 4408: -49,-38 + 4409: -49,-34 + 4413: -52,-31 + 4419: -50,-45 - node: color: '#DE3A3AE2' id: BrickTileWhiteInnerNw decals: - 343: -19,-20 - 401: -8,-20 - 420: -6,-25 + 286: -19,-20 + 344: -8,-20 + 363: -6,-25 - node: color: '#DE3A3AE4' id: BrickTileWhiteInnerNw decals: - 366: -23,-8 + 309: -23,-8 - node: color: '#E34646CE' id: BrickTileWhiteInnerNw decals: - 1964: -25,-22 - 1967: -23,-20 - 1982: -32,-21 + 1817: -25,-22 + 1820: -23,-20 + 1835: -32,-21 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 6914: 14,9 + 6568: 14,9 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 4539: 30,-14 + 4290: 30,-14 + 8444: -1,-37 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 4357: -51,4 + 4108: -51,4 - node: color: '#60B2FFFF' id: BrickTileWhiteInnerSe decals: - 223: -19,-18 + 195: -19,-18 + - node: + color: '#79150096' + id: BrickTileWhiteInnerSe + decals: + 8069: -46,2 + - node: + color: '#791500C3' + id: BrickTileWhiteInnerSe + decals: + 7915: -17,29 - node: color: '#9FED5896' id: BrickTileWhiteInnerSe decals: - 1754: -59,-1 - 2589: -26,32 - 2593: -26,26 - 2644: -26,48 - 3176: -64,-4 + 1662: -59,-1 + 2424: -26,32 + 2426: -26,26 + 2471: -26,48 + 2988: -64,-4 + 7726: -55,1 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 5743: -21,-1 - 6519: 6,45 - 6520: 8,46 - 7619: -43,-11 + 5429: -21,-1 + 6173: 6,45 + 6174: 8,46 + 7242: -43,-11 - node: color: '#DE3A3AC7' id: BrickTileWhiteInnerSe decals: - 4662: -49,-47 - 4668: -49,-36 - 4671: -49,-32 + 4406: -49,-47 + 4412: -49,-36 + 4415: -49,-32 - node: color: '#DE3A3AE2' id: BrickTileWhiteInnerSe decals: - 378: -8,-18 - 397: -25,-17 + 321: -8,-18 + 340: -25,-17 - node: color: '#E34646CE' id: BrickTileWhiteInnerSe decals: - 1979: -29,-22 + 1832: -29,-22 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 4710: -33,42 - 6913: 14,11 + 4437: -33,42 + 6567: 14,11 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 8446: -1,-37 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 4356: -51,4 + 4107: -51,4 + - node: + color: '#79150096' + id: BrickTileWhiteInnerSw + decals: + 8070: -38,2 - node: color: '#9FED5896' id: BrickTileWhiteInnerSw decals: - 1750: -61,3 - 1832: -60,-4 - 2630: -23,35 - 2640: -28,49 - 2645: -26,48 + 1658: -61,3 + 1721: -60,-4 + 2457: -23,35 + 2467: -28,49 + 2472: -26,48 + 7732: -53,1 + 8335: -29,29 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 5744: -23,-1 - 6518: 6,45 + 5430: -23,-1 + 6172: 6,45 - node: color: '#DE3A3AC6' id: BrickTileWhiteInnerSw decals: - 4586: -50,-35 + 4337: -50,-35 - node: color: '#DE3A3AC7' id: BrickTileWhiteInnerSw decals: - 4661: -49,-47 - 4667: -49,-36 - 4670: -49,-32 - 4673: -52,-31 - 4674: -50,-45 + 4405: -49,-47 + 4411: -49,-36 + 4414: -49,-32 + 4417: -52,-31 + 4418: -50,-45 - node: color: '#DE3A3AE2' id: BrickTileWhiteInnerSw decals: - 377: -8,-18 - 389: -25,-5 - 419: -6,-25 + 320: -8,-18 + 332: -25,-5 + 362: -6,-25 - node: color: '#DE3A3AE4' id: BrickTileWhiteInnerSw decals: - 365: -23,-8 + 308: -23,-8 - node: color: '#E34646CE' id: BrickTileWhiteInnerSw decals: - 1963: -25,-22 - 1978: -30,-22 - 1983: -32,-21 + 1816: -25,-22 + 1831: -30,-22 + 1836: -32,-21 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 6912: 14,11 + 6566: 14,11 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 8443: -1,-37 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 4354: -51,4 + 4105: -51,4 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 6228: 54,4 - 6229: 54,3 + 5885: 54,4 + 5886: 54,3 + 8345: -8,-11 + 8373: -11,5 + 8374: -11,6 + 8375: -11,7 + 8376: -11,8 + 8377: -8,12 + 8378: 2,12 + 8379: 7,8 + 8380: 7,7 + 8381: 7,6 + 8382: 7,5 + 8383: 7,-5 + 8384: 7,-6 + 8385: 7,-7 + 8386: -11,-7 + 8387: -11,-6 + 8388: -11,-5 + 8393: 2,-11 + 8408: -18,0 + 8422: 12,0 + 8433: -2,18 + 8434: -2,17 + 8435: -2,16 + 8436: -2,-17 + 8437: -2,-16 + 8438: -2,-15 + 9158: -12,0 + 9169: 7,1 + 9170: 7,0 + 9171: 7,-1 + 9181: -24,0 + 9188: 18,0 + 9205: -3,22 + 9217: -3,-21 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2273: 15,39 + 2126: 15,39 + 8714: -2,-32 + 8715: -2,-34 + 8716: -2,-30 + 8717: -2,-28 + 8718: -2,-26 + 8719: -2,-24 - node: color: '#60B2FFFF' id: BrickTileWhiteLineE decals: - 216: -16,-17 + 188: -16,-17 + - node: + color: '#79150096' + id: BrickTileWhiteLineE + decals: + 8052: -46,0 + 8053: -46,-1 + 8054: -46,1 + - node: + color: '#791500C3' + id: BrickTileWhiteLineE + decals: + 7914: -17,28 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1735: -59,7 - 1736: -59,8 - 1737: -59,10 - 1755: -59,-2 - 1756: -59,-3 - 1757: -59,-4 - 1758: -59,-6 - 1833: -77,-7 - 1834: -77,-6 - 1835: -77,-5 - 1862: -77,-11 - 1863: -77,-9 - 2590: -26,31 - 2591: -26,30 - 2597: -25,28 - 2599: -25,27 - 2607: -21,36 - 2608: -21,35 - 2609: -21,37 - 2610: -21,39 - 2611: -21,38 - 2612: -21,40 - 2613: -21,41 - 2614: -21,44 - 2615: -21,45 - 2616: -21,47 - 2617: -21,48 - 2618: -21,49 - 2649: -30,34 - 3174: -59,6 - 3180: -77,-10 - 3187: -21,42 - 3188: -21,43 - 3190: -21,46 - 4093: -37,57 - 4094: -37,58 - 4095: -37,59 - 4096: -37,60 - 4097: -37,62 - 4098: -37,61 - 4117: -21,52 - 4118: -21,51 - 4119: -21,50 - 4136: -59,-7 - 4628: -25,44 - 4651: -25,40 + 1643: -59,7 + 1644: -59,8 + 1645: -59,10 + 1663: -59,-2 + 1664: -59,-3 + 1665: -59,-4 + 1666: -59,-6 + 2430: -25,28 + 2432: -25,27 + 2434: -21,36 + 2435: -21,35 + 2436: -21,37 + 2437: -21,39 + 2438: -21,38 + 2439: -21,40 + 2440: -21,41 + 2441: -21,44 + 2442: -21,45 + 2443: -21,47 + 2444: -21,48 + 2445: -21,49 + 2986: -59,6 + 2993: -21,42 + 2994: -21,43 + 2996: -21,46 + 3881: -37,57 + 3882: -37,58 + 3883: -37,59 + 3884: -37,60 + 3885: -37,62 + 3886: -37,61 + 3905: -21,52 + 3906: -21,51 + 3907: -21,50 + 3924: -59,-7 + 4373: -25,44 + 4396: -25,40 + 7675: -59,5 + 7676: -59,4 + 7677: -59,3 + 7678: -59,2 + 7697: -55,0 + 8449: -78,26 + 8450: -78,27 + 8451: -78,28 + 8452: -78,29 + 8453: -78,30 + 8454: -78,34 + 8455: -78,35 + 8456: -78,36 + 8457: -78,37 + 8458: -78,38 + 8459: -78,39 + 8460: -60,39 + 8461: -60,38 + 8462: -60,37 + 8463: -60,36 + 8464: -60,35 + 8465: -60,34 + 8480: -60,26 + 8481: -60,27 + 8482: -60,28 + 8483: -60,29 + 8484: -60,30 + 8550: -99,20 + 8551: -99,19 + 8552: -99,18 + 8553: -99,17 + 8554: -99,16 + 8555: -96,22 + 8556: -96,14 + 8557: -91,14 + 8558: -91,22 + 8559: -88,22 + 8560: -88,14 + 8561: -86,14 + 8562: -86,22 + 8563: -82,14 + 8564: -82,22 + 8565: -76,22 + 8566: -76,14 + 8567: -70,14 + 8568: -68,14 + 8569: -69,16 + 8570: -69,17 + 8571: -69,18 + 8572: -69,19 + 8573: -69,20 + 8574: -70,22 + 8575: -68,22 + 8576: -64,14 + 8577: -64,22 + 8578: -58,22 + 8579: -52,17 + 8580: -52,18 + 8581: -52,19 + 8582: -58,14 + 8583: -47,17 + 8584: -47,18 + 8585: -47,19 + 8607: -87,16 + 8608: -87,17 + 8609: -87,18 + 8610: -87,19 + 8611: -87,20 + 8754: -35,0 + 8755: -33,0 + 8756: -31,0 + 8757: -29,0 + 8758: -27,0 + 8820: -23,4 + 8821: -23,5 + 8822: -23,6 + 8824: -23,9 + 8825: -23,10 + 8826: -23,12 + 8827: -23,13 + 8828: -23,16 + 8829: -23,17 + 8830: -23,18 + 8831: -29,22 + 8832: -34,22 + 8833: -38,22 + 8834: -43,22 + 8835: -19,22 + 8836: -15,22 + 8837: -13,22 + 8838: -10,22 + 8839: -8,22 + 8876: -23,51 + 8877: -23,50 + 8878: -23,49 + 8879: -23,46 + 8880: -23,47 + 8881: -23,43 + 8882: -23,44 + 8883: -23,40 + 8884: -23,41 + 8885: -23,36 + 8886: -23,37 + 8887: -23,38 + 8920: -9,51 + 8922: 0,50 + 8935: 0,67 + 8936: -9,66 + 8968: 1,53 + 8969: 1,54 + 8970: 1,55 + 8971: 1,57 + 8972: 1,58 + 8973: 1,59 + 8974: 1,60 + 8975: 1,62 + 8976: 1,63 + 8977: 1,64 + 8978: -6,67 + 8979: -9,64 + 8980: -9,63 + 8981: -9,62 + 8982: -9,60 + 8983: -9,59 + 8984: -9,58 + 8985: -9,57 + 8989: -9,53 + 8990: -9,54 + 8991: -9,55 + 9017: -6,50 + 9018: -2,41 + 9019: -2,42 + 9024: -2,38 + 9025: -2,39 + 9031: -2,32 + 9032: -2,33 + 9033: -2,34 + 9037: -2,26 + 9038: -2,27 + 9039: -2,28 + 9040: -2,30 + 9097: 23,0 + 9105: 28,0 + 9124: -47,15 + 9125: -47,14 + 9126: -47,13 + 9127: -47,21 + 9128: -47,22 + 9129: -47,23 + 9149: -24,22 - node: color: '#9FED58FF' id: BrickTileWhiteLineE decals: - 3855: -6,52 - 3856: -6,53 - 3857: -6,54 - 3858: -6,55 - 3859: -6,56 - 3860: -6,57 - 3873: -6,65 - 3874: -6,64 - 3875: -6,63 - 3876: -6,62 - 3877: -6,61 - 3878: -6,60 + 3647: -6,52 + 3648: -6,53 + 3649: -6,54 + 3650: -6,55 + 3651: -6,56 + 3652: -6,57 + 3665: -6,65 + 3666: -6,64 + 3667: -6,63 + 3668: -6,62 + 3669: -6,61 + 3670: -6,60 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 980: 60,1 - 2169: 72,-1 - 2170: 72,-2 - 2171: 72,-4 - 2172: 76,-2 - 2173: 76,-1 - 2174: 76,-6 - 2186: 64,-5 - 2187: 64,-3 - 2188: 64,-1 - 2189: 56,-5 - 2190: 56,-3 - 2191: 56,-1 - 2198: 74,6 - 2199: 74,4 - 6962: 51,5 + 916: 60,1 + 2022: 72,-1 + 2023: 72,-2 + 2024: 72,-4 + 2025: 76,-2 + 2026: 76,-1 + 2027: 76,-6 + 2039: 64,-5 + 2040: 64,-3 + 2041: 64,-1 + 2042: 56,-5 + 2043: 56,-3 + 2044: 56,-1 + 2051: 74,6 + 2052: 74,4 + 6616: 51,5 + 9087: 38,-1 - node: color: '#D24646EF' id: BrickTileWhiteLineE decals: - 3016: -23,-26 - 3017: -23,-27 - 3018: -23,-28 - 3019: -23,-29 + 2832: -23,-26 + 2833: -23,-27 + 2834: -23,-28 + 2835: -23,-29 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 968: 4,5 - 969: 4,4 - 970: 4,3 + 904: 4,5 + 905: 4,4 + 906: 4,3 + 8738: 2,-21 + 8739: 6,-21 + 9071: 19,-4 + 9072: 19,-5 + 9073: 19,-6 + 9074: 19,-11 + 9075: 19,-10 + 9076: 19,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 995: -21,-2 - 996: -21,-3 - 1991: -45,-35 - 2034: -41,-36 - 2035: -41,-35 - 2036: -41,-34 - 2046: -12,-17 - 3331: 3,53 - 3377: 1,46 - 3889: 3,60 - 3890: 3,59 - 3891: 3,58 - 3915: 6,61 - 3916: 6,62 - 3917: 6,63 - 3918: 6,65 - 3919: 6,64 - 3920: 6,66 - 3921: 6,67 - 5008: 3,52 - 5009: 3,57 - 5010: 3,56 - 5011: 3,55 - 5012: 3,54 - 5013: 3,68 - 5014: 3,67 - 5015: 3,66 - 5016: 3,65 - 5017: 3,64 - 5018: 3,63 - 5019: 3,62 - 5020: 3,61 - 6537: -41,-20 - 7502: -32,-5 - 7503: -32,-6 - 7504: -30,-4 - 7607: -41,-17 - 7620: -43,-12 - 7621: -43,-13 + 931: -21,-2 + 932: -21,-3 + 1844: -45,-35 + 1887: -41,-36 + 1888: -41,-35 + 1889: -41,-34 + 1899: -12,-17 + 3133: 3,53 + 3179: 1,46 + 3679: 3,60 + 3680: 3,59 + 3681: 3,58 + 3703: 6,61 + 3704: 6,62 + 3705: 6,63 + 3706: 6,65 + 3707: 6,64 + 3708: 6,66 + 3709: 6,67 + 4727: 3,52 + 4728: 3,57 + 4729: 3,56 + 4730: 3,55 + 4731: 3,54 + 4732: 3,68 + 4733: 3,67 + 4734: 3,66 + 4735: 3,65 + 4736: 3,64 + 4737: 3,63 + 4738: 3,62 + 4739: 3,61 + 6191: -41,-20 + 7125: -32,-5 + 7126: -32,-6 + 7127: -30,-4 + 7230: -41,-17 + 7243: -43,-12 + 7244: -43,-13 + 8686: -20,-30 + 8687: -15,-30 + 8688: -8,-30 - node: color: '#DE3A3AC6' id: BrickTileWhiteLineE decals: - 4552: -48,-31 - 4563: -48,-39 - 4564: -48,-40 - 4565: -48,-41 - 4566: -48,-42 - 4567: -48,-43 - 4568: -48,-44 - 4569: -48,-45 - 4570: -48,-46 - 4578: -48,-52 - 4579: -48,-51 - 4580: -48,-50 + 4303: -48,-31 + 4314: -48,-39 + 4315: -48,-40 + 4316: -48,-41 + 4317: -48,-42 + 4318: -48,-43 + 4319: -48,-44 + 4320: -48,-45 + 4321: -48,-46 + 4329: -48,-52 + 4330: -48,-51 + 4331: -48,-50 - node: color: '#DE3A3AE2' id: BrickTileWhiteLineE decals: - 329: -21,-8 - 330: -21,-9 - 331: -21,-10 - 332: -21,-11 - 333: -21,-12 - 334: -21,-13 - 335: -21,-14 - 336: -21,-15 - 337: -21,-16 - 338: -21,-17 - 339: -21,-18 - 340: -21,-19 - 361: -19,-19 - 363: -8,-19 - 373: -4,-17 - 390: -25,-4 - 391: -25,-5 - 392: -25,-6 - 402: -8,-20 - 403: -8,-21 - 404: -8,-22 - 405: -8,-23 - 406: -8,-24 - 425: -4,-26 - 426: -4,-25 + 272: -21,-8 + 273: -21,-9 + 274: -21,-10 + 275: -21,-11 + 276: -21,-12 + 277: -21,-13 + 278: -21,-14 + 279: -21,-15 + 280: -21,-16 + 281: -21,-17 + 282: -21,-18 + 283: -21,-19 + 304: -19,-19 + 306: -8,-19 + 316: -4,-17 + 333: -25,-4 + 334: -25,-5 + 335: -25,-6 + 345: -8,-20 + 346: -8,-21 + 347: -8,-22 + 348: -8,-23 + 349: -8,-24 + 368: -4,-26 + 369: -4,-25 - node: color: '#E34646CE' id: BrickTileWhiteLineE decals: - 1968: -27,-21 + 1821: -27,-21 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 4679: -33,41 - 4683: -32,43 - 6910: 14,10 - 6924: 17,8 - 6925: 17,7 - 6926: 17,6 - 6927: 17,5 - 6928: 17,4 + 4423: -33,41 + 4427: -32,43 + 6564: 14,10 + 6578: 17,8 + 6579: 17,7 + 6580: 17,6 + 6581: 17,5 + 6582: 17,4 + 9048: 2,22 + 9061: 19,6 + 9062: 19,5 + 9063: 19,4 - node: color: '#FFA500FF' id: BrickTileWhiteLineE decals: - 3847: 9,62 - 3848: 9,61 - 3850: 9,63 + 3639: 9,62 + 3640: 9,61 + 3642: 9,63 - node: color: '#FFB88BFF' id: BrickTileWhiteLineE decals: - 3909: -65,-11 + 3697: -65,-11 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 4531: 31,-14 - 6852: 5,-46 + 4282: 31,-14 + 6506: 5,-46 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 954: -5,1 - 955: -4,1 - 956: -3,1 - 957: -1,1 - 958: 2,1 - 959: 3,1 - 960: 1,1 - 962: -2,6 - 963: -1,6 - 964: 0,6 - 6231: 55,2 - 6232: 56,2 - 6233: 57,2 - 6234: 59,2 + 894: -5,1 + 895: -4,1 + 896: 2,1 + 897: 3,1 + 898: -2,6 + 899: -1,6 + 900: 0,6 + 5888: 55,2 + 5889: 56,2 + 5890: 57,2 + 5891: 59,2 + 8339: -7,-12 + 8340: -6,-12 + 8341: -5,-12 + 8360: -10,-8 + 8361: 8,-8 + 8362: 5,-12 + 8363: 4,-12 + 8364: 3,-12 + 8365: 8,4 + 8366: 3,11 + 8367: 4,11 + 8368: 5,11 + 8369: -7,11 + 8370: -6,11 + 8371: -5,11 + 8372: -10,4 + 8409: -17,-1 + 8410: -16,-1 + 8411: -15,-1 + 8415: 14,-1 + 8416: 13,-1 + 8417: 15,-1 + 8423: -1,-18 + 8424: -1,15 + 9164: -10,-2 + 9172: 8,-2 + 9184: -22,-2 + 9190: 20,-2 + 9202: -1,20 + 9216: -1,-23 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2264: 23,40 - 2265: 22,40 - 2266: 21,40 - 2267: 20,40 - 2268: 19,40 - 2269: 18,40 - 2270: 14,40 - 2271: 13,40 + 2117: 23,40 + 2118: 22,40 + 2119: 21,40 + 2120: 20,40 + 2121: 19,40 + 2122: 18,40 + 2123: 14,40 + 2124: 13,40 + 8720: -1,-25 + 8721: -1,-27 + 8722: -1,-29 + 8723: -1,-31 + 8724: -1,-33 + 8725: -1,-35 - node: color: '#60B2FFFF' id: BrickTileWhiteLineN decals: - 218: -17,-16 - 219: -18,-16 + 190: -17,-16 + 191: -18,-16 + - node: + color: '#79150096' + id: BrickTileWhiteLineN + decals: + 8055: -45,-2 + 8056: -44,-2 + 8057: -43,-2 + 8058: -42,-2 + 8059: -41,-2 + 8060: -40,-2 + 8061: -39,-2 + - node: + color: '#791500C3' + id: BrickTileWhiteLineN + decals: + 7913: -14,27 + 7929: -15,27 + 7930: -16,27 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1714: -54,1 - 1746: -61,5 - 1751: -62,-3 - 1752: -63,-3 - 1753: -64,-3 - 1807: -66,-4 - 1808: -67,-4 - 1809: -68,-4 - 1810: -69,-4 - 1811: -71,-4 - 1812: -70,-4 - 1813: -72,-4 - 1814: -73,-4 - 1815: -74,-4 - 1823: -63,-8 - 1824: -62,-8 - 1825: -61,-8 - 1837: -78,-4 - 1838: -80,-4 - 1839: -82,-4 - 1840: -83,-4 - 1841: -84,-4 - 1842: -86,-4 - 1843: -88,-4 - 2584: -29,33 - 2585: -27,33 - 2586: -26,33 - 2602: -28,33 - 2642: -26,50 - 2643: -27,50 - 3166: -48,1 - 3171: -64,5 - 3172: -63,5 - 3173: -62,5 - 3184: -90,-4 - 3185: -85,-4 - 3380: -1,46 - 3414: 0,45 - 3415: -1,45 - 3416: -2,45 - 3899: -1,68 - 3900: 0,68 - 3901: 1,68 - 3902: -8,68 - 3903: -7,68 - 4088: -36,56 - 4089: -35,56 - 4090: -34,56 - 4091: -32,56 - 4092: -31,56 - 4111: -22,53 - 4285: -33,56 - 4623: -31,44 - 4624: -30,44 - 4626: -34,44 - 4627: -27,46 - 7644: -18,67 - 7645: -19,67 - 7646: -20,67 + 1654: -61,5 + 1659: -62,-3 + 1660: -63,-3 + 1661: -64,-3 + 1696: -66,-4 + 1697: -67,-4 + 1698: -68,-4 + 1699: -69,-4 + 1700: -71,-4 + 1701: -70,-4 + 1702: -72,-4 + 1703: -73,-4 + 1704: -74,-4 + 1712: -63,-8 + 1713: -62,-8 + 1714: -61,-8 + 2420: -27,33 + 2421: -26,33 + 2469: -26,50 + 2470: -27,50 + 2983: -64,5 + 2984: -63,5 + 2985: -62,5 + 3182: -1,46 + 3216: 0,45 + 3217: -1,45 + 3218: -2,45 + 3687: -1,68 + 3688: 0,68 + 3689: 1,68 + 3690: -8,68 + 3691: -7,68 + 3876: -36,56 + 3877: -35,56 + 3878: -34,56 + 3879: -32,56 + 3880: -31,56 + 3899: -22,53 + 4046: -33,56 + 4368: -31,44 + 4369: -30,44 + 4371: -34,44 + 4372: -27,46 + 7267: -18,67 + 7268: -19,67 + 7269: -20,67 + 7672: -56,1 + 7673: -57,1 + 7674: -58,1 + 7729: -55,1 + 7731: -54,-1 + 8320: -28,33 + 8500: -77,25 + 8501: -59,25 + 8502: -59,33 + 8503: -77,33 + 8504: -98,15 + 8505: -97,15 + 8506: -90,13 + 8507: -89,13 + 8508: -95,13 + 8509: -94,13 + 8510: -87,13 + 8511: -85,13 + 8512: -86,15 + 8513: -89,21 + 8514: -90,21 + 8515: -95,21 + 8516: -94,21 + 8517: -87,21 + 8518: -85,21 + 8519: -81,21 + 8520: -80,21 + 8521: -79,21 + 8522: -81,13 + 8523: -80,13 + 8524: -79,13 + 8525: -75,13 + 8526: -74,13 + 8527: -73,13 + 8528: -75,21 + 8529: -74,21 + 8530: -73,21 + 8531: -69,13 + 8532: -67,13 + 8533: -68,15 + 8534: -69,21 + 8535: -67,21 + 8536: -63,21 + 8537: -62,21 + 8538: -61,21 + 8539: -63,13 + 8540: -62,13 + 8541: -61,13 + 8542: -57,13 + 8543: -56,13 + 8544: -55,13 + 8545: -57,21 + 8546: -56,21 + 8547: -55,21 + 8548: -51,16 + 8549: -46,16 + 8759: -34,-1 + 8760: -32,-1 + 8761: -30,-1 + 8762: -28,-1 + 8763: -26,-1 + 8778: -22,3 + 8779: -22,8 + 8780: -22,11 + 8781: -22,15 + 8782: -42,21 + 8783: -41,21 + 8784: -40,21 + 8785: -37,21 + 8786: -36,21 + 8787: -35,21 + 8788: -33,21 + 8789: -32,21 + 8790: -31,21 + 8791: -28,21 + 8792: -27,21 + 8793: -26,21 + 8840: -18,21 + 8841: -17,21 + 8842: -16,21 + 8843: -14,21 + 8844: -12,21 + 8845: -11,21 + 8847: -9,21 + 8848: -7,21 + 8849: -6,21 + 8850: -5,21 + 8871: -22,35 + 8872: -22,39 + 8873: -22,42 + 8874: -22,45 + 8875: -22,48 + 8900: -1,25 + 8901: -1,29 + 8902: -1,31 + 8903: -1,37 + 8904: -1,40 + 8905: -1,49 + 8906: -2,49 + 8907: -3,49 + 8908: -4,49 + 8909: -5,49 + 8911: -7,49 + 8923: 1,49 + 8933: -8,65 + 8934: 2,65 + 8957: -5,66 + 8958: -4,66 + 8959: -3,66 + 8960: -2,66 + 8961: -1,66 + 8962: 2,61 + 8963: -8,61 + 8964: -8,56 + 8965: 2,56 + 8966: 2,52 + 8967: -8,52 + 9099: 24,-1 + 9100: 25,-1 + 9101: 26,-1 + 9106: 29,-1 + 9107: 30,-1 + 9108: 31,-1 + 9109: 32,-1 + 9110: 33,-1 + 9111: 34,-1 + 9112: 35,-1 + 9113: 36,-1 + 9114: 37,-1 + 9136: -51,20 + 9137: -46,20 + 9138: -46,12 + 9139: -51,12 - node: cleanable: True color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1462: -74,23 + 1391: -74,23 - node: color: '#9FED58FC' id: BrickTileWhiteLineN decals: - 4648: -29,40 - 4649: -28,40 - 4650: -25,40 + 4393: -29,40 + 4394: -28,40 + 4395: -25,40 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 981: 61,0 - 982: 62,0 - 983: 65,0 - 984: 63,0 - 2161: 75,0 - 2162: 71,0 - 2163: 67,0 - 2164: 68,0 - 2165: 70,0 - 2166: 69,0 - 2167: 66,0 - 2175: 75,-5 - 2176: 74,-5 - 2177: 73,-5 - 2202: 73,7 - 2203: 72,7 - 2204: 71,7 - 2205: 70,7 - 2206: 69,7 - 6959: 50,5 + 917: 61,0 + 918: 62,0 + 919: 65,0 + 920: 63,0 + 2014: 75,0 + 2015: 71,0 + 2016: 67,0 + 2017: 68,0 + 2018: 70,0 + 2019: 69,0 + 2020: 66,0 + 2028: 75,-5 + 2029: 74,-5 + 2030: 73,-5 + 2055: 73,7 + 2056: 72,7 + 2057: 71,7 + 2058: 70,7 + 2059: 69,7 + 6613: 50,5 + 9085: 40,-3 + 9086: 41,-3 - node: color: '#CD0000FF' id: BrickTileWhiteLineN decals: - 204: -24,-17 + 176: -24,-17 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 2430: 40,-25 + 2283: 40,-25 + 8742: 3,-22 + 8743: 4,-22 + 8744: 5,-22 + 8745: 7,-22 + 8746: 8,-22 + 8747: 9,-22 + 9083: 20,-7 + 9084: 20,-12 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 945: -4,-20 - 946: -3,-20 - 971: -6,6 - 972: -5,6 - 973: -4,6 - 1992: -51,-34 - 1993: -48,-34 - 1994: -47,-34 - 1995: -46,-34 - 2005: -51,-30 - 2006: -50,-30 - 2007: -49,-30 - 2030: -42,-33 - 2044: -13,-16 - 3374: 0,47 - 3375: -1,47 - 3376: -2,47 - 3934: 7,60 - 3935: 8,60 - 3936: 9,60 - 6536: -42,-19 - 7514: -33,-3 - 7532: -29,-16 - 7533: -30,-16 - 7534: -31,-16 - 7594: -39,-16 - 7595: -38,-16 - 7596: -37,-16 - 7597: -36,-16 - 7598: -35,-16 - 7605: -41,-16 - 7606: -42,-16 - 7615: -44,-11 - 7616: -42,-11 - 7638: -44,-9 - 7639: -43,-9 - 7640: -42,-9 - 7705: -25,-25 + 885: -4,-20 + 886: -3,-20 + 907: -6,6 + 908: -5,6 + 909: -4,6 + 1845: -51,-34 + 1846: -48,-34 + 1847: -47,-34 + 1848: -46,-34 + 1858: -51,-30 + 1859: -50,-30 + 1860: -49,-30 + 1883: -42,-33 + 1897: -13,-16 + 3176: 0,47 + 3177: -1,47 + 3178: -2,47 + 3722: 7,60 + 3723: 8,60 + 3724: 9,60 + 6190: -42,-19 + 7137: -33,-3 + 7155: -29,-16 + 7156: -30,-16 + 7157: -31,-16 + 7217: -39,-16 + 7218: -38,-16 + 7219: -37,-16 + 7220: -36,-16 + 7221: -35,-16 + 7228: -41,-16 + 7229: -42,-16 + 7238: -44,-11 + 7239: -42,-11 + 7261: -44,-9 + 7262: -43,-9 + 7263: -42,-9 + 7328: -25,-25 + 8703: -5,-31 + 8704: -6,-31 + 8705: -7,-31 + 8706: -10,-31 + 8707: -11,-31 + 8708: -12,-31 + 8709: -13,-31 + 8710: -14,-31 + 8711: -19,-31 + 8712: -18,-31 + 8713: -17,-31 - node: color: '#DE3A3AC7' id: BrickTileWhiteLineN decals: - 4549: -50,-34 + 4300: -50,-34 - node: color: '#DE3A3AE0' id: BrickTileWhiteLineN decals: - 443: -16,-20 - 444: -17,-20 + 386: -16,-20 + 387: -17,-20 - node: color: '#DE3A3AE2' id: BrickTileWhiteLineN decals: - 327: -22,-7 - 342: -20,-20 - 345: -18,-20 - 356: -13,-20 - 357: -12,-20 - 358: -11,-20 - 359: -10,-20 - 360: -9,-20 - 369: -8,-16 - 370: -7,-16 - 371: -6,-16 - 372: -5,-16 - 379: -24,-8 - 384: -27,-3 - 385: -26,-3 - 394: -24,-17 - 417: -7,-25 - 427: -5,-24 - 430: -15,-20 + 270: -22,-7 + 285: -20,-20 + 288: -18,-20 + 299: -13,-20 + 300: -12,-20 + 301: -11,-20 + 302: -10,-20 + 303: -9,-20 + 312: -8,-16 + 313: -7,-16 + 314: -6,-16 + 315: -5,-16 + 322: -24,-8 + 327: -27,-3 + 328: -26,-3 + 337: -24,-17 + 360: -7,-25 + 370: -5,-24 + 373: -15,-20 - node: color: '#E34646CE' id: BrickTileWhiteLineN decals: - 1966: -24,-20 - 1970: -28,-20 - 1971: -29,-20 - 1972: -30,-20 - 1973: -31,-20 - 2000: -14,-20 - 2008: -9,-16 + 1819: -24,-20 + 1823: -28,-20 + 1824: -29,-20 + 1825: -30,-20 + 1826: -31,-20 + 1853: -14,-20 + 1861: -9,-16 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 965: 2,6 - 966: 3,6 - 967: 4,6 - 4684: -33,44 - 6909: 14,12 - 6920: 13,9 - 6921: 12,9 - 6922: 16,9 - 6923: 15,9 + 901: 2,6 + 902: 3,6 + 903: 4,6 + 4428: -33,44 + 6563: 14,12 + 6574: 13,9 + 6575: 12,9 + 6576: 16,9 + 6577: 15,9 + 9050: 3,21 + 9051: 4,21 + 9052: 5,21 + 9064: 20,3 - node: color: '#FFA500FF' id: BrickTileWhiteLineN decals: - 3839: 7,67 - 3840: 8,67 - 3841: 9,67 - 3851: 9,65 + 3631: 7,67 + 3632: 8,67 + 3633: 9,67 + 3643: 9,65 - node: color: '#FFB88BFF' id: BrickTileWhiteLineN decals: - 3911: -66,-10 - 3912: -68,-10 - 3913: -67,-10 - 3914: -69,-10 + 3699: -66,-10 + 3700: -68,-10 + 3701: -67,-10 + 3702: -69,-10 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 6787: -18,-41 - 6788: -17,-41 - 6795: -8,-42 - 6854: 8,-47 + 6441: -18,-41 + 6442: -17,-41 + 6449: -8,-42 + 6508: 8,-47 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 4352: -52,4 - 4353: -50,4 - 4366: -53,4 + 4103: -52,4 + 4104: -50,4 + 4117: -53,4 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 947: 3,-1 - 948: 2,-1 - 949: 1,-1 - 950: 0,-1 - 951: -2,-1 - 952: -3,-1 - 953: -5,-1 - 961: -1,3 + 887: 3,-1 + 888: 2,-1 + 889: 1,-1 + 890: 0,-1 + 891: -2,-1 + 892: -3,-1 + 893: -5,-1 + 8342: -7,-10 + 8343: -6,-10 + 8344: -5,-10 + 8347: 3,-10 + 8348: 4,-10 + 8349: 5,-10 + 8350: 5,13 + 8351: 4,13 + 8352: 3,13 + 8353: -5,13 + 8354: -6,13 + 8355: -7,13 + 8356: -10,9 + 8357: 8,9 + 8358: 8,-4 + 8359: -10,-4 + 8412: -17,1 + 8413: -16,1 + 8414: -15,1 + 8418: 13,1 + 8419: 14,1 + 8420: 15,1 + 8425: -1,19 + 8426: -1,-14 + 9165: -10,2 + 9173: 8,2 + 9182: -22,2 + 9191: 20,2 + 9204: -1,24 + 9211: -1,-19 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2259: 21,38 - 2260: 20,38 - 2261: 23,38 - 2272: 13,38 - 2281: 14,38 + 2112: 21,38 + 2113: 20,38 + 2114: 23,38 + 2125: 13,38 + 2134: 14,38 + 8733: -1,-33 + 8734: -1,-31 + 8735: -1,-29 + 8736: -1,-27 + 8737: -1,-25 - node: color: '#60B2FFFF' id: BrickTileWhiteLineS decals: - 220: -17,-18 - 221: -18,-18 + 192: -17,-18 + 193: -18,-18 + - node: + color: '#79150096' + id: BrickTileWhiteLineS + decals: + 8062: -45,2 + 8063: -44,2 + 8064: -43,2 + 8065: -42,2 + 8066: -41,2 + 8067: -40,2 + 8068: -39,2 + - node: + color: '#791500C3' + id: BrickTileWhiteLineS + decals: + 7909: -14,29 + 7911: -15,29 + 7912: -16,29 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 1000: -48,-1 - 1001: -51,-1 - 1002: -52,-1 - 1715: -54,-1 - 1716: -56,-1 - 1717: -57,-1 - 1718: -58,-1 - 1748: -63,3 - 1749: -62,3 - 1802: -60,-8 - 1803: -61,-8 - 1804: -62,-8 - 1805: -63,-8 - 1826: -63,-4 - 1827: -62,-4 - 1828: -61,-4 - 1851: -90,-12 - 1852: -89,-12 - 1853: -88,-12 - 1854: -87,-12 - 1855: -86,-12 - 1856: -83,-12 - 1857: -82,-12 - 1858: -81,-12 - 1859: -80,-12 - 1860: -79,-12 - 2572: -27,25 - 2574: -28,25 - 2575: -29,25 - 2641: -27,48 - 3167: -49,-1 - 3168: -55,-1 - 3170: -64,3 - 3178: -74,-12 - 3181: -78,-12 - 3183: -85,-12 - 3186: -22,34 - 3381: -1,46 - 3382: -2,47 - 3383: -1,47 - 3384: 0,47 - 3392: -2,47 - 4099: -36,63 - 4100: -35,63 - 4101: -34,63 - 4102: -33,63 - 4103: -32,63 - 4104: -31,63 - 4629: -26,40 - 4630: -27,40 - 4631: -30,40 - 4632: -32,40 - 4652: -29,40 - 4653: -28,40 - 4654: -25,40 - 6493: -8,49 - 6494: -7,49 - 6495: -6,49 - 6496: -5,49 - 6497: -4,49 - 6498: -3,49 + 1641: -57,-1 + 1642: -58,-1 + 1656: -63,3 + 1657: -62,3 + 1691: -60,-8 + 1692: -61,-8 + 1693: -62,-8 + 1694: -63,-8 + 1715: -63,-4 + 1716: -62,-4 + 1717: -61,-4 + 2412: -27,25 + 2414: -28,25 + 2415: -29,25 + 2468: -27,48 + 2982: -64,3 + 2990: -74,-12 + 2992: -22,34 + 3183: -1,46 + 3184: -2,47 + 3185: -1,47 + 3186: 0,47 + 3194: -2,47 + 3887: -36,63 + 3888: -35,63 + 3889: -34,63 + 3890: -33,63 + 3891: -32,63 + 3892: -31,63 + 4374: -26,40 + 4375: -27,40 + 4376: -30,40 + 4377: -32,40 + 4397: -29,40 + 4398: -28,40 + 4399: -25,40 + 6149: -8,49 + 6150: -6,49 + 6151: -5,49 + 6152: -4,49 + 6153: -3,49 + 7680: -56,-1 + 7728: -55,-1 + 7730: -54,1 + 8496: -77,31 + 8497: -77,40 + 8498: -59,40 + 8499: -59,31 + 8593: -98,21 + 8594: -97,21 + 8595: -95,23 + 8596: -94,23 + 8641: -51,20 + 8642: -46,20 + 8643: -57,15 + 8644: -56,15 + 8645: -55,15 + 8646: -63,15 + 8647: -62,15 + 8648: -61,15 + 8649: -63,23 + 8650: -62,23 + 8651: -61,23 + 8652: -57,23 + 8653: -56,23 + 8654: -55,23 + 8655: -69,23 + 8656: -67,23 + 8657: -68,21 + 8658: -69,15 + 8659: -67,15 + 8660: -75,15 + 8661: -74,15 + 8662: -73,15 + 8663: -81,15 + 8664: -80,15 + 8665: -79,15 + 8666: -73,23 + 8667: -74,23 + 8668: -75,23 + 8669: -81,23 + 8670: -80,23 + 8671: -79,23 + 8672: -86,21 + 8673: -87,23 + 8674: -85,23 + 8675: -90,23 + 8676: -89,23 + 8677: -90,15 + 8678: -89,15 + 8679: -87,15 + 8680: -85,15 + 8681: -95,15 + 8682: -94,15 + 8683: -95,23 + 8684: -94,23 + 8764: -34,1 + 8765: -32,1 + 8766: -30,1 + 8767: -28,1 + 8768: -26,1 + 8774: -22,7 + 8775: -22,11 + 8776: -22,14 + 8777: -22,19 + 8794: -26,23 + 8795: -27,23 + 8796: -28,23 + 8797: -33,23 + 8798: -32,23 + 8799: -31,23 + 8800: -37,23 + 8801: -36,23 + 8802: -35,23 + 8803: -42,23 + 8804: -41,23 + 8805: -40,23 + 8851: -18,23 + 8852: -17,23 + 8853: -16,23 + 8854: -14,23 + 8855: -12,23 + 8856: -11,23 + 8857: -9,23 + 8858: -7,23 + 8859: -6,23 + 8860: -5,23 + 8866: -22,39 + 8867: -22,42 + 8868: -22,45 + 8869: -22,48 + 8870: -22,52 + 8910: -7,49 + 8921: -8,52 + 8924: 2,52 + 8925: 1,68 + 8926: -7,68 + 8939: -5,68 + 8940: -3,68 + 8941: -4,68 + 8942: -2,68 + 8943: -1,68 + 8946: -8,65 + 8947: 2,65 + 8948: -8,61 + 8949: 2,61 + 8950: 2,56 + 8951: -8,56 + 8952: -5,51 + 8953: -4,51 + 8954: -3,51 + 8955: -2,51 + 8956: -1,51 + 9022: -1,43 + 9023: -1,40 + 9034: -1,35 + 9035: -1,31 + 9036: -1,29 + 9102: 24,1 + 9103: 25,1 + 9104: 26,1 + 9140: -51,16 + 9141: -46,16 + 9142: -46,24 + 9143: -51,24 + 9146: -23,23 + 9147: -22,23 + 9148: -21,23 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 989: 54,-7 - 990: 55,-7 - 991: 56,-7 - 992: 57,-7 - 993: 60,-8 - 2159: 75,-7 - 2160: 75,-3 - 2207: 70,2 - 2208: 73,2 - 2209: 68,2 - 2210: 67,2 - 2221: 69,2 - 2552: 59,-7 - 3205: 71,2 - 3206: 72,2 - 6241: 74,-3 - 6958: 49,3 + 925: 54,-7 + 926: 55,-7 + 927: 56,-7 + 928: 57,-7 + 929: 60,-8 + 2012: 75,-7 + 2013: 75,-3 + 2060: 70,2 + 2061: 73,2 + 2062: 68,2 + 2063: 67,2 + 2074: 69,2 + 2402: 59,-7 + 3011: 71,2 + 3012: 72,2 + 5898: 74,-3 + 6612: 49,3 + 9094: 40,1 + 9095: 41,1 - node: color: '#CD0000FF' id: BrickTileWhiteLineS decals: - 205: -24,-17 + 177: -24,-17 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2435: 41,-28 + 2288: 41,-28 + 8748: 3,-20 + 8749: 4,-20 + 8750: 5,-20 + 8751: 7,-20 + 8752: 8,-20 + 8753: 9,-20 + 9069: 20,-3 + 9070: 20,-8 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 943: -3,-22 - 944: -4,-22 - 1996: -46,-36 - 1997: -47,-36 - 1998: -48,-36 - 1999: -51,-36 - 2004: -50,-32 - 2029: -42,-37 - 2045: -13,-18 - 3398: 0,45 - 3399: -1,45 - 3400: -2,45 - 5006: 1,49 - 6515: 4,45 - 6516: 5,45 - 6517: 7,45 - 6538: -42,-21 - 7512: -34,-7 - 7513: -33,-7 - 7537: -31,-18 - 7538: -30,-18 - 7592: -34,-17 - 7599: -38,-17 - 7600: -37,-17 - 7601: -36,-17 - 7602: -35,-17 - 7608: -42,-17 - 7609: -43,-17 - 7618: -42,-11 - 7632: -42,-10 - 7633: -44,-10 + 883: -3,-22 + 884: -4,-22 + 1849: -46,-36 + 1850: -47,-36 + 1851: -48,-36 + 1852: -51,-36 + 1857: -50,-32 + 1882: -42,-37 + 1898: -13,-18 + 3200: 0,45 + 3201: -1,45 + 3202: -2,45 + 4725: 1,49 + 6169: 4,45 + 6170: 5,45 + 6171: 7,45 + 6192: -42,-21 + 7135: -34,-7 + 7136: -33,-7 + 7160: -31,-18 + 7161: -30,-18 + 7215: -34,-17 + 7222: -38,-17 + 7223: -37,-17 + 7224: -36,-17 + 7225: -35,-17 + 7231: -42,-17 + 7232: -43,-17 + 7241: -42,-11 + 7255: -42,-10 + 7256: -44,-10 + 8692: -19,-29 + 8693: -18,-29 + 8694: -17,-29 + 8695: -14,-29 + 8696: -13,-29 + 8697: -12,-29 + 8698: -11,-29 + 8699: -10,-29 + 8700: -7,-29 + 8701: -6,-29 + 8702: -5,-29 - node: color: '#DE3A3AC6' id: BrickTileWhiteLineS decals: - 4550: -51,-32 - 4576: -49,-53 - 4582: -51,-35 + 4301: -51,-32 + 4327: -49,-53 + 4333: -51,-35 - node: color: '#DE3A3AC7' id: BrickTileWhiteLineS decals: - 4520: -8,-25 + 4271: -8,-25 - node: color: '#DE3A3AE2' id: BrickTileWhiteLineS decals: - 374: -5,-18 - 375: -6,-18 - 376: -7,-18 - 380: -24,-8 - 387: -27,-5 - 388: -26,-5 - 395: -24,-17 - 408: -10,-23 - 409: -12,-23 - 410: -13,-23 - 411: -15,-23 - 412: -16,-23 - 413: -19,-23 - 414: -18,-23 - 415: -21,-23 - 416: -22,-23 - 418: -7,-25 - 428: -5,-27 + 317: -5,-18 + 318: -6,-18 + 319: -7,-18 + 323: -24,-8 + 330: -27,-5 + 331: -26,-5 + 338: -24,-17 + 351: -10,-23 + 352: -12,-23 + 353: -13,-23 + 354: -15,-23 + 355: -16,-23 + 356: -19,-23 + 357: -18,-23 + 358: -21,-23 + 359: -22,-23 + 361: -7,-25 + 371: -5,-27 - node: color: '#E34646CE' id: BrickTileWhiteLineS decals: - 1960: -23,-23 - 1976: -31,-22 - 1977: -28,-22 - 1980: -27,-22 - 2009: -9,-18 + 1813: -23,-23 + 1829: -31,-22 + 1830: -28,-22 + 1833: -27,-22 + 1862: -9,-18 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 6934: 12,3 - 6935: 13,3 - 6936: 15,3 - 6937: 16,3 + 6588: 12,3 + 6589: 13,3 + 6590: 15,3 + 6591: 16,3 + 9045: 3,23 + 9046: 4,23 + 9047: 5,23 + 9068: 20,7 - node: color: '#FFA500FF' id: BrickTileWhiteLineS decals: - 3842: 7,66 - 3843: 8,66 - 3844: 9,66 + 3634: 7,66 + 3635: 8,66 + 3636: 9,66 - node: color: '#FFB88BFF' id: BrickTileWhiteLineS decals: - 3904: -68,-12 - 3905: -67,-12 - 3906: -66,-12 - 3907: -69,-12 + 3692: -68,-12 + 3693: -67,-12 + 3694: -66,-12 + 3695: -69,-12 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 4534: 30,-15 - 6789: -18,-41 - 6790: -17,-41 - 6796: -8,-43 - 6855: 8,-47 + 4285: 30,-15 + 6443: -18,-41 + 6444: -17,-41 + 6450: -8,-43 + 6509: 8,-47 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 4350: -50,4 - 4351: -52,4 - 4367: -53,4 + 4101: -50,4 + 4102: -52,4 + 4118: -53,4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 8346: -4,-11 + 8389: -9,-7 + 8390: -9,-6 + 8391: -9,-5 + 8392: 6,-11 + 8394: 9,-7 + 8395: 9,-6 + 8396: 9,-5 + 8397: 9,5 + 8398: 9,6 + 8399: 9,7 + 8400: 9,8 + 8401: 6,12 + 8402: -4,12 + 8403: -9,8 + 8404: -9,7 + 8405: -9,6 + 8406: -9,5 + 8407: -14,0 + 8421: 16,0 + 8427: 0,-17 + 8428: 0,-16 + 8429: 0,-15 + 8430: 0,16 + 8431: 0,17 + 8432: 0,18 + 9159: -9,0 + 9160: -9,-1 + 9162: -9,1 + 9176: 10,0 + 9183: -20,0 + 9189: 22,0 + 9203: 1,22 + 9218: 1,-21 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 974: -6,5 - 975: -6,4 - 976: -6,3 - 2257: 17,39 - 2280: 12,39 + 910: -6,5 + 911: -6,4 + 912: -6,3 + 2110: 17,39 + 2133: 12,39 + 8727: 0,-34 + 8728: 0,-32 + 8729: 0,-30 + 8730: 0,-28 + 8731: 0,-26 + 8732: 0,-24 - node: color: '#60B2FFFF' id: BrickTileWhiteLineW decals: - 222: -19,-18 - 224: -19,-17 + 194: -19,-18 + 196: -19,-17 + - node: + color: '#79150096' + id: BrickTileWhiteLineW + decals: + 8049: -38,-1 + 8050: -38,0 + 8051: -38,1 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1740: -60,8 - 1741: -60,7 - 1742: -60,6 - 1745: -65,4 - 1816: -75,-5 - 1817: -75,-6 - 1818: -75,-7 - 1819: -75,-9 - 1820: -75,-10 - 1821: -75,-11 - 1829: -60,-6 - 1830: -60,-5 - 1845: -91,-5 - 1846: -91,-6 - 1847: -91,-7 - 1848: -91,-9 - 1849: -91,-10 - 1850: -91,-11 - 2577: -30,26 - 2578: -30,27 - 2579: -30,28 - 2580: -30,29 - 2581: -30,30 - 2582: -30,31 - 2583: -30,32 - 2619: -23,49 - 2620: -23,48 - 2621: -23,47 - 2622: -23,45 - 2623: -23,46 - 2624: -23,43 - 2625: -23,42 - 2626: -23,41 - 2627: -23,40 - 2628: -23,39 - 2646: -30,34 - 2647: -30,33 - 3175: -60,10 - 3189: -23,44 - 3243: -9,51 - 3244: -9,52 - 3245: -9,53 - 3879: -9,54 - 3880: -9,55 - 3881: -9,56 - 3882: -9,57 - 3883: -9,58 - 3884: -9,59 - 3885: -9,60 - 3886: -9,63 - 3887: -9,64 - 3888: -9,65 - 3892: -9,61 - 4083: -61,-2 - 4084: -61,-1 - 4085: -61,0 - 4086: -61,1 - 4087: -61,2 - 4105: -30,62 - 4106: -30,61 - 4107: -30,60 - 4108: -30,59 - 4109: -30,58 - 4110: -30,57 - 4114: -23,50 - 4115: -23,51 - 4116: -23,52 - 4137: -60,-7 - 4140: -9,66 - 4141: -9,67 - 4607: -32,35 - 4625: -31,44 - 6504: -3,46 + 1648: -60,8 + 1649: -60,7 + 1650: -60,6 + 1653: -65,4 + 1705: -75,-5 + 1706: -75,-6 + 1707: -75,-7 + 1708: -75,-9 + 1709: -75,-10 + 1710: -75,-11 + 1718: -60,-6 + 1719: -60,-5 + 2417: -30,30 + 2418: -30,31 + 2419: -30,32 + 2446: -23,49 + 2447: -23,48 + 2448: -23,47 + 2449: -23,45 + 2450: -23,46 + 2451: -23,43 + 2452: -23,42 + 2453: -23,41 + 2454: -23,40 + 2455: -23,39 + 2987: -60,10 + 2995: -23,44 + 3046: -9,51 + 3047: -9,52 + 3671: -9,54 + 3672: -9,55 + 3673: -9,56 + 3674: -9,58 + 3675: -9,59 + 3676: -9,63 + 3677: -9,64 + 3678: -9,65 + 3682: -9,61 + 3871: -61,-2 + 3872: -61,-1 + 3873: -61,0 + 3874: -61,1 + 3875: -61,2 + 3893: -30,62 + 3894: -30,61 + 3895: -30,60 + 3896: -30,59 + 3897: -30,58 + 3898: -30,57 + 3902: -23,50 + 3903: -23,51 + 3904: -23,52 + 3925: -60,-7 + 3926: -9,67 + 4370: -31,44 + 6158: -3,46 + 7734: -53,0 + 8294: -30,26 + 8466: -58,39 + 8467: -58,38 + 8468: -58,37 + 8469: -58,37 + 8470: -58,36 + 8471: -58,35 + 8472: -58,34 + 8473: -58,30 + 8474: -58,29 + 8475: -58,28 + 8476: -58,27 + 8477: -58,26 + 8485: -76,39 + 8486: -76,38 + 8487: -76,37 + 8488: -76,36 + 8489: -76,35 + 8490: -76,34 + 8491: -76,26 + 8492: -76,27 + 8493: -76,28 + 8494: -76,29 + 8495: -76,30 + 8586: -96,16 + 8587: -96,17 + 8588: -96,18 + 8589: -96,19 + 8590: -96,20 + 8597: -93,22 + 8598: -93,14 + 8599: -88,14 + 8600: -86,14 + 8601: -84,14 + 8602: -85,16 + 8603: -85,17 + 8604: -85,18 + 8605: -85,19 + 8606: -85,20 + 8612: -88,22 + 8613: -86,22 + 8614: -84,22 + 8615: -78,22 + 8616: -78,14 + 8617: -72,22 + 8618: -72,14 + 8619: -68,14 + 8620: -66,14 + 8621: -67,16 + 8622: -67,17 + 8623: -67,18 + 8624: -67,19 + 8625: -67,20 + 8626: -68,22 + 8627: -66,22 + 8628: -60,22 + 8629: -60,14 + 8630: -54,14 + 8631: -54,22 + 8632: -50,17 + 8633: -50,18 + 8634: -50,19 + 8635: -45,17 + 8636: -45,18 + 8637: -45,19 + 8769: -33,0 + 8770: -31,0 + 8771: -29,0 + 8772: -27,0 + 8773: -25,0 + 8806: -39,22 + 8807: -34,22 + 8808: -30,22 + 8809: -25,22 + 8810: -21,18 + 8811: -21,17 + 8812: -21,16 + 8813: -21,13 + 8814: -21,12 + 8815: -21,9 + 8816: -21,10 + 8817: -21,4 + 8818: -21,5 + 8819: -21,6 + 8861: -15,22 + 8862: -13,22 + 8863: -10,22 + 8864: -8,22 + 8865: -4,22 + 8888: -21,36 + 8889: -21,37 + 8890: -21,38 + 8891: -21,40 + 8892: -21,41 + 8893: -21,43 + 8894: -21,44 + 8895: -21,46 + 8896: -21,47 + 8897: -21,49 + 8898: -21,50 + 8899: -21,51 + 8918: -6,50 + 8919: 3,51 + 8931: 3,66 + 8932: -6,67 + 8937: -9,66 + 8986: -9,57 + 8987: -9,60 + 8988: -9,53 + 8995: -7,53 + 8996: -7,54 + 8997: -7,55 + 8998: 3,53 + 8999: 3,54 + 9000: 3,55 + 9001: -7,57 + 9002: -7,58 + 9003: -7,59 + 9004: -7,60 + 9005: 3,57 + 9006: 3,58 + 9007: 3,59 + 9008: 3,60 + 9009: 3,62 + 9010: 3,63 + 9011: 3,64 + 9012: -7,62 + 9013: -7,63 + 9014: -7,64 + 9015: 0,67 + 9016: 0,50 + 9020: 0,41 + 9021: 0,42 + 9026: 0,38 + 9027: 0,39 + 9028: 0,34 + 9029: 0,33 + 9030: 0,32 + 9041: 0,30 + 9042: 0,28 + 9043: 0,27 + 9044: 0,26 + 9098: 27,0 + 9115: 38,0 + 9130: -50,21 + 9131: -50,22 + 9132: -50,23 + 9133: -50,13 + 9134: -50,14 + 9135: -50,15 + 9150: -20,22 - node: color: '#9FED58FF' id: BrickTileWhiteLineW decals: - 3861: 1,57 - 3862: 1,56 - 3863: 1,55 - 3864: 1,54 - 3865: 1,53 - 3866: 1,52 - 3867: 1,60 - 3868: 1,61 - 3869: 1,62 - 3870: 1,65 - 3871: 1,64 - 3872: 1,63 + 3653: 1,57 + 3654: 1,56 + 3655: 1,55 + 3656: 1,54 + 3657: 1,53 + 3658: 1,52 + 3659: 1,60 + 3660: 1,61 + 3661: 1,62 + 3662: 1,65 + 3663: 1,64 + 3664: 1,63 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 985: 53,3 - 986: 53,2 - 987: 53,1 - 988: 53,0 - 2179: 74,-1 - 2180: 74,-2 - 2192: 63,-1 - 2193: 63,-3 - 2194: 63,-5 - 2195: 71,-5 - 2196: 71,-3 - 2197: 71,-1 - 6955: 48,5 - 7010: 53,-3 - 7077: 53,-2 + 921: 53,3 + 922: 53,2 + 923: 53,1 + 924: 53,0 + 2032: 74,-1 + 2033: 74,-2 + 2045: 63,-1 + 2046: 63,-3 + 2047: 63,-5 + 2048: 71,-5 + 2049: 71,-3 + 2050: 71,-1 + 6609: 48,5 + 6660: 53,-3 + 6726: 53,-2 + 9096: 43,-1 - node: color: '#D24646EF' id: BrickTileWhiteLineW decals: - 3020: -25,-26 - 3021: -25,-27 + 2836: -25,-26 + 2837: -25,-27 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 2432: 39,-26 - 2433: 39,-27 + 2285: 39,-26 + 2286: 39,-27 + 8740: 10,-21 + 8741: 6,-21 + 9077: 21,-4 + 9078: 21,-5 + 9079: 21,-6 + 9080: 21,-11 + 9081: 21,-10 + 9082: 21,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 997: -23,-2 - 2037: -43,-36 - 2038: -43,-35 - 2039: -43,-34 - 2047: -14,-17 - 3922: 5,67 - 3923: 5,66 - 3924: 5,65 - 3925: 5,64 - 3926: 5,63 - 3927: 5,62 - 3928: 5,61 - 3929: 5,60 - 3930: 5,59 - 3931: 5,58 - 3932: 5,57 - 6539: -43,-20 - 7007: 53,-7 - 7008: 53,-5 - 7009: 53,-4 - 7505: -35,-4 - 7506: -35,-5 - 7507: -35,-6 - 7611: -45,-15 - 7612: -45,-14 - 7613: -45,-13 - 7708: -25,-28 + 933: -23,-2 + 1890: -43,-36 + 1891: -43,-35 + 1892: -43,-34 + 1900: -14,-17 + 3710: 5,67 + 3711: 5,66 + 3712: 5,65 + 3713: 5,64 + 3714: 5,63 + 3715: 5,62 + 3716: 5,61 + 3717: 5,60 + 3718: 5,59 + 3719: 5,58 + 3720: 5,57 + 6193: -43,-20 + 6657: 53,-7 + 6658: 53,-5 + 6659: 53,-4 + 7128: -35,-4 + 7129: -35,-5 + 7130: -35,-6 + 7234: -45,-15 + 7235: -45,-14 + 7236: -45,-13 + 7331: -25,-28 + 8689: -16,-30 + 8690: -9,-30 + 8691: -4,-30 - node: color: '#DE3A3AC6' id: BrickTileWhiteLineW decals: - 4553: -50,-39 - 4554: -50,-40 - 4555: -50,-41 - 4556: -50,-42 - 4557: -50,-44 - 4558: -50,-43 - 4559: -50,-46 - 4572: -50,-50 - 4573: -50,-51 - 4574: -50,-52 + 4304: -50,-39 + 4305: -50,-40 + 4306: -50,-41 + 4307: -50,-42 + 4308: -50,-44 + 4309: -50,-43 + 4310: -50,-46 + 4323: -50,-50 + 4324: -50,-51 + 4325: -50,-52 - node: color: '#DE3A3AC7' id: BrickTileWhiteLineW decals: - 4521: -9,-25 + 4272: -9,-25 - node: color: '#DE3A3AE2' id: BrickTileWhiteLineW decals: - 346: -14,-19 - 362: -19,-19 - 364: -8,-19 - 386: -28,-4 - 393: -25,-6 - 407: -9,-24 - 429: -6,-26 + 289: -14,-19 + 305: -19,-19 + 307: -8,-19 + 329: -28,-4 + 336: -25,-6 + 350: -9,-24 + 372: -6,-26 - node: color: '#DE3A3AE4' id: BrickTileWhiteLineW decals: - 347: -23,-9 - 348: -23,-10 - 349: -23,-11 - 350: -23,-12 - 351: -23,-14 - 352: -23,-15 - 353: -23,-16 - 354: -23,-18 - 355: -23,-19 + 290: -23,-9 + 291: -23,-10 + 292: -23,-11 + 293: -23,-12 + 294: -23,-14 + 295: -23,-15 + 296: -23,-16 + 297: -23,-18 + 298: -23,-19 - node: color: '#E34646CE' id: BrickTileWhiteLineW decals: - 1962: -25,-21 - 2012: -10,-17 + 1815: -25,-21 + 1865: -10,-17 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 4622: -32,40 - 4693: -34,43 - 4694: -34,41 - 6911: 14,10 - 6929: 11,8 - 6930: 11,7 - 6931: 11,6 - 6932: 11,5 - 6933: 11,4 + 4367: -32,40 + 4429: -34,43 + 4430: -34,41 + 6565: 14,10 + 6583: 11,8 + 6584: 11,7 + 6585: 11,6 + 6586: 11,5 + 6587: 11,4 + 9049: 6,22 + 9065: 21,4 + 9066: 21,5 + 9067: 21,6 - node: color: '#FFA500FF' id: BrickTileWhiteLineW decals: - 3845: 8,62 - 3846: 8,61 - 3849: 7,64 + 3637: 8,62 + 3638: 8,61 + 3641: 7,64 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 2632: -24,37 - 2633: -24,36 - 6853: 5,-46 + 2459: -24,37 + 2460: -24,36 + 6507: 5,-46 - node: color: '#FFFFFFFF' id: BushAOne decals: - 1388: -29.469578,-51.01724 - 2957: -9,-34 - 4184: -42.883698,51.85592 + 1317: -29.469578,-51.01724 + 2773: -9,-34 + 3947: -42.883698,51.85592 + 7879: 6.952326,-67.01093 - node: color: '#FFFFFFFF' id: BushAThree decals: - 4185: -50.00909,50.010246 - 4785: 58.07965,-9.958606 + 3948: -50.00909,50.010246 + 4508: 58.07965,-9.958606 - node: color: '#FFFFFFFF' id: BushATwo decals: - 182: -11.451739,18.308088 - 192: -36.717087,33.018204 - 289: 4.4311695,-30.942404 - 2955: -8,-33 + 154: -11.451739,18.308088 + 164: -36.717087,33.018204 + 232: 4.4311695,-30.942404 + 2771: -8,-33 - node: color: '#FFFFFFFF' id: BushCOne decals: - 179: -14.01243,13.852696 - 183: -7.8685637,15.023532 - 194: -37.675014,31.960892 - 195: -38.6189,27.011755 - 196: -33.475502,10.01921 - 270: 13.513805,-9.04923 - 316: 19.245619,-38.898838 - 1378: -29.292074,-65.92565 - 1457: -40.10394,34.165638 - 1875: -56.02164,-12.841251 - 1881: -69.63793,-16.7884 - 4183: -47.03259,51.115013 - 4780: 47.43348,-17.627878 + 151: -14.01243,13.852696 + 155: -7.8685637,15.023532 + 166: -37.675014,31.960892 + 167: -38.6189,27.011755 + 168: -33.475502,10.01921 + 213: 13.513805,-9.04923 + 259: 19.245619,-38.898838 + 1307: -29.292074,-65.92565 + 1386: -40.10394,34.165638 + 1729: -56.02164,-12.841251 + 1735: -69.63793,-16.7884 + 3946: -47.03259,51.115013 + 4503: 47.43348,-17.627878 + 7878: 10.084318,-66.99592 + 8137: -13.212278,-12.606168 - node: color: '#FFFFFFFF' id: BushCThree decals: - 193: -42.066586,25.49292 - 286: 8.002057,-31.05696 - 290: 13.781928,-30.01949 - 1392: -26.026142,-61.418507 - 1459: -37.070595,36.472115 - 1984: -70.0174,-24.089645 - 1986: -55.0828,-24.120956 - 2024: -96,-23 - 2676: -31.072529,51.65369 - 4148: -89.76434,-9.116179 - 4748: 55,-51 - 4749: 59,-53 - 4750: 70,-48 + 165: -42.066586,25.49292 + 229: 8.002057,-31.05696 + 233: 13.781928,-30.01949 + 1321: -26.026142,-61.418507 + 1388: -37.070595,36.472115 + 1837: -70.0174,-24.089645 + 1839: -55.0828,-24.120956 + 1877: -96,-23 + 2493: -31.072529,51.65369 + 4471: 55,-51 + 4472: 59,-53 + 4473: 70,-48 - node: color: '#FFFFFFFF' id: BushCTwo decals: - 180: -11.312197,14.305866 - 181: -11.046572,16.946493 - 269: 15.037233,-9.133544 - 313: 21.985521,-36.839016 - 647: -16.806883,-57.021297 - 1363: 44.01449,9.976801 - 1381: -25.554935,-65.97253 - 2025: -86,-28 - 2256: 16.94355,40.121414 - 2493: -81.14412,-25.940325 - 2494: -93.94905,-22.289558 - 2496: -39.218174,31.748444 - 2498: -30.660412,-66.088745 - 3478: 49.120117,-43.05056 - 4751: 72,-37 - 4783: 56.50155,-15.026384 + 152: -11.312197,14.305866 + 153: -11.046572,16.946493 + 212: 15.037233,-9.133544 + 256: 21.985521,-36.839016 + 590: -16.806883,-57.021297 + 1292: 44.01449,9.976801 + 1310: -25.554935,-65.97253 + 1878: -86,-28 + 2109: 16.94355,40.121414 + 2343: -81.14412,-25.940325 + 2344: -93.94905,-22.289558 + 2346: -39.218174,31.748444 + 2348: -30.660412,-66.088745 + 3280: 49.120117,-43.05056 + 4474: 72,-37 + 4506: 56.50155,-15.026384 - node: color: '#FFFFFFFF' id: BushDOne decals: - 1379: -25.336185,-62.7694 - 1877: -72.71451,-14.765793 - 3678: 31.958843,-49.32064 + 1308: -25.336185,-62.7694 + 1731: -72.71451,-14.765793 + 3470: 31.958843,-49.32064 + 7707: -55.717155,2.4547331 - node: color: '#FFFFFFFF' id: BushDThree decals: - 1380: -24.78931,-62.910027 - 1876: -73.23013,-14.375168 + 1309: -24.78931,-62.910027 + 1730: -73.23013,-14.375168 + 7708: -55.42028,2.548483 - node: color: '#FFFFFFFF' id: BushDTwo decals: - 4128: -59.691895,-8.329788 - 4149: -85.84246,-9.288055 + 3916: -59.691895,-8.329788 - node: color: '#FFFFFFFF' id: Busha1 decals: - 173: -37.76244,10.056003 - 177: -14.020037,46.649075 - 185: -12.072199,17.736418 - 234: -42.776886,12.919985 - 1390: -26.561981,-54.0737 - 1391: -26.530731,-55.954853 - 2673: -30.703804,52.564796 - 2675: -18.591827,52.58128 - 3675: 31.958843,-45.961266 - 3789: -3.374849,56.19121 - 4123: -59,-10 - 4124: -63,-12 - 4784: 52.939026,-10.536732 + 145: -37.76244,10.056003 + 149: -14.020037,46.649075 + 157: -12.072199,17.736418 + 202: -42.776886,12.919985 + 1319: -26.561981,-54.0737 + 1320: -26.530731,-55.954853 + 2490: -30.703804,52.564796 + 2492: -18.591827,52.58128 + 3467: 31.958843,-45.961266 + 3581: -3.374849,56.19121 + 3911: -59,-10 + 3912: -63,-12 + 4507: 52.939026,-10.536732 - node: color: '#FFFFFFFF' id: Busha2 decals: - 1988: -67.92765,-24.179083 - 3676: 33.458847,-48.289387 - 4753: 74,-25 - 4754: 74,-24 - 4781: 52.08973,-17.581003 + 1841: -67.92765,-24.179083 + 3468: 33.458847,-48.289387 + 4476: 74,-25 + 4477: 74,-24 + 4504: 52.08973,-17.581003 + 7870: 24.463541,-36.959465 - node: color: '#FFFFFFFF' id: Busha3 decals: - 2956: -7,-34 + 2772: -7,-34 + 7877: 13.943693,-66.90217 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 287: 5.048932,-29.15071 - 321: 20.761244,-42.1122 - 645: -16.538874,-56.196735 - 646: -18.585749,-56.040485 - 2495: -40.20255,31.935944 - 2500: 18.254955,-30.101465 - 3790: -3.4452083,53.684074 + 230: 5.048932,-29.15071 + 264: 20.761244,-42.1122 + 588: -16.538874,-56.196735 + 589: -18.585749,-56.040485 + 2345: -40.20255,31.935944 + 2350: 18.254955,-30.101465 + 3582: -3.4452083,53.684074 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 175: 43.442547,-11.057015 - 191: -34.342087,33.03383 - 199: 33.42746,6.0713215 - 203: 32.968758,-9.062783 - 288: 12.964976,-32.575108 - 299: 18.659796,-32.913776 - 1361: 43.002182,8.311773 - 1362: 45.995632,10.566605 - 1458: -41.088314,33.493763 + 147: 43.442547,-11.057015 + 163: -34.342087,33.03383 + 171: 33.42746,6.0713215 + 175: 32.968758,-9.062783 + 231: 12.964976,-32.575108 + 242: 18.659796,-32.913776 + 1290: 43.002182,8.311773 + 1291: 45.995632,10.566605 + 1387: -41.088314,33.493763 + 7868: 27.569895,-37.36589 + 8254: -75.637375,16.9936 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 268: -13.692439,-11.484555 - 298: 20.748043,-30.038776 - 1377: -32.198326,-66.06628 - 1874: -56.974766,-12.231876 - 2255: 24.021675,39.058914 - 2499: 8.042632,-28.251831 - 2677: -26.416283,52.653687 + 241: 20.748043,-30.038776 + 1306: -32.198326,-66.06628 + 1728: -56.974766,-12.231876 + 2108: 24.021675,39.058914 + 2349: 8.042632,-28.251831 + 2494: -26.416283,52.653687 + 8255: -76.48202,16.9152 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 184: -6.498577,15.101657 - 291: 10.594428,-30.035114 - 1389: -26.120043,-53.455257 - 2026: -73,-18 - 3674: 30.036972,-49.32064 - 3791: -0.7110017,56.58193 - 4755: 67,-21 + 156: -6.498577,15.101657 + 234: 10.594428,-30.035114 + 1318: -26.120043,-53.455257 + 1879: -73,-18 + 3466: 30.036972,-49.32064 + 3583: -0.7110017,56.58193 + 4478: 67,-21 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 178: -30.990105,47.441864 - 1883: -61.511253,-14.040881 - 1884: -63.65657,-13.915881 - 4752: 70,-28 + 150: -30.990105,47.441864 + 1737: -61.511253,-14.040881 + 1738: -63.65657,-13.915881 + 4475: 70,-28 + 8138: -12.102902,-12.903043 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 174: -40.722523,10.024753 - 2048: -72.143105,-22.909624 - 4789: 71.811775,-21.146107 + 146: -40.722523,10.024753 + 1901: -72.143105,-22.909624 + 4512: 71.811775,-21.146107 + 7869: 27.910202,-40.501694 + 8256: -77.45468,17.055798 - node: color: '#FFFFFFFF' id: Bushd1 decals: - 2027: -60.02429,-25.221315 - 2497: 46.385242,4.9781556 - 3677: 34.318222,-48.242516 - 4918: 1.5858963,-25.121092 - 4919: 6.007771,-25.105467 + 1880: -60.02429,-25.221315 + 2347: 46.385242,4.9781556 + 3469: 34.318222,-48.242516 + 4641: 1.5858963,-25.121092 + 4642: 6.007771,-25.105467 + 7704: -55.88903,2.7047331 - node: color: '#FFFFFFFF' id: Bushd2 decals: - 267: -9.498163,-13.953305 + 211: -9.498163,-13.953305 + 7703: -56.38903,3.001608 + 7710: -55.060905,3.0016077 + - node: + color: '#FFFFFFFF' + id: Bushd3 + decals: + 7705: -55.373405,2.8297331 + 7711: -54.9984,2.735983 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 1778: -78.25681,-6.0130177 + 7706: -56.32653,2.4859831 + 7709: -56.826527,2.8453581 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushe1 + decals: + 8261: -36.453526,26.612803 + 8262: -35.797276,26.3628 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 756: -48.023796,14.122482 + 698: -48.023796,14.122482 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 4816: 2.184616,-17.78197 + 4539: 2.184616,-17.78197 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 658: -30.060707,-59.640705 - 4127: -62.879726,-8.375349 - 4813: 1.5283661,-16.203842 - 4814: 4.981491,-17.360094 - 4815: 4.262741,-18.703844 + 601: -30.060707,-59.640705 + 3915: -62.879726,-8.375349 + 4536: 1.5283661,-16.203842 + 4537: 4.981491,-17.360094 + 4538: 4.262741,-18.703844 - node: color: '#9FED58FF' id: Bushf1 decals: - 4146: -63.149513,-8.643906 + 3930: -63.149513,-8.643906 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 655: 6.11073,-17.194168 - 656: -30.056541,-59.33808 - 1775: -79.652885,-5.5113792 + 598: 6.11073,-17.194168 + 599: -30.056541,-59.33808 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 4129: -62.56089,-8.540124 - 4134: -62.137997,-8.565116 - 4861: 5.9658604,-16.351116 - 4908: 1.2733965,-23.949215 + 3917: -62.56089,-8.540124 + 3922: -62.137997,-8.565116 + 4584: 5.9658604,-16.351116 + 4631: 1.2733965,-23.949215 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 186: 5.643323,-18.543146 - 4130: -60.21097,-8.567886 - 4593: -33.026947,35.90598 + 158: 5.643323,-18.543146 + 3918: -60.21097,-8.567886 + 4339: -33.026947,35.90598 - node: angle: 0.7853981633974483 rad color: '#FFFFFFFF' id: Bushf3 decals: - 4135: -60.424084,-8.870661 + 3923: -60.424084,-8.870661 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 2049: -93.08861,-18.12887 - 2051: -88.250656,-23.204586 + 1902: -93.08861,-18.12887 + 1904: -88.250656,-23.204586 + 8077: -38.94635,1.0070183 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 3787: -2.7424366,53.90177 + 3579: -2.7424366,53.90177 + 8076: -39.33697,1.1476433 - node: color: '#FFFFFFFF' id: Bushg3 decals: - 759: -48.207165,22.855616 - 1460: -37.789345,35.86274 - 2050: -92.714905,-23.97289 + 701: -48.207165,22.855616 + 1389: -37.789345,35.86274 + 1903: -92.714905,-23.97289 + 8078: -44.399475,-0.8836063 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushg3 + decals: + 8260: -36.297276,26.8003 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 265: 5.076132,-17.262033 + 209: 5.076132,-17.262033 + - node: + color: '#FFD5FFD0' + id: Bushi1 + decals: + 9334: -87.95039,-11.517203 + 9339: -77.37998,-4.8534536 + 9340: -81.80994,-3.7236223 + 9341: -79.90712,-8.579406 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 648: -22.624771,-56.967094 - 757: -48.571747,21.147282 - 1393: -30.30723,-57.059185 - 1456: -43.057064,33.931263 - 1461: -37.914345,37.905872 - 1788: -59.326077,-9.930442 - 4125: -58.89571,-8.46195 - 4788: 62.93246,-23.927298 - 4909: 1.8671465,-26.08984 - 4915: 4.5077715,-24.855465 - 4916: 2.5858965,-25.183592 - 4917: 2.3046463,-23.183592 + 591: -22.624771,-56.967094 + 699: -48.571747,21.147282 + 1322: -30.30723,-57.059185 + 1385: -43.057064,33.931263 + 1390: -37.914345,37.905872 + 1677: -59.326077,-9.930442 + 3913: -58.89571,-8.46195 + 4511: 62.93246,-23.927298 + 4632: 1.8671465,-26.08984 + 4638: 4.5077715,-24.855465 + 4639: 2.5858965,-25.183592 + 4640: 2.3046463,-23.183592 + 7702: -57.65465,4.0641084 + 8257: -48.161804,13.042029 + - node: + color: '#FFD5FFD0' + id: Bushi2 + decals: + 9331: -88.98759,-6.0680447 + 9336: -90.728874,-9.111422 + 9337: -80.78086,-9.116584 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 228: -54,17 - 653: 2.999348,-24.913628 - 654: 4.8118486,-16.11008 - 755: -48.825882,13.487066 - 1789: -58.9042,-9.352317 - 1878: -66.01293,-16.776505 - 1882: -57.12063,-13.767191 - 3785: -4.7546477,56.756912 - 3786: -4.772231,53.966396 - 4131: -62.95085,-10.896537 - 4132: -62.436966,-11.097925 - 4852: 3.3877358,-17.30424 + 200: -54,17 + 596: 2.999348,-24.913628 + 597: 4.8118486,-16.11008 + 697: -48.825882,13.487066 + 1678: -58.9042,-9.352317 + 1732: -66.01293,-16.776505 + 1736: -57.12063,-13.767191 + 3577: -4.7546477,56.756912 + 3578: -4.772231,53.966396 + 3919: -62.95085,-10.896537 + 3920: -62.436966,-11.097925 + 4575: 3.3877358,-17.30424 + 7700: -57.73278,4.454734 + 7701: -57.279655,4.2672334 + - node: + color: '#FFD5FFD0' + id: Bushi3 + decals: + 9332: -83.995514,-5.1160207 + 9335: -85.930855,-12.067247 + 9338: -76.88941,-5.0467143 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 1305: -27.973866,-46.808517 + 1323: -24.440557,-65.853485 + 1838: -56.122093,-22.73031 + 7699: -57.3734,4.6422334 - node: + cleanable: True color: '#FFFFFFFF' id: Bushi3 decals: - 1376: -27.973866,-46.808517 - 1394: -24.440557,-65.853485 - 1985: -56.122093,-22.73031 - 1987: -45.77058,-23.91312 + 8259: -36.266026,26.534676 + 8263: -34.3334,30.194542 + - node: + color: '#FFD5FFD0' + id: Bushi4 + decals: + 9333: -83.16509,-11.865271 + 9342: -79.993004,-8.906455 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 266: 3.7636318,-16.286268 - 1395: -23.909307,-66.15036 - 1396: -23.924932,-65.74411 - 1879: -65.65356,-17.182755 - 4126: -59.343624,-8.764033 - 4133: -63.12435,-11.283774 - 4591: -34.91236,36.90598 - 4756: 64,-53 + 210: 3.7636318,-16.286268 + 1324: -23.909307,-66.15036 + 1325: -23.924932,-65.74411 + 1733: -65.65356,-17.182755 + 3914: -59.343624,-8.764033 + 3921: -63.12435,-11.283774 + 4338: -34.91236,36.90598 + 4479: 64,-53 + 9364: -47.15755,-24.05202 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 816: -63.67908,18.16475 + 756: -63.67908,18.16475 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 227: -54,19 - 1774: -82.405205,-5.7140646 - 4596: -29.907341,38.98711 - 4787: 62.854336,-23.192924 - 4848: 5.4814863,-18.179241 + 199: -54,19 + 4342: -29.907341,38.98711 + 4510: 62.854336,-23.192924 + 4571: 5.4814863,-18.179241 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1469: -91.338936,19.053886 - 1773: -82.717705,-6.5734396 - 1779: -62.31045,-5.305588 - 1880: -69.82543,-14.085277 + 1398: -91.338936,19.053886 + 1668: -62.31045,-5.305588 + 1734: -69.82543,-14.085277 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 657: -27.935707,-61.47531 - 1467: -74.8092,18.012127 - 1468: -92.28845,17.266336 - 1787: -62.701077,-6.696066 - 2674: -14.09183,52.675026 - 4147: -62.840637,-8.85393 - 4150: -90.170586,-10.67868 - 4786: 64.50794,-10.801302 - 4790: 69.218025,-23.00548 - 4845: 4.590861,-16.194866 - 4910: 3.242146,-23.917967 - 4911: 3.8827715,-25.77734 + 600: -27.935707,-61.47531 + 1396: -74.8092,18.012127 + 1397: -92.28845,17.266336 + 1676: -62.701077,-6.696066 + 2491: -14.09183,52.675026 + 3931: -62.840637,-8.85393 + 4509: 64.50794,-10.801302 + 4513: 69.218025,-23.00548 + 4568: 4.590861,-16.194866 + 4633: 3.242146,-23.917967 + 4634: 3.8827715,-25.77734 - node: color: '#FFFFFFFF' id: Bushk2 decals: - 754: -48.732132,14.799566 - 1776: -78.10601,-4.9176292 - 4912: 4.367146,-23.667965 + 696: -48.732132,14.799566 + 4635: 4.367146,-23.667965 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 1777: -80.434135,-6.9332542 - 4836: 2.9346108,-16.101116 + 4559: 2.9346108,-16.101116 - node: color: '#FFFFFFFF' id: Bushl1 decals: - 1959: -41.86759,-62.67357 - 3788: -1.5161572,56.72477 + 1812: -41.86759,-62.67357 + 3580: -1.5161572,56.72477 - node: color: '#FFFFFFFF' id: Bushl2 decals: - 4872: 5.9658604,-16.382366 + 4595: 5.9658604,-16.382366 - node: color: '#FFFFFFFF' id: Bushl3 decals: - 815: -57.08178,18.35225 + 755: -57.08178,18.35225 - node: color: '#FFFFFFFF' id: Bushl4 decals: - 187: 4.143323,-17.435427 - 1375: -28.98949,-47.996017 - 3782: -3.5541081,54.10666 + 159: 4.143323,-17.435427 + 1304: -28.98949,-47.996017 + 3574: -3.5541081,54.10666 - node: color: '#FFFFFFFF' id: Bushm1 decals: - 3783: -0.57550967,53.344414 + 3575: -0.57550967,53.344414 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 4914: 5.257771,-24.042967 + 4637: 5.257771,-24.042967 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 758: -48.905083,22.105616 - 3784: -4.6901555,55.336403 - 4913: 6.148396,-23.699215 + 700: -48.905083,22.105616 + 3576: -4.6901555,55.336403 + 4636: 6.148396,-23.699215 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 229: -54,18 - 1466: -79.479675,17.309002 - 1767: -82.65627,-9.098636 - 1780: -61.3417,-6.180588 - 4594: -34.047695,38.997627 - 7070: 44,-1 + 201: -54,18 + 1395: -79.479675,17.309002 + 1669: -61.3417,-6.180588 + 4340: -34.047695,38.997627 + 6720: 44,-1 + 8079: -44.524475,1.0695183 + 8119: -16,-2 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 1711: -89,13 - 1712: -87,13 - 1713: -79,13 + 1638: -89,13 + 1639: -87,13 + 1640: -79,13 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 1695: -94,40 - 1696: -94,33 - 1697: -76,33 - 1698: -76,40 + 1622: -94,40 + 1623: -94,33 + 1624: -76,33 + 1625: -76,40 - node: color: '#FFFFFFFF' id: Caution decals: - 1694: -95,43 - 1699: -77,43 - 1700: -59,43 - 1864: -87,-4 - 1865: -89,-4 - 1866: -81,-4 - 1867: -79,-4 - 2841: 79,-34 - 4655: -31,39 + 1621: -95,43 + 1626: -77,43 + 1627: -59,43 + 2657: 79,-34 + 4400: -31,39 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 1675: -96,33 - 1676: -99,23 - 1677: -99,15 - 1678: -99,13 - 1680: -78,33 - 1681: -78,40 - 1682: -60,40 - 1683: -60,33 - 4672: -32,40 + 1602: -96,33 + 1603: -99,23 + 1604: -99,15 + 1605: -99,13 + 1607: -78,33 + 1608: -78,40 + 1609: -60,40 + 1610: -60,33 + 4416: -32,40 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 2842: 79,-56 - 3165: -81,13 + 2658: 79,-56 + 2980: -81,13 - node: color: '#52B4E996' id: CheckerNESW decals: - 75: 1,-40 - 76: 0,-40 - 77: -1,-40 - 78: -2,-40 - 79: -3,-40 - 652: 2,-38 - 6031: -2,-38 + 70: 1,-40 + 71: 0,-40 + 72: -1,-40 + 73: -2,-40 + 74: -3,-40 + 595: 2,-38 + 5706: -2,-38 + - node: + color: '#F9FFFECC' + id: CheckerNESW + decals: + 7970: -42,-1 + 7971: -42,0 + 7972: -42,1 + - node: + color: '#F9FFFECD' + id: CheckerNESW + decals: + 8039: -45,0 + 8040: -44,0 + 8041: -43,0 + 8042: -43,1 + 8043: -43,-1 + 8044: -41,-1 + 8045: -41,0 + 8046: -41,1 + 8047: -40,0 + 8048: -39,0 + - node: + color: '#1D1D21CC' + id: CheckerNWSE + decals: + 7973: -42,1 + 7974: -42,0 + 7975: -42,-1 + 8016: -43,1 + 8017: -43,1 + 8018: -42,1 + 8019: -41,1 + 8020: -41,1 + 8021: -41,0 + 8022: -41,0 + 8023: -42,0 + 8024: -43,0 + 8025: -43,0 + 8026: -43,-1 + 8027: -43,-1 + 8028: -42,-1 + 8029: -41,-1 + 8030: -41,-1 + 8031: -40,0 + 8032: -40,0 + 8033: -39,0 + 8034: -39,0 + 8035: -44,0 + 8036: -44,0 + 8037: -45,0 + 8038: -45,0 - node: color: '#52B4E996' id: CheckerNWSE decals: - 3228: -4,-38 - 6032: 0,-38 + 3031: -4,-38 + 5707: 0,-38 - node: color: '#EFB34196' id: CheckerNWSE decals: - 4435: 8,-39 - 4436: 8,-40 - 4437: 8,-41 - 4438: 8,-42 - 4439: 8,-43 - 4440: 8,-44 - 4441: 9,-44 - 4442: 10,-44 - 4443: 10,-43 - 4444: 9,-43 - 4445: 9,-42 - 4446: 10,-42 - 4447: 10,-41 - 4448: 9,-41 - 4449: 9,-40 - 4450: 9,-39 - 4451: 10,-39 - 4452: 10,-40 - 4453: 11,-40 - 4454: 12,-40 - 4455: 13,-40 - 4456: 14,-40 - 4457: 15,-40 - 4458: 15,-41 - 4459: 14,-41 - 4460: 14,-42 - 4461: 15,-42 - 4462: 15,-38 - 4463: 14,-38 - 4464: 14,-39 - 4465: 13,-38 - 4466: 12,-38 - 4467: 12,-37 - 4468: 13,-37 - 4469: 14,-37 - 4470: 13,-36 - 4471: 13,-35 - 4472: 12,-35 - 4473: 12,-36 - 6158: 9,-45 + 4186: 8,-39 + 4187: 8,-40 + 4188: 8,-41 + 4189: 8,-42 + 4190: 8,-43 + 4191: 8,-44 + 4192: 9,-44 + 4193: 10,-44 + 4194: 10,-43 + 4195: 9,-43 + 4196: 9,-42 + 4197: 10,-42 + 4198: 10,-41 + 4199: 9,-41 + 4200: 9,-40 + 4201: 9,-39 + 4202: 10,-39 + 4203: 10,-40 + 4204: 11,-40 + 4205: 12,-40 + 4206: 13,-40 + 4207: 14,-40 + 4208: 15,-40 + 4209: 15,-41 + 4210: 14,-41 + 4211: 14,-42 + 4212: 15,-42 + 4213: 15,-38 + 4214: 14,-38 + 4215: 14,-39 + 4216: 13,-38 + 4217: 12,-38 + 4218: 12,-37 + 4219: 13,-37 + 4220: 14,-37 + 4221: 13,-36 + 4222: 13,-35 + 4223: 12,-35 + 4224: 12,-36 + 5831: 9,-45 - node: color: '#DE3A3A96' id: ConcreteTrimCornerNe decals: - 3659: -25,-7 - 5436: -27,-32 + 3451: -25,-7 + 5135: -27,-32 - node: color: '#DE3A3A96' id: ConcreteTrimCornerNw decals: - 3656: -26,-7 - 5437: -32,-32 + 3448: -26,-7 + 5136: -32,-32 - node: color: '#DE3A3A96' id: ConcreteTrimCornerSe decals: - 3658: -25,-9 - 5003: 3,49 + 3450: -25,-9 + 4723: 3,49 - node: color: '#DE3A3A96' id: ConcreteTrimCornerSw decals: - 3657: -26,-9 - 5438: -32,-34 + 3449: -26,-9 + 5137: -32,-34 - node: color: '#9FED5896' id: ConcreteTrimInnerNe decals: - 4705: -26,35 - 4709: -26,46 + 4436: -26,46 - node: color: '#DE3A3A95' id: ConcreteTrimInnerNe decals: - 3240: 3,51 - 3371: 6,50 + 3043: 3,51 + 3173: 6,50 - node: color: '#DE3A3A96' id: ConcreteTrimInnerNe decals: - 3663: -25,-8 + 3455: -25,-8 - node: color: '#9FED5896' id: ConcreteTrimInnerNw decals: - 4711: -26,46 + 4438: -26,46 - node: color: '#DE3A3A95' id: ConcreteTrimInnerNw decals: - 3372: 7,50 + 3174: 7,50 - node: color: '#DE3A3A96' id: ConcreteTrimInnerNw decals: - 3662: -26,-8 + 3454: -26,-8 - node: color: '#9FED5896' id: ConcreteTrimInnerSe decals: - 4704: -30,35 - 6175: -73,-5 + 5844: -73,-5 - node: color: '#DE3A3A95' id: ConcreteTrimInnerSe decals: - 3239: 3,51 - 3241: 0,49 - 3369: 6,53 + 3042: 3,51 + 3044: 0,49 + 3171: 6,53 - node: color: '#DE3A3A96' id: ConcreteTrimInnerSe decals: - 3660: -25,-8 + 3452: -25,-8 - node: color: '#9FED5896' id: ConcreteTrimInnerSw decals: - 4703: -30,35 - 6184: -64,-5 + 5853: -64,-5 - node: color: '#DE3A3A95' id: ConcreteTrimInnerSw decals: - 3242: -2,49 - 3370: 7,53 + 3045: -2,49 + 3172: 7,53 - node: color: '#DE3A3A96' id: ConcreteTrimInnerSw decals: - 3661: -26,-8 + 3453: -26,-8 - node: color: '#9FED5896' id: ConcreteTrimLineE decals: - 4690: -26,38 - 4691: -26,37 - 4692: -26,36 - 6168: -73,-12 - 6169: -73,-11 - 6170: -73,-10 - 6171: -73,-9 - 6172: -73,-8 - 6173: -73,-7 - 6174: -73,-6 + 5837: -73,-12 + 5838: -73,-11 + 5839: -73,-10 + 5840: -73,-9 + 5841: -73,-8 + 5842: -73,-7 + 5843: -73,-6 - node: color: '#A4610696' id: ConcreteTrimLineE decals: - 4901: 76,-16 - 4905: 73,-9 - 4906: 73,-10 - 4907: 73,-13 - 4964: 73,-11 - 4965: 73,-12 + 4624: 76,-16 + 4628: 73,-9 + 4629: 73,-10 + 4630: 73,-13 + 4687: 73,-11 + 4688: 73,-12 - node: cleanable: True color: '#A4610696' id: ConcreteTrimLineE decals: - 4829: 74,-8 - 4857: 76,-16 + 4552: 74,-8 + 4580: 76,-16 - node: color: '#DE3A3A95' id: ConcreteTrimLineE decals: - 3237: 3,50 - 3365: 6,51 - 3366: 6,52 + 3040: 3,50 + 3167: 6,51 + 3168: 6,52 - node: color: '#DE3A3A96' id: ConcreteTrimLineE decals: - 5443: -27,-34 - - node: - color: '#9FED5896' - id: ConcreteTrimLineN - decals: - 4340: -49,1 - 4341: -50,1 - 4342: -53,1 - 4685: -30,38 - 4686: -29,38 - 4687: -28,38 - 4688: -27,38 - 4689: -26,38 - 6159: -52,1 + 5142: -27,-34 - node: color: '#A4610696' id: ConcreteTrimLineN decals: - 4902: 76,-14 - 4903: 75,-14 - 4904: 74,-14 + 4625: 76,-14 + 4626: 75,-14 + 4627: 74,-14 - node: color: '#DE3A3A96' id: ConcreteTrimLineN decals: - 5444: -31,-32 - 5445: -30,-32 - 5446: -29,-32 - 5447: -28,-32 + 5143: -31,-32 + 5144: -30,-32 + 5145: -29,-32 + 5146: -28,-32 - node: color: '#9FED5896' id: ConcreteTrimLineS decals: - 4695: -26,35 - 4696: -27,35 - 4697: -28,35 - 4698: -29,35 - 4699: -31,35 - 4700: -32,35 - 6176: -72,-5 - 6177: -71,-5 - 6178: -70,-5 - 6179: -68,-5 - 6180: -69,-5 - 6181: -66,-5 - 6182: -65,-5 + 5845: -72,-5 + 5846: -71,-5 + 5847: -70,-5 + 5848: -68,-5 + 5849: -69,-5 + 5850: -66,-5 + 5851: -65,-5 - node: color: '#A4610696' id: ConcreteTrimLineS decals: - 4881: 60,-7 - 4882: 62,-7 - 4883: 61,-7 - 4884: 63,-7 - 4885: 64,-7 - 4886: 66,-7 - 4887: 67,-7 - 4888: 68,-7 - 4898: 69,-19 - 4899: 74,-18 - 4966: 73,-18 - 4967: 72,-18 - 4968: 71,-18 - 4969: 70,-18 - 4970: 69,-18 - 4971: 76,-18 - 4972: 75,-18 - 4975: 65,-7 - 7006: 53,-7 + 4604: 60,-7 + 4605: 62,-7 + 4606: 61,-7 + 4607: 63,-7 + 4608: 64,-7 + 4609: 66,-7 + 4610: 67,-7 + 4611: 68,-7 + 4621: 69,-19 + 4622: 74,-18 + 4689: 73,-18 + 4690: 72,-18 + 4691: 71,-18 + 4692: 70,-18 + 4693: 69,-18 + 4694: 76,-18 + 4695: 75,-18 + 4698: 65,-7 + 6656: 53,-7 - node: cleanable: True color: '#A4610696' id: ConcreteTrimLineS decals: - 4831: 74,-8 + 4554: 74,-8 - node: color: '#DE3A3A95' id: ConcreteTrimLineS decals: - 3238: 2,49 + 3041: 2,49 - node: color: '#DE3A3A96' id: ConcreteTrimLineS decals: - 5439: -31,-34 - 5440: -30,-34 - 5441: -29,-34 - 5442: -28,-34 - 5587: 6,56 + 5138: -31,-34 + 5139: -30,-34 + 5140: -29,-34 + 5141: -28,-34 + 5278: 6,56 - node: color: '#9FED5896' id: ConcreteTrimLineW decals: - 4120: -61,-1 - 4121: -61,0 - 4122: -61,1 - 5004: -9,62 - 6185: -64,-6 - 6186: -64,-7 - 6187: -64,-8 + 3908: -61,-1 + 3909: -61,0 + 3910: -61,1 + 4724: -9,62 + 5854: -64,-6 + 5855: -64,-7 + 5856: -64,-8 - node: color: '#A4610696' id: ConcreteTrimLineW decals: - 4889: 69,-8 - 4890: 69,-9 - 4891: 69,-10 - 4892: 69,-11 - 4893: 69,-12 - 4894: 69,-13 - 4895: 69,-16 - 4896: 69,-15 - 4897: 69,-17 - 4900: 75,-16 - 4973: 69,-18 - 4974: 69,-14 + 4612: 69,-8 + 4613: 69,-9 + 4614: 69,-10 + 4615: 69,-11 + 4616: 69,-12 + 4617: 69,-13 + 4618: 69,-16 + 4619: 69,-15 + 4620: 69,-17 + 4623: 75,-16 + 4696: 69,-18 + 4697: 69,-14 - node: cleanable: True color: '#A4610696' id: ConcreteTrimLineW decals: - 4864: 75,-16 + 4587: 75,-16 - node: color: '#DE3A3A95' id: ConcreteTrimLineW decals: - 3367: 7,51 - 3368: 7,52 + 3169: 7,51 + 3170: 7,52 - node: color: '#DE3A3A96' id: ConcreteTrimLineW decals: - 5738: -23,-3 + 5424: -23,-3 - node: color: '#00AF57FF' id: Damaged decals: - 3062: 30,-61 + 2878: 30,-61 - node: color: '#258F4AFF' id: Damaged decals: - 3128: 37,-65 + 2944: 37,-65 - node: color: '#25B54AFF' id: Damaged decals: - 3117: 49,-58 - 3118: 47,-64 - 3119: 48,-68 - 3120: 36,-55 - 3121: 44,-55 - 3122: 48,-54 - 3123: 51,-65 - 3124: 41,-65 + 2933: 49,-58 + 2934: 47,-64 + 2935: 48,-68 + 2936: 36,-55 + 2937: 44,-55 + 2938: 48,-54 + 2939: 51,-65 + 2940: 41,-65 - node: color: '#25E24AFF' id: Damaged decals: - 3129: 52,-57 - 3130: 57,-64 - 3131: 56,-67 - 3132: 54,-66 - 3133: 50,-68 + 2945: 52,-57 + 2946: 57,-64 + 2947: 56,-67 + 2948: 54,-66 + 2949: 50,-68 - node: color: '#4DC585FF' id: Damaged decals: - 3111: 31,-60 - 3112: 33,-66 + 2927: 31,-60 + 2928: 33,-66 - node: color: '#4DFF85FF' id: Damaged decals: - 3102: 33,-62 - 3103: 40,-64 - 3104: 48,-60 - 3105: 45,-57 - 3106: 47,-55 - 3107: 46,-66 - 3108: 50,-63 - 3109: 55,-65 - 3110: 53,-60 + 2918: 33,-62 + 2919: 40,-64 + 2920: 48,-60 + 2921: 45,-57 + 2922: 47,-55 + 2923: 46,-66 + 2924: 50,-63 + 2925: 55,-65 + 2926: 53,-60 - node: color: '#57C585FF' id: Damaged decals: - 3113: 36,-61 - 3114: 42,-63 - 3115: 40,-60 - 3116: 46,-61 + 2929: 36,-61 + 2930: 42,-63 + 2931: 40,-60 + 2932: 46,-61 - node: angle: 3.141592653589793 rad color: '#F9FFFE5E' id: Delivery decals: - 1157: 37,-25 + 1090: 37,-25 - node: color: '#FFFFFFFF' id: Delivery decals: - 92: -1,36 - 93: 0,36 - 94: -1,24 - 95: 1,22 - 96: -1,20 - 97: -3,22 - 98: -24,22 - 99: -22,20 - 100: -20,22 - 101: -21,24 - 102: -23,24 - 103: -22,2 - 104: -20,0 - 105: -36,0 - 106: -1,-23 - 107: -1,-23 - 108: 1,-21 - 109: -1,-19 - 110: -1,-13 - 111: 1,-11 - 112: -3,-11 - 113: 8,-2 - 114: 10,0 - 115: 18,0 - 116: 20,-2 - 117: 22,0 - 118: -1,14 - 211: -44,22 - 230: -12,0 - 231: -10,2 - 232: -10,-2 - 233: -1,-35 - 619: -23,-18 - 620: -21,-18 - 765: -2,36 - 771: -53,21 - 772: -53,22 - 773: -53,13 - 774: -53,14 - 775: -53,15 - 776: -65,13 - 777: -65,14 - 778: -65,15 - 779: -65,21 - 780: -65,22 - 781: -65,23 - 1294: 20,2 - 1295: 8,2 - 1615: -71,13 - 1616: -71,14 - 1617: -71,15 - 1618: -71,21 - 1619: -71,22 - 1620: -71,23 - 1621: -83,21 - 1622: -83,22 - 1623: -83,23 - 1624: -83,13 - 1625: -83,14 - 1626: -83,15 - 1627: -92,15 - 1628: -92,14 - 1629: -92,13 - 1630: -92,21 - 1631: -92,21 - 1632: -92,23 - 1633: -92,22 - 1634: -96,24 - 1635: -95,24 - 1636: -94,24 - 1637: -78,24 - 1638: -77,24 - 1639: -76,24 - 1673: -60,24 - 1674: -59,24 - 1945: -75,3 - 2211: 70,2 - 2220: 69,2 - 2223: 57,-3 - 2224: 57,-1 - 2228: 57,-5 - 2437: -54,-1 - 2438: -54,0 - 2439: -54,1 - 2462: -22,-18 - 2553: -24,0 - 2596: -23,33 - 2598: -21,33 - 3010: -3,-31 - 3011: -3,-30 - 3012: -3,-29 - 3038: 38,-61 - 3039: 43,-61 - 3193: 0,44 - 3194: -1,44 - 3195: -2,44 - 3234: 0,48 - 3235: -1,48 - 3236: -2,48 - 3341: 10,47 - 3342: 11,47 - 3343: 8,52 - 3456: 6,54 - 3457: 7,54 - 3504: -3,12 - 3505: 1,12 - 3515: 75,46 - 3516: 71,42 - 3517: 83,46 - 3518: 87,42 - 3519: 87,34 - 3520: 83,30 - 3521: 75,30 - 3522: 71,34 - 3951: 33,32 - 3952: 33,33 - 3953: 35,32 - 3954: 34,32 - 3955: 34,33 - 3956: 35,33 - 3957: 32,33 - 3958: 31,32 - 3959: 30,32 - 4656: -25,44 - 4729: 73,-7 - 4743: 63,-40 - 4744: 64,-40 - 4745: 65,-40 - 5090: 9,-62 - 5358: -9,-2 - 5370: -3,-10 - 5371: 1,-10 - 5372: -3,11 - 5373: 1,11 - 5473: 32,19 - 5474: 32,20 - 5483: 13,32 - 5484: 13,33 - 5485: 13,34 - 5486: 13,35 - 5487: 17,35 - 5488: 17,34 - 5489: 17,33 - 5490: 17,32 - 5567: 7,19 - 5568: 8,19 - 5569: 9,19 - 5612: -2,14 - 5616: 0,14 - 5617: 1,13 - 5709: -3,13 - 5873: -36,1 - 5878: -44,21 - 5879: -44,23 - 5880: -24,23 - 5881: -24,21 - 5882: -23,20 - 5883: -21,20 - 5884: -20,21 - 5885: -20,23 - 5886: -2,24 - 5887: 0,24 - 5888: 1,23 - 5889: 1,21 - 5890: -3,21 - 5891: -3,23 - 5892: -2,20 - 5893: 0,20 - 5894: -21,2 - 5895: -23,2 - 5896: -24,1 - 5897: -20,1 - 5898: -12,1 - 5899: -12,-1 - 5900: -11,2 - 5901: -9,2 - 5902: -11,-2 - 5903: 7,2 - 5904: 9,2 - 5905: 10,-1 - 5906: 10,1 - 5907: 9,-2 - 5908: 7,-2 - 5909: 1,-12 - 5910: 0,-13 - 5911: -2,-13 - 5912: -3,-12 - 5925: -24,-1 - 5926: -36,-1 - 5934: -2,-19 - 5944: -2,-23 - 5963: 0,-19 - 5964: 1,-20 - 5965: 1,-22 - 5966: 0,-23 - 6137: -38,-54 - 6209: 18,-1 - 6210: 18,1 - 6211: 19,2 - 6212: 21,2 - 6213: 19,-2 - 6214: 22,1 - 6270: -58,24 - 6271: -53,23 - 6273: -2,-35 - 6274: 0,-35 - 6275: -20,-1 - 6897: 18,21 - 6898: 18,22 - 6899: 18,23 - 6900: 21,15 - 6901: 21,16 - 6902: 21,17 - 6903: 21,18 - 6904: 26,24 - 6939: 14,11 - 7065: 48,-3 - 7066: 49,-2 - 7067: 50,-3 - 7068: 51,-2 - 7465: 30,24 - 7466: 30,25 - 7479: 27,24 - 7480: 28,24 - 7751: 21,-2 - 7752: 22,-1 - 7833: 39,-16 - 7834: 39,-15 - 7835: 39,-14 - 7868: 42,-16 - 7869: 42,-15 - 7870: 42,-14 + 87: -1,36 + 88: 0,36 + 89: -22,20 + 90: -21,24 + 91: -23,24 + 92: -1,-13 + 93: 1,-11 + 94: -3,-11 + 95: -1,14 + 183: -44,22 + 562: -23,-18 + 563: -21,-18 + 707: -2,36 + 713: -53,21 + 714: -53,22 + 715: -53,13 + 716: -53,14 + 717: -53,15 + 718: -65,13 + 719: -65,14 + 720: -65,15 + 721: -65,21 + 722: -65,22 + 723: -65,23 + 1543: -71,13 + 1544: -71,14 + 1545: -71,15 + 1546: -71,21 + 1547: -71,22 + 1548: -71,23 + 1549: -83,21 + 1550: -83,22 + 1551: -83,23 + 1552: -83,13 + 1553: -83,14 + 1554: -83,15 + 1555: -92,15 + 1556: -92,14 + 1557: -92,13 + 1558: -92,21 + 1559: -92,21 + 1560: -92,23 + 1561: -92,22 + 1562: -96,24 + 1563: -95,24 + 1564: -94,24 + 1565: -78,24 + 1566: -77,24 + 1567: -76,24 + 1600: -60,24 + 1601: -59,24 + 1799: -75,3 + 2064: 70,2 + 2073: 69,2 + 2076: 57,-3 + 2077: 57,-1 + 2081: 57,-5 + 2312: -22,-18 + 2429: -23,33 + 2431: -21,33 + 2826: -3,-31 + 2827: -3,-30 + 2828: -3,-29 + 2854: 38,-61 + 2855: 43,-61 + 2999: 0,44 + 3000: -1,44 + 3001: -2,44 + 3037: 0,48 + 3038: -1,48 + 3039: -2,48 + 3143: 10,47 + 3144: 11,47 + 3145: 8,52 + 3258: 6,54 + 3259: 7,54 + 3296: -3,12 + 3297: 1,12 + 3307: 75,46 + 3308: 71,42 + 3309: 83,46 + 3310: 87,42 + 3311: 87,34 + 3312: 83,30 + 3313: 75,30 + 3314: 71,34 + 3739: 33,32 + 3740: 33,33 + 3741: 35,32 + 3742: 34,32 + 3743: 34,33 + 3744: 35,33 + 3745: 32,33 + 3746: 31,32 + 3747: 30,32 + 4401: -25,44 + 4452: 73,-7 + 4466: 63,-40 + 4467: 64,-40 + 4468: 65,-40 + 4809: 9,-62 + 5059: -9,-2 + 5069: -3,-10 + 5070: 1,-10 + 5071: -3,11 + 5072: 1,11 + 5172: 32,19 + 5173: 32,20 + 5182: 13,32 + 5183: 13,33 + 5184: 13,34 + 5185: 13,35 + 5186: 17,35 + 5187: 17,34 + 5188: 17,33 + 5189: 17,32 + 5266: 7,19 + 5267: 8,19 + 5268: 9,19 + 5301: -2,14 + 5305: 0,14 + 5306: 1,13 + 5395: -3,13 + 5560: -44,21 + 5561: -44,23 + 5562: -24,23 + 5563: -24,21 + 5564: -23,20 + 5565: -21,20 + 5566: -20,21 + 5567: -20,23 + 5568: -2,24 + 5569: 0,24 + 5570: 1,23 + 5571: 1,21 + 5572: -3,21 + 5573: -3,23 + 5574: -2,20 + 5575: 0,20 + 5576: -21,2 + 5577: -23,2 + 5578: -24,1 + 5579: -20,1 + 5580: -12,1 + 5581: -12,-1 + 5582: -11,2 + 5583: -9,2 + 5584: -11,-2 + 5585: 7,2 + 5586: 9,2 + 5587: 10,-1 + 5588: 10,1 + 5589: 9,-2 + 5590: 7,-2 + 5591: 1,-12 + 5592: 0,-13 + 5593: -2,-13 + 5594: -3,-12 + 5606: -24,-1 + 5612: -2,-19 + 5621: -2,-23 + 5638: 0,-19 + 5639: 1,-20 + 5640: 1,-22 + 5641: 0,-23 + 5810: -38,-54 + 5875: 18,-1 + 5876: 18,1 + 5877: 19,2 + 5878: 21,2 + 5879: 19,-2 + 5880: 22,1 + 5927: -58,24 + 5928: -53,23 + 5929: -2,-35 + 5930: 0,-35 + 5931: -20,-1 + 6551: 18,21 + 6552: 18,22 + 6553: 18,23 + 6554: 21,15 + 6555: 21,16 + 6556: 21,17 + 6557: 21,18 + 6558: 26,24 + 6593: 14,11 + 6715: 48,-3 + 6716: 49,-2 + 6717: 50,-3 + 6718: 51,-2 + 7089: 30,24 + 7090: 30,25 + 7103: 27,24 + 7104: 28,24 + 7374: 21,-2 + 7375: 22,-1 + 7456: 39,-16 + 7457: 39,-15 + 7458: 39,-14 + 7491: 42,-16 + 7492: 42,-15 + 7493: 42,-14 + 7664: 32,32 + 8726: -1,-35 + 9151: -24,22 + 9152: -20,22 + 9161: -12,0 + 9166: -10,-2 + 9167: -10,2 + 9174: 8,-2 + 9175: 8,2 + 9177: 10,0 + 9185: -24,0 + 9186: -22,2 + 9187: -20,0 + 9195: 18,0 + 9196: 20,-2 + 9197: 20,2 + 9198: 22,0 + 9207: -3,22 + 9208: -1,24 + 9209: -1,20 + 9210: 1,22 + 9219: -1,-23 + 9220: -1,-19 + 9221: 1,-21 - node: cleanable: True color: '#FFFFFFFF' id: Delivery decals: - 3462: -2,48 - 3463: -1,48 - 3464: 0,48 - 3465: -2,44 - 3466: -1,44 - 3467: 0,44 - 4330: 7,56 - 4331: 7,57 + 3264: -2,48 + 3265: -1,48 + 3266: 0,48 + 3267: -2,44 + 3268: -1,44 + 3269: 0,44 + 4084: 7,56 + 4085: 7,57 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: - 621: -7,-1 - 622: -7,0 - 623: -7,1 - 624: 5,-1 - 625: 5,0 - 626: 5,1 - 627: -6,-22 - 628: -6,-21 - 629: -6,-20 - 630: -21,-5 - 631: -22,-5 - 632: -23,-5 - 1889: -73,2 - 1890: -73,4 - 1891: -73,5 - 1892: -73,7 + 564: -7,-1 + 565: -7,0 + 566: -7,1 + 567: 5,-1 + 568: 5,0 + 569: 5,1 + 570: -6,-22 + 571: -6,-21 + 572: -6,-20 + 573: -21,-5 + 574: -22,-5 + 575: -23,-5 + 1743: -73,2 + 1744: -73,4 + 1745: -73,5 + 1746: -73,7 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Delivery decals: - 4734: 60,-5 + 4457: 60,-5 - node: color: '#FFFFFFE0' id: DeliveryGreyscale decals: - 446: -16,-20 + 389: -16,-20 - node: color: '#52B4E996' id: DiagonalCheckerAOverlay decals: - 4358: -52,4 - 4359: -51,4 - 4360: -51,5 - 4361: -51,3 - 4362: -50,4 - 4363: -49,4 - 4365: -53,4 - 4419: 13,-53 - 4420: 13,-54 - 4421: 13,-55 - 4422: 13,-56 - 4423: 12,-56 - 4424: 14,-56 - 4425: 15,-56 - 4426: 16,-56 - 4427: 17,-56 - 4428: 16,-55 - 4429: 16,-54 - 4430: 16,-53 + 4109: -52,4 + 4110: -51,4 + 4111: -51,5 + 4112: -51,3 + 4113: -50,4 + 4114: -49,4 + 4116: -53,4 + 4170: 13,-53 + 4171: 13,-54 + 4172: 13,-55 + 4173: 13,-56 + 4174: 12,-56 + 4175: 14,-56 + 4176: 15,-56 + 4177: 16,-56 + 4178: 17,-56 + 4179: 16,-55 + 4180: 16,-54 + 4181: 16,-53 - node: color: '#D381C996' id: DiagonalCheckerAOverlay decals: - 7722: 33,-20 - 7723: 33,-22 - 7977: 55,-26 - 7978: 56,-26 - 7979: 57,-26 - 7980: 58,-26 - 7981: 58,-27 - 7982: 57,-27 - 7983: 56,-27 - 7984: 55,-27 - 7997: 55,-31 - 7998: 55,-32 - 7999: 55,-33 - 8000: 56,-33 - 8001: 56,-32 - 8002: 56,-31 - 8003: 55,-35 - 8004: 55,-36 - 8005: 56,-36 - 8006: 56,-35 - 8007: 58,-35 - 8008: 59,-35 - 8009: 60,-35 - 8010: 60,-36 - 8011: 59,-36 - 8012: 58,-36 + 7345: 33,-20 + 7346: 33,-22 + 7600: 55,-26 + 7601: 56,-26 + 7602: 57,-26 + 7603: 58,-26 + 7604: 58,-27 + 7605: 57,-27 + 7606: 56,-27 + 7607: 55,-27 + 7620: 55,-31 + 7621: 55,-32 + 7622: 55,-33 + 7623: 56,-33 + 7624: 56,-32 + 7625: 56,-31 + 7626: 55,-35 + 7627: 55,-36 + 7628: 56,-36 + 7629: 56,-35 + 7630: 58,-35 + 7631: 59,-35 + 7632: 60,-35 + 7633: 60,-36 + 7634: 59,-36 + 7635: 58,-36 - node: color: '#37789BB2' id: DiagonalCheckerBOverlay decals: - 5109: 8,-60 - 5110: 9,-60 - 5111: 10,-60 - 5112: 11,-60 + 4828: 8,-60 + 4829: 9,-60 + 4830: 10,-60 + 4831: 11,-60 - node: color: '#52B4E996' id: DiagonalCheckerBOverlay decals: - 6774: -9,-42 - 6775: -9,-43 - 6776: -8,-43 - 6777: -8,-42 - 6778: -7,-43 - 6779: -7,-42 - 6780: -18,-41 - 6781: -17,-41 - 6782: -16,-41 - 6784: -19,-41 - 6797: -2,-43 - 6798: -1,-43 - 6799: 0,-43 - 6800: 0,-44 - 6801: -1,-44 - 6802: -2,-44 - 6820: -14,-42 - 6821: -14,-41 - 6822: -13,-41 - 6823: -13,-42 - 6824: -12,-42 - 6825: -12,-41 - 6844: 5,-46 - 6845: 5,-47 - 6846: 5,-45 - 6847: 7,-47 - 6848: 8,-47 - 6849: 9,-47 + 6428: -9,-42 + 6429: -9,-43 + 6430: -8,-43 + 6431: -8,-42 + 6432: -7,-43 + 6433: -7,-42 + 6434: -18,-41 + 6435: -17,-41 + 6436: -16,-41 + 6438: -19,-41 + 6451: -2,-43 + 6452: -1,-43 + 6453: 0,-43 + 6454: 0,-44 + 6455: -1,-44 + 6456: -2,-44 + 6474: -14,-42 + 6475: -14,-41 + 6476: -13,-41 + 6477: -13,-42 + 6478: -12,-42 + 6479: -12,-41 + 6498: 5,-46 + 6499: 5,-47 + 6500: 5,-45 + 6501: 7,-47 + 6502: 8,-47 + 6503: 9,-47 - node: color: '#D381C996' id: DiagonalCheckerBOverlay decals: - 6659: 13,-21 - 6660: 14,-21 - 6661: 15,-21 - 6666: 19,-21 - 6667: 20,-21 - 6668: 21,-21 - 6669: 27,-21 - 6670: 26,-21 - 6671: 25,-21 - 6672: 32,-21 - 6673: 52,-22 - 6688: 16,-15 - 6689: 16,-16 - 6690: 17,-15 - 6691: 23,-15 - 6692: 24,-15 - 6693: 24,-16 - 7716: 51,-22 - 7717: 48,-22 - 7718: 47,-22 - 7726: 33,-21 - 7727: 34,-21 - 7753: 32,-23 - 7754: 31,-23 - 7755: 35,-19 - 7756: 34,-19 - 7757: 32,-19 - 7758: 31,-19 - 7759: 31,-22 - 7760: 35,-22 - 7761: 35,-20 - 7762: 31,-20 - 7782: 35,-23 - 7783: 34,-23 + 6313: 13,-21 + 6314: 14,-21 + 6315: 15,-21 + 6320: 19,-21 + 6321: 20,-21 + 6322: 21,-21 + 6323: 27,-21 + 6324: 26,-21 + 6325: 25,-21 + 6326: 32,-21 + 6327: 52,-22 + 6342: 16,-15 + 6343: 16,-16 + 6344: 17,-15 + 6345: 23,-15 + 6346: 24,-15 + 6347: 24,-16 + 7339: 51,-22 + 7340: 48,-22 + 7341: 47,-22 + 7349: 33,-21 + 7350: 34,-21 + 7376: 32,-23 + 7377: 31,-23 + 7378: 35,-19 + 7379: 34,-19 + 7380: 32,-19 + 7381: 31,-19 + 7382: 31,-22 + 7383: 35,-22 + 7384: 35,-20 + 7385: 31,-20 + 7405: 35,-23 + 7406: 34,-23 - node: color: '#D381C996' id: DiagonalOverlay decals: - 7975: 56,-22 + 7598: 56,-22 - node: cleanable: True color: '#00AF57FF' id: Dirt decals: - 3060: 31,-62 - 3061: 33,-61 + 2876: 31,-62 + 2877: 33,-61 - node: color: '#FFFFFFFF' id: Dirt decals: - 4920: -5.944289,25.42386 - 4921: -5.475537,25.562296 - 4922: -5.209912,26.281044 - 4923: -4.7255373,26.359169 - 4924: -4.4130373,27.17167 - 4925: -6.6005373,25.42167 - 4926: -7.1630373,25.14042 - 4927: -7.694288,24.796673 - 4928: -8.053662,25.202923 - 4929: -7.506788,25.874794 - 4930: -7.2411623,26.281046 - 4931: -6.2880373,26.734169 - 4932: -5.5067873,27.109169 - 4933: -6.7255373,27.218544 - 4934: -7.897412,27.327919 - 4935: -8.038036,26.546669 - 4936: -8.038036,25.718544 - 4937: -8.522411,24.374796 - 4938: -4.0849123,27.624794 - 5022: 3,64 - 5023: 2,61 - 5024: 3,61 - 5025: 3,56 - 5026: 2,50 + 4643: -5.944289,25.42386 + 4644: -5.475537,25.562296 + 4645: -5.209912,26.281044 + 4646: -4.7255373,26.359169 + 4647: -4.4130373,27.17167 + 4648: -6.6005373,25.42167 + 4649: -7.1630373,25.14042 + 4650: -7.694288,24.796673 + 4651: -8.053662,25.202923 + 4652: -7.506788,25.874794 + 4653: -7.2411623,26.281046 + 4654: -6.2880373,26.734169 + 4655: -5.5067873,27.109169 + 4656: -6.7255373,27.218544 + 4657: -7.897412,27.327919 + 4658: -8.038036,26.546669 + 4659: -8.038036,25.718544 + 4660: -8.522411,24.374796 + 4661: -4.0849123,27.624794 + 4741: 3,64 + 4742: 2,61 + 4743: 3,61 + 4744: 3,56 + 4745: 2,50 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 122: -9,-9 - 123: -10,-8 - 137: -2,39 - 142: -2,15 - 155: 9,-8 - 156: -2,-11 - 165: -9,5 - 450: -28,9 - 1950: -60,-14 - 2057: -41,-44 - 2058: -41,-39 - 2059: -43,-47 - 2060: -42,-47 - 2061: -38,-48 - 2062: -38,-43 - 2063: -41,-51 - 2064: -45,-55 - 2065: -46,-57 - 2066: -47,-60 - 2067: -43,-55 - 2068: -46,-46 - 2069: -42,-41 - 2090: -44,-73 - 2091: -49,-70 - 2092: -44,-69 - 2093: -41,-69 - 2102: -48,-70 - 2104: -47,-64 - 2105: -38,-65 - 2106: -39,-72 - 2107: -31,-71 - 2108: -28,-73 - 2109: -24,-71 - 2110: -25,-73 - 2111: -20,-73 - 2112: -19,-71 - 2133: -18,-72 - 2134: -15,-67 - 2135: -18,-66 - 2250: -31,-79 - 2251: -34,-75 - 2252: -29,-76 - 2285: -53,-23 - 2286: -45,-29 - 2287: -50,-25 - 2296: -62,-23 - 2297: -47,-23 - 2298: -52,-28 - 2538: -91,-24 - 2539: -81,-22 - 2540: -80,-26 - 2541: -86,-27 - 2542: -95,-23 - 2543: -93,-19 - 2544: -84,-27 - 2545: -87,-24 - 2679: -25,52 - 2680: -31,51 - 2681: -17,52 - 2704: 58,-42 - 2710: 57,-46 - 2711: 59,-45 - 2712: 58,-46 - 2717: 36,-45 - 2718: 36,-40 - 2719: 34,-44 - 2732: 50,-43 - 2733: 44,-45 - 2734: 39,-44 - 2735: 47,-44 - 2736: 45,-44 - 2737: 54,-45 - 2738: 55,-43 - 2743: 46,-44 - 2744: 53,-45 - 2745: 39,-47 - 2746: 40,-45 - 2747: 40,-48 - 2748: 48,-45 - 2749: 49,-46 - 2750: 49,-47 - 2751: 51,-46 - 2752: 52,-44 - 2753: 52,-43 - 3040: 39,-65 - 3041: 42,-64 - 3042: 40,-63 - 3053: 39,-60 - 3054: 41,-60 - 3055: 42,-61 - 3056: 36,-57 - 3057: 35,-56 - 3058: 37,-55 - 3068: 36,-61 - 3069: 36,-65 - 3070: 33,-66 - 3083: 50,-65 - 3084: 51,-67 - 3085: 53,-68 - 3086: 54,-68 - 3087: 57,-66 - 3088: 56,-65 - 3089: 45,-67 - 3090: 46,-66 - 3091: 46,-61 - 3092: 50,-59 - 3093: 48,-57 - 3094: 50,-61 - 3095: 49,-60 - 3125: 41,-67 - 3126: 42,-68 - 3248: -14,49 - 3249: -14,49 - 3250: -15,51 - 3251: -14,52 - 3252: -18,53 - 3253: -18,53 - 3254: -20,52 - 3255: -25,52 - 3256: -27,53 - 3257: -28,52 - 3258: -28,52 - 3259: -30,53 - 3260: -31,52 - 3261: -28,52 - 3262: -28,53 - 3263: -26,53 - 3264: -25,52 - 3265: -20,53 - 3266: -18,53 - 3267: -19,53 - 3268: -17,52 - 3269: -16,53 - 3270: -14,46 - 3344: 1,52 - 3345: -2,49 - 3346: -6,51 - 3426: 1,45 - 3434: 6,50 - 3435: 5,53 - 3436: 7,53 - 3437: 11,50 - 3438: 10,54 - 3439: 12,53 - 3440: 7,52 - 3679: 103,52 - 3680: 104,52 - 3681: 104,51 - 3682: 103,51 - 3683: 105,52 - 3684: 105,53 - 3685: 104,53 - 3686: 103,53 - 3687: 103,54 - 3688: 104,54 - 3689: 104,54 - 3690: 102,55 - 3691: 103,55 - 3692: 104,55 - 3693: 105,55 - 3694: 102,53 - 3695: 101,53 - 3696: 100,53 - 3697: 100,52 - 3698: 100,51 - 3699: 100,51 - 3700: 100,50 - 3701: 101,50 - 3702: 101,51 - 3703: 101,52 - 3704: 102,52 - 3705: 102,51 - 3706: 104,50 - 3707: 104,49 - 3708: 105,51 - 3709: 106,51 - 3710: 107,51 - 3711: 107,52 - 3712: 106,52 - 3713: 107,52 - 3714: 107,53 - 3715: 106,53 - 3716: 106,54 - 3717: 105,54 - 4226: -6,67 - 4227: 1,59 - 4228: -1,49 - 4229: -7,51 - 4230: -2,41 - 4231: -50,24 - 4232: -50,17 - 4233: -57,14 - 4234: -67,21 - 4235: -69,15 - 4236: -79,14 - 4237: -88,14 - 4238: -86,21 - 4239: -97,14 - 4240: -98,22 - 4241: -78,26 - 4242: -76,36 - 4243: -78,43 - 4244: -60,42 - 4245: -58,32 - 4246: -48,33 - 4247: -54,37 - 4248: -55,41 - 4249: -49,42 - 4250: -44,45 - 4251: -40,47 - 4252: -38,48 - 4253: -38,52 - 4254: -35,47 - 4255: -37,42 - 4256: -38,36 - 4257: -43,32 - 4258: -50,33 - 4274: -37,56 - 4275: -30,63 - 4276: -29,60 - 4277: -38,63 - 4278: -21,52 - 4279: -23,47 - 4280: -21,39 - 4281: -23,36 - 4282: -33,36 - 4283: -36,41 - 4284: -35,47 - 4290: 7,59 - 4291: 6,57 - 4298: -67,18 - 4299: -77,29 - 4300: -78,33 - 4301: -78,40 - 4318: -74,-11 - 4604: -50,-50 - 4615: -49,-31 - 4713: 14,51 - 4714: 15,48 - 4715: 16,49 - 4716: 15,43 - 4824: 71,-17 - 4825: 70,-15 - 4827: 72,-13 - 4828: 71,-11 - 4830: 72,-16 - 4832: 75,-15 - 4833: 76,-17 - 4834: 76,-16 - 4835: 71,-9 - 4837: 70,-8 - 4838: 70,-8 - 4839: 71,-7 - 4840: 71,-6 - 4841: 73,-6 - 4842: 64,-5 - 4843: 63,-3 - 4844: 60,-4 - 4846: 56,-5 - 4847: 53,0 - 4849: 55,1 - 4850: 53,3 - 4851: 59,1 - 4853: 54,-5 - 4854: 61,-2 - 4855: 61,-2 - 4856: 62,-1 - 4858: 63,-2 - 4859: 63,-2 - 4860: 63,-2 - 4862: 69,5 - 4863: 65,4 - 4865: 63,4 - 4866: 71,4 - 4867: 71,6 - 4868: 68,6 - 4869: 69,5 - 4870: 69,5 - 4871: 67,4 - 4873: 71,3 - 4874: 71,-3 - 4875: 72,-1 - 4876: 67,-6 - 4877: 56,-3 - 4878: 54,-7 - 4879: 63,2 - 4880: 70,5 - 5234: 50,-31 - 5235: 48,-37 - 5324: 22,-70 - 5325: 24,-71 - 5326: 23,-72 - 5327: 22,-71 - 5328: 25,-70 - 5329: 25,-69 - 5330: 18,-74 - 5331: 17,-75 - 5332: 19,-75 - 5333: 20,-74 - 5334: 21,-73 - 5335: 21,-74 - 5336: 18,-74 - 5337: 17,-73 + 99: -9,-9 + 100: -10,-8 + 112: -2,39 + 117: -2,15 + 129: 9,-8 + 130: -2,-11 + 138: -9,5 + 393: -28,9 + 1803: -60,-14 + 1910: -41,-44 + 1911: -41,-39 + 1912: -43,-47 + 1913: -42,-47 + 1914: -38,-48 + 1915: -38,-43 + 1916: -41,-51 + 1917: -45,-55 + 1918: -46,-57 + 1919: -47,-60 + 1920: -43,-55 + 1921: -46,-46 + 1922: -42,-41 + 1943: -44,-73 + 1944: -49,-70 + 1945: -44,-69 + 1946: -41,-69 + 1955: -48,-70 + 1957: -47,-64 + 1958: -38,-65 + 1959: -39,-72 + 1960: -31,-71 + 1961: -28,-73 + 1962: -24,-71 + 1963: -25,-73 + 1964: -20,-73 + 1965: -19,-71 + 1986: -18,-72 + 1987: -15,-67 + 1988: -18,-66 + 2103: -31,-79 + 2104: -34,-75 + 2105: -29,-76 + 2138: -53,-23 + 2139: -45,-29 + 2140: -50,-25 + 2149: -62,-23 + 2150: -47,-23 + 2151: -52,-28 + 2388: -91,-24 + 2389: -81,-22 + 2390: -80,-26 + 2391: -86,-27 + 2392: -95,-23 + 2393: -93,-19 + 2394: -84,-27 + 2395: -87,-24 + 2495: -25,52 + 2496: -31,51 + 2497: -17,52 + 2520: 58,-42 + 2526: 57,-46 + 2527: 59,-45 + 2528: 58,-46 + 2533: 36,-45 + 2534: 36,-40 + 2535: 34,-44 + 2548: 50,-43 + 2549: 44,-45 + 2550: 39,-44 + 2551: 47,-44 + 2552: 45,-44 + 2553: 54,-45 + 2554: 55,-43 + 2559: 46,-44 + 2560: 53,-45 + 2561: 39,-47 + 2562: 40,-45 + 2563: 40,-48 + 2564: 48,-45 + 2565: 49,-46 + 2566: 49,-47 + 2567: 51,-46 + 2568: 52,-44 + 2569: 52,-43 + 2856: 39,-65 + 2857: 42,-64 + 2858: 40,-63 + 2869: 39,-60 + 2870: 41,-60 + 2871: 42,-61 + 2872: 36,-57 + 2873: 35,-56 + 2874: 37,-55 + 2884: 36,-61 + 2885: 36,-65 + 2886: 33,-66 + 2899: 50,-65 + 2900: 51,-67 + 2901: 53,-68 + 2902: 54,-68 + 2903: 57,-66 + 2904: 56,-65 + 2905: 45,-67 + 2906: 46,-66 + 2907: 46,-61 + 2908: 50,-59 + 2909: 48,-57 + 2910: 50,-61 + 2911: 49,-60 + 2941: 41,-67 + 2942: 42,-68 + 3050: -14,49 + 3051: -14,49 + 3052: -15,51 + 3053: -14,52 + 3054: -18,53 + 3055: -18,53 + 3056: -20,52 + 3057: -25,52 + 3058: -27,53 + 3059: -28,52 + 3060: -28,52 + 3061: -30,53 + 3062: -31,52 + 3063: -28,52 + 3064: -28,53 + 3065: -26,53 + 3066: -25,52 + 3067: -20,53 + 3068: -18,53 + 3069: -19,53 + 3070: -17,52 + 3071: -16,53 + 3072: -14,46 + 3146: 1,52 + 3147: -2,49 + 3148: -6,51 + 3228: 1,45 + 3236: 6,50 + 3237: 5,53 + 3238: 7,53 + 3239: 11,50 + 3240: 10,54 + 3241: 12,53 + 3242: 7,52 + 3471: 103,52 + 3472: 104,52 + 3473: 104,51 + 3474: 103,51 + 3475: 105,52 + 3476: 105,53 + 3477: 104,53 + 3478: 103,53 + 3479: 103,54 + 3480: 104,54 + 3481: 104,54 + 3482: 102,55 + 3483: 103,55 + 3484: 104,55 + 3485: 105,55 + 3486: 102,53 + 3487: 101,53 + 3488: 100,53 + 3489: 100,52 + 3490: 100,51 + 3491: 100,51 + 3492: 100,50 + 3493: 101,50 + 3494: 101,51 + 3495: 101,52 + 3496: 102,52 + 3497: 102,51 + 3498: 104,50 + 3499: 104,49 + 3500: 105,51 + 3501: 106,51 + 3502: 107,51 + 3503: 107,52 + 3504: 106,52 + 3505: 107,52 + 3506: 107,53 + 3507: 106,53 + 3508: 106,54 + 3509: 105,54 + 3989: -6,67 + 3990: 1,59 + 3991: -1,49 + 3992: -7,51 + 3993: -2,41 + 3994: -50,24 + 3995: -50,17 + 3996: -67,21 + 3997: -69,15 + 3998: -88,14 + 3999: -86,21 + 4000: -97,14 + 4001: -98,22 + 4002: -78,26 + 4003: -76,36 + 4004: -78,43 + 4005: -60,42 + 4006: -58,32 + 4007: -48,33 + 4008: -54,37 + 4009: -55,41 + 4010: -49,42 + 4011: -44,45 + 4012: -40,47 + 4013: -38,48 + 4014: -38,52 + 4015: -35,47 + 4016: -37,42 + 4017: -38,36 + 4018: -43,32 + 4019: -50,33 + 4035: -37,56 + 4036: -30,63 + 4037: -29,60 + 4038: -38,63 + 4039: -21,52 + 4040: -23,47 + 4041: -21,39 + 4042: -23,36 + 4043: -33,36 + 4044: -36,41 + 4045: -35,47 + 4051: 7,59 + 4052: 6,57 + 4059: -67,18 + 4060: -78,33 + 4061: -78,40 + 4072: -74,-11 + 4350: -50,-50 + 4360: -49,-31 + 4440: 14,51 + 4441: 15,48 + 4442: 16,49 + 4443: 15,43 + 4547: 71,-17 + 4548: 70,-15 + 4550: 72,-13 + 4551: 71,-11 + 4553: 72,-16 + 4555: 75,-15 + 4556: 76,-17 + 4557: 76,-16 + 4558: 71,-9 + 4560: 70,-8 + 4561: 70,-8 + 4562: 71,-7 + 4563: 71,-6 + 4564: 73,-6 + 4565: 64,-5 + 4566: 63,-3 + 4567: 60,-4 + 4569: 56,-5 + 4570: 53,0 + 4572: 55,1 + 4573: 53,3 + 4574: 59,1 + 4576: 54,-5 + 4577: 61,-2 + 4578: 61,-2 + 4579: 62,-1 + 4581: 63,-2 + 4582: 63,-2 + 4583: 63,-2 + 4585: 69,5 + 4586: 65,4 + 4588: 63,4 + 4589: 71,4 + 4590: 71,6 + 4591: 68,6 + 4592: 69,5 + 4593: 69,5 + 4594: 67,4 + 4596: 71,3 + 4597: 71,-3 + 4598: 72,-1 + 4599: 67,-6 + 4600: 56,-3 + 4601: 54,-7 + 4602: 63,2 + 4603: 70,5 + 4935: 50,-31 + 4936: 48,-37 + 5025: 22,-70 + 5026: 24,-71 + 5027: 23,-72 + 5028: 22,-71 + 5029: 25,-70 + 5030: 25,-69 + 5031: 18,-74 + 5032: 17,-75 + 5033: 19,-75 + 5034: 20,-74 + 5035: 21,-73 + 5036: 21,-74 + 5037: 18,-74 + 5038: 17,-73 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Dirt decals: - 3939: 0,59 - 3940: -7,66 - 3941: -3,59 - 3942: -7,53 + 3727: 0,59 + 3728: -7,66 + 3729: -3,59 + 3730: -7,53 - node: cleanable: True color: '#EFB34196' id: DirtHeavy decals: - 1248: 17,16 - 1249: 17,18 - 1250: 14,19 - 1251: 15,18 - 1252: 13,18 - 1253: 15,19 - 1254: 17,14 - 1255: 17,18 - 1258: -48,28 - 1259: -45,28 - 1260: -51,28 - 1265: -19,-12 - 1266: -15,-11 - 1267: -14,-12 - 1268: -7,-14 - 1269: -10,-14 - 1270: 9,-14 - 1271: 9,-13 - 1272: 2,-14 - 1273: 9,-18 - 1274: 8,-18 - 1275: 9,-16 - 1276: 10,-17 - 1277: 14,-9 - 1278: 14,-10 - 1279: 17,-10 - 1280: 26,15 - 1281: 23,17 - 1282: 25,17 - 1283: 23,14 - 1284: 26,25 - 1285: 27,28 - 3059: 34,-60 + 1180: 17,16 + 1181: 17,18 + 1182: 14,19 + 1183: 15,18 + 1184: 13,18 + 1185: 15,19 + 1186: 17,14 + 1187: 17,18 + 1190: -48,28 + 1191: -45,28 + 1192: -51,28 + 1197: -19,-12 + 1198: -15,-11 + 1199: -7,-14 + 1200: -10,-14 + 1201: 9,-14 + 1202: 9,-13 + 1203: 2,-14 + 1204: 9,-18 + 1205: 8,-18 + 1206: 9,-16 + 1207: 10,-17 + 1208: 14,-9 + 1209: 14,-10 + 1210: 17,-10 + 1211: 26,15 + 1212: 23,17 + 1213: 25,17 + 1214: 23,14 + 1215: 26,25 + 1216: 27,28 + 2875: 34,-60 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 120: -1,-18 - 128: -13,0 - 129: -14,-1 - 131: -14,27 - 132: -2,26 - 133: -3,40 - 134: 0,41 - 138: 6,29 - 139: 3,32 - 140: -2,18 - 141: 0,16 - 144: 7,7 - 145: 5,11 - 146: 12,0 - 147: 34,1 - 152: 19,-9 - 153: 19,-5 - 154: 9,-7 - 157: -1,-12 - 159: -1,-1 - 164: -5,11 - 447: -30,9 - 448: -27,9 - 633: 35,-21 - 634: 24,-22 - 1180: 24,7 - 1181: 21,3 - 1947: -72,-15 - 2055: -46,-39 - 2072: -43,-57 - 2074: -42,-46 - 2076: -47,-59 - 2095: -46,-69 - 2097: -50,-71 - 2138: -13,-67 - 2233: 32,-22 - 2246: -30,-75 - 2288: -59,-24 - 2289: -65,-23 - 2294: -75,-18 - 2295: -67,-17 - 2410: 52,-23 - 2411: 50,-23 - 2415: 58,-40 - 2535: -81,-27 - 2536: -90,-27 - 2537: -91,-22 - 2550: -77,-22 - 2551: -73,-20 - 2654: -26,48 - 2655: -24,26 - 2658: -16,46 - 2685: -29,53 - 2687: -19,52 - 2727: 41,-44 - 2728: 49,-43 - 2729: 47,-44 - 2730: 54,-45 - 2731: 51,-43 - 2741: 35,-42 - 2742: 50,-44 - 3048: 41,-64 - 3049: 39,-61 - 3050: 42,-60 - 3071: 31,-66 - 3355: 3,53 - 3441: 7,52 - 3442: 5,51 - 3443: 5,54 - 3444: 10,46 - 3445: 12,45 - 3460: -1,49 - 4259: -54,33 - 4260: -55,39 - 4261: -52,45 - 4262: -46,50 - 4263: -40,47 - 4264: -38,37 - 4286: -23,39 - 4287: -22,35 - 4288: -21,42 - 4289: -23,53 - 4306: -23,44 - 4308: 5,62 - 4311: -67,14 - 4315: -86,16 - 4317: -97,20 - 4319: -74,-5 - 4320: -60,-1 - 4613: -48,-36 - 4614: -52,-32 - 4616: -50,-31 - 4617: -50,-40 - 4618: -50,-47 - 4619: -49,-44 - 4620: -50,-52 - 4621: -46,-35 - 5266: -3,-70 - 5267: 5,-70 - 5268: 4,-70 - 5269: 7,-72 + 97: -1,-18 + 105: -13,0 + 107: -2,26 + 108: -3,40 + 109: 0,41 + 113: 6,29 + 114: 3,32 + 115: -2,18 + 116: 0,16 + 119: 7,7 + 120: 5,11 + 121: 12,0 + 126: 19,-9 + 127: 19,-5 + 128: 9,-7 + 131: -1,-12 + 133: -1,-1 + 137: -5,11 + 390: -30,9 + 391: -27,9 + 576: 35,-21 + 577: 24,-22 + 1112: 24,7 + 1113: 21,3 + 1800: -72,-15 + 1908: -46,-39 + 1925: -43,-57 + 1927: -42,-46 + 1929: -47,-59 + 1948: -46,-69 + 1950: -50,-71 + 1991: -13,-67 + 2086: 32,-22 + 2099: -30,-75 + 2141: -59,-24 + 2142: -65,-23 + 2147: -75,-18 + 2148: -67,-17 + 2263: 52,-23 + 2264: 50,-23 + 2268: 58,-40 + 2385: -81,-27 + 2386: -90,-27 + 2387: -91,-22 + 2400: -77,-22 + 2401: -73,-20 + 2473: -26,48 + 2474: -24,26 + 2476: -16,46 + 2501: -29,53 + 2503: -19,52 + 2543: 41,-44 + 2544: 49,-43 + 2545: 47,-44 + 2546: 54,-45 + 2547: 51,-43 + 2557: 35,-42 + 2558: 50,-44 + 2864: 41,-64 + 2865: 39,-61 + 2866: 42,-60 + 2887: 31,-66 + 3157: 3,53 + 3243: 7,52 + 3244: 5,51 + 3245: 5,54 + 3246: 10,46 + 3247: 12,45 + 3262: -1,49 + 4020: -54,33 + 4021: -55,39 + 4022: -52,45 + 4023: -46,50 + 4024: -40,47 + 4025: -38,37 + 4047: -23,39 + 4048: -22,35 + 4049: -21,42 + 4050: -23,53 + 4066: -23,44 + 4068: 5,62 + 4073: -74,-5 + 4074: -60,-1 + 4358: -48,-36 + 4359: -52,-32 + 4361: -50,-31 + 4362: -50,-40 + 4363: -50,-47 + 4364: -49,-44 + 4365: -50,-52 + 4366: -46,-35 + 4967: -3,-70 + 4968: 5,-70 + 4969: 4,-70 + 4970: 7,-72 + - node: + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 7901: 21.00239,-43.991558 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 3938: -7,58 - 3943: -7,63 - 3944: -1,66 - 3947: -8,65 + 3726: -7,58 + 3731: -7,63 + 3732: -1,66 + 3735: -8,65 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3356: 2,50 - 3430: 1,47 - 4302: -50,19 - 4307: -21,49 - 4310: 0,34 - 4312: -75,23 - 4316: -98,16 - 4605: -49,-51 - 4606: -50,-46 - 4608: -49,-44 - 5270: 0,-72 - 5271: 2,-72 + 3158: 2,50 + 3232: 1,47 + 4062: -50,19 + 4067: -21,49 + 4070: 0,34 + 4071: -75,23 + 4351: -49,-51 + 4352: -50,-46 + 4353: -49,-44 + 4971: 0,-72 + 4972: 2,-72 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 119: -35,-51 - 124: -9,-7 - 125: -11,-6 - 130: -22,12 - 135: 0,38 - 136: 0,32 - 143: 8,9 - 148: 19,4 - 149: 21,6 - 150: 19,-4 - 151: 20,-11 - 158: 7,-21 - 160: 0,1 - 161: 2,5 - 162: -9,7 - 163: -12,8 - 167: -35,28 - 225: -47,14 - 226: -47,18 - 431: -33,12 - 432: -32,14 - 433: -39,15 - 434: -40,13 - 449: -30,10 - 635: 24,-21 - 636: 26,-22 - 637: 27,-16 - 638: 16,-21 - 994: -83,22 - 1174: 27,34 - 1175: 28,34 - 1176: 26,35 - 1177: 16,23 - 1184: 24,19 - 1185: 27,16 - 1186: 26,21 - 1197: 21,22 - 1198: 18,22 - 1199: 19,21 - 1200: 10,23 - 1209: 20,14 - 1210: 26,23 - 1211: 27,32 - 1212: 28,31 - 1213: 27,33 - 1214: 27,29 - 1215: 20,22 - 1216: 22,23 - 1217: 19,25 - 1218: 19,30 - 1219: 24,28 - 1220: 24,27 - 1237: 14,34 - 1238: 14,36 - 1239: 16,36 - 1240: 14,26 - 1241: 15,25 - 1242: 14,29 - 1256: -47,29 - 1257: -50,29 - 1261: -46,29 - 1262: -46,28 - 1263: -18,-12 - 1264: -17,-13 - 1286: 25,23 - 1287: 15,23 - 1288: 15,25 - 1289: 4,26 - 1290: 4,26 - 1291: 19,30 - 1292: 23,25 - 1293: 27,33 - 1946: -91,-6 - 1949: -69,-14 - 1953: -55,-9 - 2053: -40,-42 - 2054: -41,-39 - 2070: -38,-46 - 2077: -45,-57 - 2078: -40,-53 - 2079: -38,-42 - 2098: -46,-68 - 2099: -42,-71 - 2115: -38,-68 - 2116: -44,-66 - 2117: -47,-63 - 2118: -39,-66 - 2120: -39,-72 - 2121: -34,-71 - 2122: -30,-72 - 2136: -17,-71 - 2139: -17,-66 - 2248: -28,-79 - 2249: -34,-75 - 2254: -32,-77 - 2278: -66,-23 - 2279: -66,-25 - 2282: -47,-24 - 2283: -56,-25 - 2290: -61,-25 - 2291: -67,-25 - 2292: -72,-19 - 2293: -79,-22 - 2299: -51,-24 - 2413: 62,-34 - 2416: 61,-40 - 2417: 41,-20 - 2426: 35,-14 - 2531: -81,-22 - 2532: -92,-24 - 2533: -96,-22 - 2534: -93,-19 - 2547: -88,-22 - 2548: -95,-24 - 2549: -84,-28 - 2657: -22,26 - 2688: -31,53 - 2702: 57,-43 - 2703: 59,-41 - 2705: 57,-46 - 2707: 57,-45 - 2708: 57,-45 - 2709: 59,-46 - 2715: 35,-44 - 2716: 36,-41 - 2722: 55,-45 - 2723: 50,-43 - 2724: 55,-43 - 2725: 56,-44 - 2726: 42,-45 - 2856: -6,-50 - 2857: -4,-52 - 3045: 40,-64 - 3046: 43,-65 - 3047: 39,-63 - 3051: 41,-61 - 3052: 40,-60 - 3078: 53,-63 - 3079: 55,-65 - 3080: 55,-65 - 3081: 55,-65 - 3082: 49,-63 - 3271: -14,50 - 3272: -18,52 - 3273: -18,52 - 3274: -18,52 - 3433: -1,46 - 3446: 10,51 - 3447: 12,50 - 3448: 11,53 - 3449: 12,54 - 3461: -6,52 - 4265: -48,33 - 4266: -43,32 - 4267: -38,37 - 4268: -54,33 - 4269: -50,42 - 4270: -44,45 - 4271: -34,46 - 4303: -50,19 - 4304: -47,20 - 4309: 6,66 - 4313: -89,22 - 4314: -85,14 - 4321: -61,3 - 4609: -49,-50 - 4610: -49,-42 - 5272: -3,-70 - 5273: -3,-72 - 5274: -4,-72 - 5275: 7,-72 - 5276: 5,-72 - 5277: 9,-73 - 5278: 9,-74 - 5279: 8,-74 + 96: -35,-51 + 101: -9,-7 + 102: -11,-6 + 106: -22,12 + 110: 0,38 + 111: 0,32 + 118: 8,9 + 122: 19,4 + 123: 21,6 + 124: 19,-4 + 125: 20,-11 + 132: 7,-21 + 134: 2,5 + 135: -9,7 + 136: -12,8 + 197: -47,14 + 198: -47,18 + 374: -33,12 + 375: -32,14 + 376: -39,15 + 377: -40,13 + 392: -30,10 + 578: 24,-21 + 579: 26,-22 + 580: 27,-16 + 581: 16,-21 + 930: -83,22 + 1106: 27,34 + 1107: 28,34 + 1108: 26,35 + 1109: 16,23 + 1116: 24,19 + 1117: 27,16 + 1118: 26,21 + 1129: 21,22 + 1130: 18,22 + 1131: 19,21 + 1132: 10,23 + 1141: 20,14 + 1142: 26,23 + 1143: 27,32 + 1144: 28,31 + 1145: 27,33 + 1146: 27,29 + 1147: 20,22 + 1148: 22,23 + 1149: 19,25 + 1150: 19,30 + 1151: 24,28 + 1152: 24,27 + 1169: 14,34 + 1170: 14,36 + 1171: 16,36 + 1172: 14,26 + 1173: 15,25 + 1174: 14,29 + 1188: -47,29 + 1189: -50,29 + 1193: -46,29 + 1194: -46,28 + 1195: -18,-12 + 1196: -17,-13 + 1217: 25,23 + 1218: 15,23 + 1219: 15,25 + 1220: 4,26 + 1221: 4,26 + 1222: 19,30 + 1223: 23,25 + 1224: 27,33 + 1802: -69,-14 + 1806: -55,-9 + 1906: -40,-42 + 1907: -41,-39 + 1923: -38,-46 + 1930: -45,-57 + 1931: -40,-53 + 1932: -38,-42 + 1951: -46,-68 + 1952: -42,-71 + 1968: -38,-68 + 1969: -44,-66 + 1970: -47,-63 + 1971: -39,-66 + 1973: -39,-72 + 1974: -34,-71 + 1975: -30,-72 + 1989: -17,-71 + 1992: -17,-66 + 2101: -28,-79 + 2102: -34,-75 + 2107: -32,-77 + 2131: -66,-23 + 2132: -66,-25 + 2135: -47,-24 + 2136: -56,-25 + 2143: -61,-25 + 2144: -67,-25 + 2145: -72,-19 + 2146: -79,-22 + 2152: -51,-24 + 2266: 62,-34 + 2269: 61,-40 + 2270: 41,-20 + 2279: 35,-14 + 2381: -81,-22 + 2382: -92,-24 + 2383: -96,-22 + 2384: -93,-19 + 2397: -88,-22 + 2398: -95,-24 + 2399: -84,-28 + 2504: -31,53 + 2518: 57,-43 + 2519: 59,-41 + 2521: 57,-46 + 2523: 57,-45 + 2524: 57,-45 + 2525: 59,-46 + 2531: 35,-44 + 2532: 36,-41 + 2538: 55,-45 + 2539: 50,-43 + 2540: 55,-43 + 2541: 56,-44 + 2542: 42,-45 + 2672: -6,-50 + 2673: -4,-52 + 2861: 40,-64 + 2862: 43,-65 + 2863: 39,-63 + 2867: 41,-61 + 2868: 40,-60 + 2894: 53,-63 + 2895: 55,-65 + 2896: 55,-65 + 2897: 55,-65 + 2898: 49,-63 + 3073: -14,50 + 3074: -18,52 + 3075: -18,52 + 3076: -18,52 + 3235: -1,46 + 3248: 10,51 + 3249: 12,50 + 3250: 11,53 + 3251: 12,54 + 3263: -6,52 + 4026: -48,33 + 4027: -43,32 + 4028: -38,37 + 4029: -54,33 + 4030: -50,42 + 4031: -44,45 + 4032: -34,46 + 4063: -50,19 + 4064: -47,20 + 4069: 6,66 + 4075: -61,3 + 4354: -49,-50 + 4355: -49,-42 + 4973: -3,-70 + 4974: -3,-72 + 4975: -4,-72 + 4976: 7,-72 + 4977: 5,-72 + 4978: 9,-73 + 4979: 9,-74 + 4980: 8,-74 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtLight decals: - 3945: -2,58 + 3733: -2,58 - node: cleanable: True color: '#EFB34196' id: DirtMedium decals: - 1201: 5,25 - 1202: 7,23 - 1203: 10,22 - 1204: 20,17 - 1205: 20,16 - 1206: 19,12 - 1207: 20,11 - 1208: 21,13 - 1221: 15,22 - 1222: 13,22 - 1223: 14,21 - 1224: 3,26 - 1225: 3,25 - 1226: 11,26 - 1227: 24,14 - 1228: 23,17 - 1229: 25,17 - 1230: 20,18 - 1231: 20,19 - 1232: 19,20 - 1233: 15,29 - 1234: 16,30 - 1235: 16,33 - 1236: 15,33 - 1243: 16,31 - 1244: 16,34 - 1245: 14,30 - 1246: 20,23 - 1247: 19,22 + 1133: 5,25 + 1134: 7,23 + 1135: 10,22 + 1136: 20,17 + 1137: 20,16 + 1138: 19,12 + 1139: 20,11 + 1140: 21,13 + 1153: 15,22 + 1154: 13,22 + 1155: 14,21 + 1156: 3,26 + 1157: 3,25 + 1158: 11,26 + 1159: 24,14 + 1160: 23,17 + 1161: 25,17 + 1162: 20,18 + 1163: 20,19 + 1164: 19,20 + 1165: 15,29 + 1166: 16,30 + 1167: 16,33 + 1168: 15,33 + 1175: 16,31 + 1176: 16,34 + 1177: 14,30 + 1178: 20,23 + 1179: 19,22 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 121: -6,-10 - 126: -9,-5 - 127: -9,-4 - 1152: 13,32 - 1178: 20,10 - 1179: 23,5 - 1948: -69,-17 - 1951: -65,-14 - 1952: -57,-13 - 2052: -44,-41 - 2056: -46,-48 - 2071: -42,-51 - 2073: -45,-53 - 2075: -45,-42 - 2094: -48,-72 - 2096: -45,-73 - 2100: -43,-72 - 2101: -47,-73 - 2113: -38,-69 - 2114: -28,-73 - 2119: -47,-65 - 2137: -19,-69 - 2231: 32,-22 - 2232: 34,-22 - 2247: -33,-79 - 2253: -27,-79 - 2284: -51,-27 - 2300: -47,-26 - 2412: 49,-22 - 2414: 61,-27 - 2530: -87,-26 - 2546: -83,-24 - 2683: -27,53 - 2706: 59,-45 - 2713: 36,-45 - 2714: 36,-40 - 2720: 38,-45 - 2721: 49,-45 - 2739: 48,-45 - 2740: 42,-44 - 3043: 40,-65 - 3044: 42,-63 - 3073: 50,-64 - 3074: 50,-64 - 3075: 52,-65 - 3076: 55,-64 - 3077: 57,-65 - 3096: 48,-61 - 3097: 48,-61 - 3098: 48,-59 - 3099: 45,-61 - 3100: 45,-61 - 3101: 45,-61 - 3450: 12,53 - 3451: 10,53 - 3452: 10,51 - 4272: -49,37 - 4273: -52,48 - 4292: 5,64 - 4293: 8,61 - 4305: -46,13 - 4611: -50,-43 - 4612: -50,-35 + 98: -6,-10 + 103: -9,-5 + 104: -9,-4 + 1085: 13,32 + 1110: 20,10 + 1111: 23,5 + 1801: -69,-17 + 1804: -65,-14 + 1805: -57,-13 + 1905: -44,-41 + 1909: -46,-48 + 1924: -42,-51 + 1926: -45,-53 + 1928: -45,-42 + 1947: -48,-72 + 1949: -45,-73 + 1953: -43,-72 + 1954: -47,-73 + 1966: -38,-69 + 1967: -28,-73 + 1972: -47,-65 + 1990: -19,-69 + 2084: 32,-22 + 2085: 34,-22 + 2100: -33,-79 + 2106: -27,-79 + 2137: -51,-27 + 2153: -47,-26 + 2265: 49,-22 + 2267: 61,-27 + 2380: -87,-26 + 2396: -83,-24 + 2499: -27,53 + 2522: 59,-45 + 2529: 36,-45 + 2530: 36,-40 + 2536: 38,-45 + 2537: 49,-45 + 2555: 48,-45 + 2556: 42,-44 + 2859: 40,-65 + 2860: 42,-63 + 2889: 50,-64 + 2890: 50,-64 + 2891: 52,-65 + 2892: 55,-64 + 2893: 57,-65 + 2912: 48,-61 + 2913: 48,-61 + 2914: 48,-59 + 2915: 45,-61 + 2916: 45,-61 + 2917: 45,-61 + 3252: 12,53 + 3253: 10,53 + 3254: 10,51 + 4033: -49,37 + 4034: -52,48 + 4053: 5,64 + 4054: 8,61 + 4065: -46,13 + 4356: -50,-43 + 4357: -50,-35 + - node: + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 7902: 22.97638,-47.963078 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtMedium decals: - 3946: -8,56 - 3948: -5,58 - 3949: -7,51 - 3950: -2,68 + 3734: -8,56 + 3736: -5,58 + 3737: -7,51 + 3738: -2,68 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 212: -53.967384,17.06149 - 1470: -93.870186,17.100761 - 1760: -89.82415,-6.9300165 - 1796: -66.82471,3.6005492 - 1954: -42.85999,-62.902733 - 2650: -14,29 - 2652: -15,25 - 2959: -11,-33 - 2963: -9,-33 - 4599: -34.89211,37.987 + 184: -53.967384,17.06149 + 1399: -93.870186,17.100761 + 1685: -66.82471,3.6005492 + 1807: -42.85999,-62.902733 + 2775: -11,-33 + 2779: -9,-33 + 4345: -34.89211,37.987 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 213: -53.967384,18.00637 - 236: -29.708357,-60.651573 - 238: -30.020857,-62.67381 - 1790: -66.79346,4.850549 - 1955: -42.703682,-59.720562 - 2965: -7,-32 - 2966: -7,-33 - 3542: -12.86464,-34.866253 - 3800: -2.5071669,54.210087 - 3809: -1.1049442,60.619446 - 3817: -2.6484795,64.4585 - 4007: -0.9312969,69.90281 - 6317: -12,24 - 6583: -39,25 - 7491: 1,-6 + 185: -53.967384,18.00637 + 204: -29.708357,-60.651573 + 206: -30.020857,-62.67381 + 1679: -66.79346,4.850549 + 1808: -42.703682,-59.720562 + 2781: -7,-32 + 2782: -7,-33 + 3334: -12.86464,-34.866253 + 3592: -2.5071669,54.210087 + 3601: -1.1049442,60.619446 + 3609: -2.6484795,64.4585 + 3795: -0.9312969,69.90281 + 5973: -12,24 + 6237: -39,25 + 7115: 1,-6 + 7714: -57.23278,2.1734834 + 7918: -14.940532,27.926476 + 8080: -44.00885,-1.0554813 + 8115: -17,-2 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 274: -27.96831,-63.066265 - 1464: -72.138016,17.018951 - 1761: -89.433525,-6.0393915 - 1791: -66.34033,4.538049 - 3775: -2,53 - 3801: -0.38462186,54.210106 - 6585: -33,25 + 217: -27.96831,-63.066265 + 1393: -72.138016,17.018951 + 1680: -66.34033,4.538049 + 3567: -2,53 + 3593: -0.38462186,54.210106 + 6239: -33,25 + 7917: -15.862406,27.957724 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 1762: -88.01165,-6.7893915 - 2967: -12,-32 - 3544: -8.708391,-35.053757 - 3796: -3.0362968,55.087666 - 6320: -10,24 - 6588: -39,24 - 6770: 36,-2 - 6771: 30,-2 + 2783: -12,-32 + 3336: -8.708391,-35.053757 + 3588: -3.0362968,55.087666 + 5976: -10,24 + 6242: -39,24 + 6424: 36,-2 + 6425: 30,-2 + 7719: -36,0 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 1798: -66.66846,2.9911737 - 3802: -4.628747,54.192368 - 3811: -1.1313304,62.479603 - 3814: -2.5561326,60.777756 - 3818: -4.8516464,63.46905 - 3819: -4.469061,60.065353 - 3820: -0.41892922,61.358234 + 1687: -66.66846,2.9911737 + 3594: -4.628747,54.192368 + 3603: -1.1313304,62.479603 + 3606: -2.5561326,60.777756 + 3610: -4.8516464,63.46905 + 3611: -4.469061,60.065353 + 3612: -0.41892922,61.358234 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 214: -53.98546,18.922457 - 660: -63.7718,18.864635 - 1784: -62.31045,-6.352316 - 2555: -22.023563,23.954266 - 3543: -10.55214,-34.741253 - 3777: -5,53 - 3803: -1.9843609,55.300438 - 3810: -3.769852,62.994114 - 4601: -24.022282,41.988125 + 186: -53.98546,18.922457 + 603: -63.7718,18.864635 + 1673: -62.31045,-6.352316 + 2403: -22.023563,23.954266 + 3335: -10.55214,-34.741253 + 3569: -5,53 + 3595: -1.9843609,55.300438 + 3602: -3.769852,62.994114 + 4347: -24.022282,41.988125 + 7920: -14.065532,27.988974 + 8083: -45.024475,-1.0086063 - node: color: '#7F5C462E' id: Flowerspv1 decals: - 456: 19,-33 + 399: 19,-33 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 239: -28.270857,-61.28743 - 661: -61.787426,17.19276 - 1465: -81.71614,17.143951 - 1783: -61.93545,-11.946067 - 3798: -4.6832285,55.503494 - 3813: -2.780406,62.677494 - 6582: -33,25 - 6769: 30,-3 - 7493: 1,-6 + 207: -28.270857,-61.28743 + 604: -61.787426,17.19276 + 1394: -81.71614,17.143951 + 1672: -61.93545,-11.946067 + 3590: -4.6832285,55.503494 + 3605: -2.780406,62.677494 + 6236: -33,25 + 6423: 30,-3 + 7117: 1,-6 + 7722: -54,0 + 8117: -17,-2 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 1471: -89.94831,18.413261 - 1766: -85.4804,-5.2737665 - 1772: -80.29238,-10.61983 - 1795: -66.12158,3.6630492 - 1801: -66.15283,4.944299 - 2557: -22.007938,23.969893 - 2653: -14,25 - 3776: -1,52 - 3815: -2.39782,61.84636 - 3816: -0.26061642,64.49808 - 4009: -0.071921945,70.04344 - 4598: -34.81919,34.882835 + 1400: -89.94831,18.413261 + 1684: -66.12158,3.6630492 + 1690: -66.15283,4.944299 + 2405: -22.007938,23.969893 + 3568: -1,52 + 3607: -2.39782,61.84636 + 3608: -0.26061642,64.49808 + 3797: -0.071921945,70.04344 + 4344: -34.81919,34.882835 + 7723: -54,0 + 8118: -15,-2 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 206: -32,-61 - 207: -39,-61 - 662: -58.911724,18.645885 - 1771: -80.21426,-9.447955 - 1782: -61.044827,-11.149192 - 1794: -66.80908,3.8974242 - 1799: -66.38721,3.053674 - 1957: -42.91447,-61.07982 - 3797: -2.7428827,56.306965 - 3812: -3.967742,61.991474 - 4600: -23.9702,41.029793 - 6318: -10,24 - 6581: -39,24 - 6587: -33,24 - 6772: 36,-3 - 7494: 2,-6 + 178: -32,-61 + 179: -39,-61 + 605: -58.911724,18.645885 + 1671: -61.044827,-11.149192 + 1683: -66.80908,3.8974242 + 1688: -66.38721,3.053674 + 1810: -42.91447,-61.07982 + 3589: -2.7428827,56.306965 + 3604: -3.967742,61.991474 + 4346: -23.9702,41.029793 + 5974: -10,24 + 6235: -39,24 + 6241: -33,24 + 6426: 36,-3 + 7118: 2,-6 + 7713: -57.63903,2.6891084 + 8075: -39.94635,1.0382686 - node: color: '#7F5C462E' id: Flowersy1 decals: - 457: 19,-36 - 458: 18,-35 - 459: 19,-35 - 460: 35,-38 - 461: 34,-38 - 462: 17,-42 - 463: 21,-42 - 464: 20,-42 - 465: 18,-42 + 400: 19,-36 + 401: 18,-35 + 402: 19,-35 + 403: 35,-38 + 404: 34,-38 + 405: 17,-42 + 406: 21,-42 + 407: 20,-42 + 408: 18,-42 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 237: -29.989607,-62.77805 - 273: -28.009977,-59.29281 - 1463: -78.12239,18.456451 - 1763: -87.26165,-5.5081415 - 1769: -82.95316,-10.045585 - 1956: -41.17243,-62.26744 - 2556: -21.961063,23.907393 - 2601: -22,33 - 2961: -6,-32 - 3774: -4,52 - 3799: -0.96509737,56.44148 - 3804: -3.4677968,52.956314 - 3807: -4.2447863,60.962452 - 4008: 0.8812027,69.90281 - 6584: -33,24 - 6767: 30,-2 - 6768: 36,-3 + 205: -29.989607,-62.77805 + 216: -28.009977,-59.29281 + 1392: -78.12239,18.456451 + 1809: -41.17243,-62.26744 + 2404: -21.961063,23.907393 + 2433: -22,33 + 2777: -6,-32 + 3566: -4,52 + 3591: -0.96509737,56.44148 + 3596: -3.4677968,52.956314 + 3599: -4.2447863,60.962452 + 3796: 0.8812027,69.90281 + 6238: -33,24 + 6421: 30,-2 + 6422: 36,-3 + 8116: -15,-2 + 9343: -88.937706,-9.171595 + 9347: -90.97364,-5.632481 - node: color: '#7F5C462E' id: Flowersy2 decals: - 454: 24,-30 - 455: 24,-31 + 397: 24,-30 + 398: 24,-31 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 208: -32,-61 - 209: -32,-61 - 210: -39,-61 - 235: -29.677107,-60.599453 - 240: -28.333357,-61.39167 - 1374: -30.067616,-47.199142 - 1768: -78.23441,-10.920585 - 1781: -59.93545,-9.524192 - 1792: -66.63721,4.303674 - 1797: -66.35596,3.303674 - 3808: -1.6854186,63.706512 - 6773: 30,-3 - 7492: 2,-6 + 180: -32,-61 + 181: -32,-61 + 182: -39,-61 + 203: -29.677107,-60.599453 + 208: -28.333357,-61.39167 + 1303: -30.067616,-47.199142 + 1670: -59.93545,-9.524192 + 1681: -66.63721,4.303674 + 1686: -66.35596,3.303674 + 3600: -1.6854186,63.706512 + 6427: 30,-3 + 7116: 2,-6 + 7712: -57.842155,2.2672336 + 8073: -39.930725,-0.9929813 + 9344: -86.008484,-5.573969 - node: color: '#7F5C462E' id: Flowersy3 decals: - 452: 8,-31 - 453: 13,-32 + 395: 8,-31 + 396: 13,-32 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 663: -55.42735,16.989635 - 664: -57.692974,17.083385 - 665: -63.88401,16.88026 - 1785: -61.24795,-5.336691 - 1793: -66.18408,3.9911742 - 1800: -66.66846,4.959924 - 2651: -15,29 - 2962: -6,-34 - 3805: -1.5035636,56.771015 - 3806: -4.152438,64.300186 - 4597: -28.980255,38.935028 - 4603: -24.011864,44.904793 - 6319: -12,24 + 606: -55.42735,16.989635 + 607: -57.692974,17.083385 + 608: -63.88401,16.88026 + 1674: -61.24795,-5.336691 + 1682: -66.18408,3.9911742 + 1689: -66.66846,4.959924 + 2778: -6,-34 + 3597: -1.5035636,56.771015 + 3598: -4.152438,64.300186 + 4343: -28.980255,38.935028 + 4349: -24.011864,44.904793 + 5975: -12,24 + 7720: -36,0 + 7721: -54,0 + 9345: -79.13782,-10.806859 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 275: -28.12456,-63.139233 - 1770: -81.75004,-9.108085 - 2960: -8,-34 - 3545: -10.536516,-34.22563 - 6586: -39,25 + 218: -28.12456,-63.139233 + 2776: -8,-34 + 3337: -10.536516,-34.22563 + 6240: -39,25 + 8074: -39.05572,-1.0242313 + 9346: -77.86976,-4.4283304 + 9348: -90.98851,-9.393631 + 9349: -89.17681,-8.857364 - node: color: '#7F5C462E' id: Grassa1 decals: - 498: 29,-9 - 499: 43,-12 - 500: 45,-12 - 567: 19,-40 - 568: 22,-37 - 569: 30,-33 - 570: 32,-33 - 571: 34,-35 - 586: 30,-4 - 595: -34,32 + 441: 29,-9 + 442: 43,-12 + 443: 45,-12 + 510: 19,-40 + 511: 22,-37 + 512: 30,-33 + 513: 32,-33 + 514: 34,-35 + 529: 30,-4 + 538: -34,32 - node: color: '#FFFFFFFF' id: Grassa1 decals: - 190: -38.01396,30.115616 - 271: 48.05359,-10.973281 - 272: 36.514786,6.033877 - 277: 9.0064535,-16.403347 - 278: 8.2408285,-16.903347 - 285: 2.2690213,-30.99835 - 292: 3.6195345,-31.01168 - 293: 5.9632845,-29.10543 - 294: 5.9476595,-29.66793 - 295: 5.9164095,-30.089806 - 297: 14.38542,-32.882526 - 301: 19.816046,-31.788776 - 302: 19.67542,-32.382526 - 303: 19.026402,-36.287754 - 308: 25.046812,-34.287083 - 311: 25.781187,-35.083958 - 320: 17.042494,-42.940327 - 641: -23.454065,-56.36861 - 642: -21.641565,-56.352985 - 649: -13.965528,-55.310844 - 1365: 47.37828,9.992167 - 1382: -24.00806,-64.97956 - 1383: -24.054935,-64.01081 - 1384: -26.00806,-60.387554 - 1387: -30.82056,-50.907864 - 1455: -41.63519,32.087513 - 1764: -86.246025,-6.7112665 - 1873: -55.488087,-9.114427 - 1888: -60.621918,-13.9619875 - 2103: -50,-70 - 2672: -30.485058,49.47105 - 3546: -9.73964,-34.913128 - 3792: -2.7023482,54.28315 - 3793: -4.0333357,56.46384 - 3794: -2.3446815,56.576546 - 3795: -0.4212278,54.27855 - 3821: -3.2817254,64.22103 - 3822: -4.6009865,62.571953 - 3823: -3.8094296,60.474327 - 3824: -0.63001025,63.69332 - 3825: -0.643203,60.131317 - 4718: 11.054118,58.83187 - 4761: 72,-39 - 4762: 70,-41 - 4763: 71,-37 - 4764: 71,-36 + 162: -38.01396,30.115616 + 214: 48.05359,-10.973281 + 215: 36.514786,6.033877 + 220: 9.0064535,-16.403347 + 221: 8.2408285,-16.903347 + 228: 2.2690213,-30.99835 + 235: 3.6195345,-31.01168 + 236: 5.9632845,-29.10543 + 237: 5.9476595,-29.66793 + 238: 5.9164095,-30.089806 + 240: 14.38542,-32.882526 + 244: 19.816046,-31.788776 + 245: 19.67542,-32.382526 + 246: 19.026402,-36.287754 + 251: 25.046812,-34.287083 + 254: 25.781187,-35.083958 + 263: 17.042494,-42.940327 + 584: -23.454065,-56.36861 + 585: -21.641565,-56.352985 + 592: -13.965528,-55.310844 + 1294: 47.37828,9.992167 + 1311: -24.00806,-64.97956 + 1312: -24.054935,-64.01081 + 1313: -26.00806,-60.387554 + 1316: -30.82056,-50.907864 + 1384: -41.63519,32.087513 + 1727: -55.488087,-9.114427 + 1742: -60.621918,-13.9619875 + 1956: -50,-70 + 2489: -30.485058,49.47105 + 3338: -9.73964,-34.913128 + 3584: -2.7023482,54.28315 + 3585: -4.0333357,56.46384 + 3586: -2.3446815,56.576546 + 3587: -0.4212278,54.27855 + 3613: -3.2817254,64.22103 + 3614: -4.6009865,62.571953 + 3615: -3.8094296,60.474327 + 3616: -0.63001025,63.69332 + 3617: -0.643203,60.131317 + 4445: 11.054118,58.83187 + 4484: 72,-39 + 4485: 70,-41 + 4486: 71,-37 + 4487: 71,-36 + 7715: -56.029655,4.5016084 - node: color: '#7F5C462E' id: Grassa2 decals: - 511: -13,13 - 512: -34,33 - 520: -43,16 - 521: -43,15 - 522: -42,18 - 539: -46,-8 - 576: 45,-15 - 577: 45,-14 - 578: 48,-14 - 579: 47,-14 - 580: 50,-14 - 581: 48,-11 + 454: -13,13 + 455: -34,33 + 463: -43,16 + 464: -43,15 + 465: -42,18 + 482: -46,-8 + 519: 45,-15 + 520: 45,-14 + 521: 48,-14 + 522: 47,-14 + 523: 50,-14 + 524: 48,-11 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 176: -13.988787,44.466625 - 197: -34.773777,9.345797 - 276: 8.9752035,-17.153345 - 296: 10.027269,-32.320026 - 312: 26.843687,-34.771458 - 2970: -6.1096616,-32.13932 - 4779: 44.41785,-15.127878 + 148: -13.988787,44.466625 + 169: -34.773777,9.345797 + 219: 8.9752035,-17.153345 + 239: 10.027269,-32.320026 + 255: 26.843687,-34.771458 + 2786: -6.1096616,-32.13932 + 4502: 44.41785,-15.127878 - node: color: '#7F5C462E' id: Grassa3 decals: - 504: 32,6 - 544: -24,-68 - 545: -23,-68 - 546: -22,-67 - 562: 19,-56 - 563: 19,-55 - 564: 19,-49 - 565: 19,-48 - 566: 17,-50 - 572: 30,-34 - 573: 36,-33 - 574: 36,-32 - 575: 30,-32 - 582: 42,6 - 583: 30,-6 - 584: 31,-6 - 585: 31,-5 - 596: -40,7 - 597: -36,-8 - 601: 21,-31 - 602: 15,-30 - 603: 12,-33 - 604: 11,-33 - 605: 12,-30 - 606: 37,-35 - 607: 38,-35 - 608: 32,-35 - 609: 30,-30 - 610: 40,-31 - 611: 38,-32 - 612: 34,-25 + 447: 32,6 + 487: -24,-68 + 488: -23,-68 + 489: -22,-67 + 505: 19,-56 + 506: 19,-55 + 507: 19,-49 + 508: 19,-48 + 509: 17,-50 + 515: 30,-34 + 516: 36,-33 + 517: 36,-32 + 518: 30,-32 + 525: 42,6 + 526: 30,-6 + 527: 31,-6 + 528: 31,-5 + 539: -40,7 + 540: -36,-8 + 544: 21,-31 + 545: 15,-30 + 546: 12,-33 + 547: 11,-33 + 548: 12,-30 + 549: 37,-35 + 550: 38,-35 + 551: 32,-35 + 552: 30,-30 + 553: 40,-31 + 554: 38,-32 + 555: 34,-25 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 19: -52.635757,-8.390939 - 20: -51.73134,-8.281564 - 21: -51.32509,-7.0315638 - 22: -49.16884,-8.047189 - 307: 23.826113,-31.116142 - 325: 18.935484,-50.07076 - 1364: 48.300156,9.976542 - 1872: -56.831837,-9.286302 - 3468: 42,-39 - 3830: -0.23423171,62.294907 - 5284: 4.462801,-69.860214 - 5285: 4.947176,-69.95406 - 5286: 5.290926,-70.14176 - 5287: 14.369049,-72.67565 - 5288: 13.759675,-73.09796 - 5289: 14.728425,-73.31694 + 14: -52.635757,-8.390939 + 15: -51.73134,-8.281564 + 16: -51.32509,-7.0315638 + 17: -49.16884,-8.047189 + 250: 23.826113,-31.116142 + 268: 18.935484,-50.07076 + 1293: 48.300156,9.976542 + 1726: -56.831837,-9.286302 + 3270: 42,-39 + 3622: -0.23423171,62.294907 + 4985: 4.462801,-69.860214 + 4986: 4.947176,-69.95406 + 4987: 5.290926,-70.14176 + 4988: 14.369049,-72.67565 + 4989: 13.759675,-73.09796 + 4990: 14.728425,-73.31694 - node: color: '#7F5C462E' id: Grassa4 decals: - 501: 45,-10 - 502: 43,3 - 503: 43,4 - 506: -6,15 - 507: -8,15 - 508: -11,14 - 509: -12,17 - 510: -11,18 - 513: -42,25 - 514: -41,25 - 515: -41,26 - 516: -32,25 - 523: -43,12 - 524: -42,11 - 525: -43,11 - 540: -32,-68 - 541: -32,-69 - 542: -30,-68 - 543: -29,-69 - 554: -22,-69 - 555: -23,-69 - 556: -28,-69 - 557: -35,-69 - 558: -35,-66 - 559: -18,-63 - 560: -17,-63 - 561: -20,-63 - 613: 32,-27 - 614: 36,-27 - 615: 39,-27 + 444: 45,-10 + 445: 43,3 + 446: 43,4 + 449: -6,15 + 450: -8,15 + 451: -11,14 + 452: -12,17 + 453: -11,18 + 456: -42,25 + 457: -41,25 + 458: -41,26 + 459: -32,25 + 466: -43,12 + 467: -42,11 + 468: -43,11 + 483: -32,-68 + 484: -32,-69 + 485: -30,-68 + 486: -29,-69 + 497: -22,-69 + 498: -23,-69 + 499: -28,-69 + 500: -35,-69 + 501: -35,-66 + 502: -18,-63 + 503: -17,-63 + 504: -20,-63 + 556: 32,-27 + 557: 36,-27 + 558: 39,-27 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 23: -46.403214,-5.5784388 - 279: -41.93076,17.65336 - 304: 17.229527,-35.64713 - 309: 27.187437,-33.443333 - 3469: 42,-38 - 3780: -3,52 - 3826: -2.2922797,63.06007 - 4719: 14.022849,54.81006 - 4757: 54,-50 - 4758: 54,-51 - 4759: 68,-52 - 4760: 69,-52 + 18: -46.403214,-5.5784388 + 222: -41.93076,17.65336 + 247: 17.229527,-35.64713 + 252: 27.187437,-33.443333 + 3271: 42,-38 + 3572: -3,52 + 3618: -2.2922797,63.06007 + 4446: 14.022849,54.81006 + 4480: 54,-50 + 4481: 54,-51 + 4482: 68,-52 + 4483: 69,-52 + 7716: -55.498405,4.6734834 - node: color: '#7F5C462E' id: Grassa5 decals: - 526: -41,10 - 527: -40,10 - 528: -40,9 + 469: -41,10 + 470: -40,10 + 471: -40,9 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 280: -42.040134,11.38987 - 306: 23.966738,-30.225517 - 310: 26.249937,-34.146458 - 650: -13.090528,-52.000862 - 1386: -27.211185,-56.98896 - 3781: -2,52 - 3827: -1.7118053,61.45058 + 223: -42.040134,11.38987 + 249: 23.966738,-30.225517 + 253: 26.249937,-34.146458 + 593: -13.090528,-52.000862 + 1315: -27.211185,-56.98896 + 3573: -2,52 + 3619: -1.7118053,61.45058 + 7717: -55.5609,4.1891084 - node: color: '#7F5C462E' id: Grassb1 decals: - 536: -53,-8 - 537: -50,-9 - 538: -49,-9 + 479: -53,-8 + 480: -50,-9 + 481: -49,-9 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 319: 17.933119,-42.065327 - 322: 18.900845,-55.885845 - 643: -22.06344,-56.99361 - 2971: -7.68141,-33.326813 - 2973: -11.314973,-33.076813 - 3477: 54.549698,-42.951454 - 3828: -4.77249,64.52446 + 262: 17.933119,-42.065327 + 265: 18.900845,-55.885845 + 586: -22.06344,-56.99361 + 2787: -7.68141,-33.326813 + 2789: -11.314973,-33.076813 + 3279: 54.549698,-42.951454 + 3620: -4.77249,64.52446 + 8139: -12.821653,-12.012418 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 317: 20.026869,-39.023838 - 323: 19.154234,-54.659214 - 651: -12.871778,-52.641487 - 1765: -85.277275,-6.5706415 - 1886: -67.090866,-14.603381 - 2964: -11.230522,-32.092453 - 2969: -10,-33 - 3476: 53.975037,-42.9911 - 3829: -1.7118047,64.630005 + 260: 20.026869,-39.023838 + 266: 19.154234,-54.659214 + 594: -12.871778,-52.641487 + 1740: -67.090866,-14.603381 + 2780: -11.230522,-32.092453 + 2785: -10,-33 + 3278: 53.975037,-42.9911 + 3621: -1.7118047,64.630005 - node: color: '#7F5C462E' id: Grassb3 decals: - 517: -45,10 - 518: -46,10 - 519: -46,9 - 547: -18,-64 - 548: -23,-64 - 549: -22,-64 - 550: -22,-65 - 551: -21,-64 - 552: -21,-61 - 553: -20,-61 - 593: 12,10 - 594: 17,11 + 460: -45,10 + 461: -46,10 + 462: -46,9 + 490: -18,-64 + 491: -23,-64 + 492: -22,-64 + 493: -22,-65 + 494: -21,-64 + 495: -21,-61 + 496: -20,-61 + 536: 12,10 + 537: 17,11 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 248: 18.245152,-34.86588 + 261: 17.011244,-41.95595 + 267: 18.935484,-51.957344 + 583: 18.06535,-43.00797 + 587: -22.829065,-56.99361 + 1297: 42.35935,6.6098104 + 4448: 15.179032,48.13269 - node: + cleanable: True color: '#FFFFFFFF' id: Grassb3 decals: - 305: 18.245152,-34.86588 - 318: 17.011244,-41.95595 - 324: 18.935484,-51.957344 - 640: 18.06535,-43.00797 - 644: -22.829065,-56.99361 - 1368: 42.35935,6.6098104 - 4721: 15.179032,48.13269 + 8266: -31.699778,26.88201 + - node: + color: '#57A25A66' + id: Grassb4 + decals: + 9300: -90.27616,-8.951658 + 9301: -89.33962,-5.190508 + 9302: -90.91538,-5.3689027 + 9303: -90.12751,-3.926881 + 9304: -85.162384,-3.7484868 + 9305: -88.611206,-10.066624 + 9306: -91.06404,-10.468011 + 9307: -88.001724,-11.672174 + 9308: -87.151794,-12.370862 + 9309: -83.36105,-11.731615 + 9310: -79.880714,-8.966479 + 9311: -79.04823,-11.241002 + 9312: -79.077965,-12.058644 + 9313: -77.51707,-11.107206 + 9314: -77.65086,-12.073509 + 9315: -77.84412,-8.743481 + 9316: -76.93566,-5.026912 + 9317: -77.17351,-6.0824122 - node: color: '#7F5C462E' id: Grassb4 decals: - 529: -36,10 - 530: -35,9 - 531: -46,-9 - 532: -47,-7 + 472: -36,10 + 473: -35,9 + 474: -46,-9 + 475: -47,-7 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 21: -48.60634,-7.3284388 + 22: -45.88759,-6.5315638 + 23: -50.32509,-7.6253138 + 24: -52.528214,-7.4065638 + 25: -49.88759,-6.9221888 + 26: -46.04384,-7.0628138 + 1314: -28.617435,-56.942085 + 4447: 15.194676,43.172745 - node: + cleanable: True color: '#FFFFFFFF' id: Grassb4 decals: - 26: -48.60634,-7.3284388 - 27: -45.88759,-6.5315638 - 28: -50.32509,-7.6253138 - 29: -52.528214,-7.4065638 - 30: -49.88759,-6.9221888 - 31: -46.04384,-7.0628138 - 1385: -28.617435,-56.942085 - 4720: 15.194676,43.172745 + 8265: -31.57478,26.56951 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 24: -49.715714,-11.234689 - 25: -51.996964,-11.515939 - 1887: -67.67776,-16.88463 - 2968: -12.457638,-31.826822 - 2972: -5.7524724,-33.983063 + 19: -49.715714,-11.234689 + 20: -51.996964,-11.515939 + 1741: -67.67776,-16.88463 + 2784: -12.457638,-31.826822 + 2788: -5.7524724,-33.983063 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb5 + decals: + 8264: -33.661522,29.585167 - node: color: '#7F5C462E' id: Grassc1 decals: - 491: 24,-51 - 492: 22,-51 - 493: 21,-50 - 494: 22,-53 - 495: 23,-53 - 496: 32,-10 - 497: 32,-9 + 434: 24,-51 + 435: 22,-51 + 436: 21,-50 + 437: 22,-53 + 438: 23,-53 + 439: 32,-10 + 440: 32,-9 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 8082: -44.024475,0.99139357 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassc1 + decals: + 8267: -32.262276,26.522636 - node: color: '#FFFFFFFF' id: Grassc2 decals: - 4767: 67,-22 - 4768: 66,-22 - 4769: 66,-21 + 4490: 67,-22 + 4491: 66,-22 + 4492: 66,-21 - node: color: '#7F5C462E' id: Grassc4 decals: - 466: 17,-58 - 467: 18,-44 - 468: 17,-44 - 469: 19,-44 - 470: 24,-46 - 471: 23,-47 - 472: 22,-45 - 473: 23,-45 - 474: 16,-58 - 475: 5,-63 - 476: -2,-60 - 477: -10,-64 - 478: -10,-61 - 479: -13,-62 - 480: -13,-61 - 481: -13,-60 - 482: -12,-63 - 587: 36,-7 - 588: 35,-6 - 589: 35,-5 - 590: 30,-7 - 591: 17,10 - 592: 12,10 - 598: 19,-32 - 599: 18,-32 - 600: 19,-31 + 409: 17,-58 + 410: 18,-44 + 411: 17,-44 + 412: 19,-44 + 413: 24,-46 + 414: 23,-47 + 415: 22,-45 + 416: 23,-45 + 417: 16,-58 + 418: 5,-63 + 419: -2,-60 + 420: -10,-64 + 421: -10,-61 + 422: -13,-62 + 423: -13,-61 + 424: -13,-60 + 425: -12,-63 + 530: 36,-7 + 531: 35,-6 + 532: 35,-5 + 533: 30,-7 + 534: 17,10 + 535: 12,10 + 541: 19,-32 + 542: 18,-32 + 543: 19,-31 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 4162: -86.93581,-9.121064 - 4163: -79.32643,-6.636691 - 4164: -81.34206,-7.0273156 - 4165: -80.71706,-5.058566 - 4602: -24.00145,43.061043 + 4348: -24.00145,43.061043 + 8081: -44.94635,1.0226433 - node: color: '#7F5C462E' id: Grassd1 decals: - 483: -22,-57 - 484: -23,-57 - 485: -18,-56 - 486: -13,-58 - 487: -13,-56 - 488: -14,-52 - 489: -13,-48 - 490: -13,-47 - 505: 33,6 + 426: -22,-57 + 427: -23,-57 + 428: -18,-56 + 429: -13,-58 + 430: -13,-56 + 431: -14,-52 + 432: -13,-48 + 433: -13,-47 + 448: 33,6 + - node: + color: '#FFFFA7BF' + id: Grassd1 + decals: + 9285: -83.39802,-9.5909605 + 9286: -82.387146,-9.2787695 + 9287: -79.99378,-7.9854097 + 9288: -80.499214,-8.386797 + 9289: -79.33969,-8.654389 + 9290: -77.98692,-5.0121694 + 9291: -76.753075,-3.8674717 + 9292: -78.923454,-10.3342705 + 9293: -79.14644,-9.4868965 + 9294: -82.80339,-11.62763 + 9295: -87.16924,-11.018061 + 9296: -88.165245,-11.820835 + 9297: -90.76673,-10.913997 + 9298: -90.930244,-9.680102 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 3831: -3.1629922,62.09702 - 3832: -1.8305378,60.289627 - 3833: -1.3028339,62.50599 - 3834: -3.717082,63.178806 - 3835: -4.71972,64.32657 + 3623: -3.1629922,62.09702 + 3624: -1.8305378,60.289627 + 3625: -1.3028339,62.50599 + 3626: -3.717082,63.178806 + 3627: -4.71972,64.32657 - node: color: '#7F5C462E' id: Grassd2 decals: - 533: -48,-9 - 534: -48,-8 - 535: -48,-7 + 476: -48,-9 + 477: -48,-8 + 478: -48,-7 - node: - color: '#FFFFFFFF' + color: '#FFFFA7BF' id: Grassd2 decals: - 4154: -88.65496,-10.084929 - 4155: -88.608086,-5.5224304 - 4156: -90.045586,-5.3036804 + 9267: -88.09555,-10.973517 + 9268: -86.0887,-12.05875 + 9269: -90.60786,-10.215341 + 9270: -89.25507,-8.907115 + 9271: -91.11328,-8.832784 + 9272: -90.875435,-5.82981 + 9273: -89.96863,-3.9566689 + 9274: -90.2808,-6.8704453 + 9275: -82.26822,-3.9864016 + 9276: -84.67646,-4.967571 + 9277: -83.189896,-5.0865 + 9278: -85.70219,-3.6890774 + 9279: -83.91831,-6.231198 + 9280: -85.68732,-6.4541907 + 9281: -82.34255,-8.609791 + 9282: -83.21962,-9.040911 + 9283: -84.111565,-9.903151 + - node: + color: '#FFFFA7BF' + id: Grassd3 + decals: + 9256: -89.92403,-4.8189087 + 9257: -90.399734,-5.279761 + 9258: -85.82111,-5.8446765 + 9259: -84.03723,-4.7445774 + 9260: -78.19504,-3.7485423 + 9261: -77.55582,-5.2351623 + 9262: -78.75993,-8.743587 + 9263: -81.98578,-9.234172 + 9264: -81.1533,-8.119205 + 9265: -78.492355,-10.824856 + 9266: -82.877716,-12.118215 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 3628: -0.81470627,64.74873 + 3629: -0.37935054,60.962452 + 3630: -4.798876,61.503353 + 4488: 72,-28 + 4489: 71,-28 - node: + cleanable: True color: '#FFFFFFFF' id: Grassd3 decals: - 3836: -0.81470627,64.74873 - 3837: -0.37935054,60.962452 - 3838: -4.798876,61.503353 - 4765: 72,-28 - 4766: 71,-28 + 8268: -32.215405,26.303885 + 8269: -32.05915,26.31951 + - node: + color: '#FFFFA7BF' + id: Grasse1 + decals: + 9245: -87.93561,-9.813984 + 9246: -91.131714,-11.9695835 + 9247: -89.30324,-10.096441 + 9248: -90.00193,-6.0528336 + 9249: -90.93846,-3.8972342 + 9250: -85.95847,-5.101396 + 9251: -83.96648,-3.8229034 + 9252: -82.28666,-5.0270658 + 9253: -86.22605,-7.108334 + 9254: -77.08645,-5.636565 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 4157: -80.858086,-6.131807 - 4158: -82.09247,-5.006807 - 4159: -81.3663,-10.277856 - 4160: -78.7413,-9.574731 - 4161: -86.93581,-10.652328 - 4819: 2.6689858,-18.569864 - 4820: 1.3408611,-17.788616 - 4821: 2.1064863,-16.929241 + 4542: 2.6689858,-18.569864 + 4543: 1.3408611,-17.788616 + 4544: 2.1064863,-16.929241 - node: cleanable: True color: '#919D972F' id: Grasse2 decals: - 1182: 6,25 - 1183: 10,24 + 1114: 6,25 + 1115: 10,24 + - node: + color: '#FFFFA7BF' + id: Grasse2 + decals: + 9233: -90.96819,-6.736679 + 9234: -90.700615,-4.5513473 + 9235: -83.134,-4.283756 + 9236: -84.39758,-5.82984 + 9237: -86.285515,-4.209425 + 9238: -89.86813,-9.382864 + 9239: -87.26664,-11.716858 + 9240: -83.07454,-9.90318 + 9242: -77.93103,-4.283756 + 9243: -77.351265,-3.8972344 + 9244: -76.97962,-12.029049 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 3470: 41.48581,-41.242943 - 3471: 40.871517,-40.767223 - 3472: 41.584896,-40.759068 - 3779: -5,52 + 3272: 41.48581,-41.242943 + 3273: 40.871517,-40.767223 + 3274: 41.584896,-40.759068 + 3571: -5,52 + - node: + color: '#FFFFA7BF' + id: Grasse3 + decals: + 9224: -90.062805,-10.46816 + 9225: -89.2452,-5.7853026 + 9226: -84.97876,-4.26895 + 9227: -85.420235,-5.636612 + 9228: -80.81188,-8.773387 + 9229: -77.82389,-10.28974 + 9231: -78.497826,-11.627674 + 9232: -77.234245,-4.4027014 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1958: -41.07072,-60.954823 - 3778: -4,53 - 4152: -89.56121,-10.569305 - 4153: -88.02996,-9.147429 + 1811: -41.07072,-60.954823 + 3570: -4,53 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNe decals: - 3417: 12,54 - 3428: 12,51 + 3219: 12,54 + 3230: 12,51 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNw decals: - 3418: 10,54 - 3429: 10,51 + 3220: 10,54 + 3231: 10,51 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSe decals: - 3420: 12,53 - 3432: 12,50 + 3222: 12,53 + 3234: 12,50 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSw decals: - 3419: 10,53 - 3431: 10,50 + 3221: 10,53 + 3233: 10,50 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 3422: 11,54 - 3425: 11,51 - 3427: 12,51 + 3224: 11,54 + 3227: 11,51 + 3229: 12,51 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 3423: 11,53 - 3424: 11,50 + 3225: 11,53 + 3226: 11,50 - node: angle: -6.283185307179586 rad color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 2949: -10,-46 - 2950: -9,-46 + 2765: -10,-46 + 2766: -9,-46 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 59: -19,-52 - 60: -16,-52 - 3534: 29,17 - 5292: -10,-53 - 5293: -9,-53 + 54: -19,-52 + 55: -16,-52 + 3326: 29,17 + 4993: -10,-53 + 4994: -9,-53 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 7133: -28,7 - 7134: -27,7 - 7135: -26,7 + 6781: -28,7 + 6782: -27,7 + 6783: -26,7 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 3397: 11,51 - 3413: 11,54 + 3199: 11,51 + 3215: 11,54 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 3527: 30,17 + 3319: 30,17 - node: angle: -6.283185307179586 rad color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 2951: -10,-48 - 2952: -9,-48 + 2767: -10,-48 + 2768: -9,-48 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 3531: 30,14 - 5290: -10,-55 - 5291: -9,-55 + 3323: 30,14 + 4991: -10,-55 + 4992: -9,-55 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 7049: 39,-8 - 7128: -28,3 + 6699: 39,-8 + 6776: -28,3 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 7873: 35,-15 - 7874: 34,-15 - 7875: 36,-15 + 7496: 35,-15 + 7497: 34,-15 + 7498: 36,-15 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 3396: 11,50 - 3412: 11,53 + 3198: 11,50 + 3214: 11,53 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 3525: 29,14 + 3317: 29,14 - node: color: '#48B9FF8C' id: HalfTileOverlayGreyscale270 decals: - 2874: -3,-55 - 2875: -6,-55 + 2690: -3,-55 + 2691: -6,-55 - node: angle: -6.283185307179586 rad color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 2953: -11,-47 + 2769: -11,-47 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 3532: 28,16 - 5043: 1,-55 - 5044: 4,-55 - 5294: -11,-54 + 3324: 28,16 + 4762: 1,-55 + 4763: 4,-55 + 4995: -11,-54 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 7050: 38,-6 - 7051: 38,-7 - 7130: -29,4 - 7131: -29,5 - 7132: -29,6 + 6700: 38,-6 + 6701: 38,-7 + 6778: -29,4 + 6779: -29,5 + 6780: -29,6 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 7876: 33,-14 - 7880: 33,-13 + 7499: 33,-14 + 7503: 33,-13 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 3524: 28,15 + 3316: 28,15 - node: color: '#48B9FF8C' id: HalfTileOverlayGreyscale90 decals: - 2876: -4,-55 - 2877: -1,-55 + 2692: -4,-55 + 2693: -1,-55 - node: angle: -6.283185307179586 rad color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 2948: -8,-47 + 2764: -8,-47 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 3533: 31,15 - 5045: 6,-55 - 5046: 3,-55 - 5295: -8,-54 + 3325: 31,15 + 4764: 6,-55 + 4765: 3,-55 + 4996: -8,-54 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 7052: 40,-7 - 7053: 40,-6 - 7129: -25,6 + 6702: 40,-7 + 6703: 40,-6 + 6777: -25,6 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 7877: 37,-14 - 7881: 37,-13 + 7500: 37,-14 + 7504: 37,-13 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 3526: 31,16 + 3318: 31,16 - node: color: '#FA750096' id: HalfTileOverlayGreyscale90 decals: - 6152: 5,-42 - 6153: 5,-38 + 5825: 5,-42 + 5826: 5,-38 - node: angle: 1.5707963267948966 rad color: '#F9FFFE5E' id: LoadingArea decals: - 1158: 38,-25 + 1091: 38,-25 - node: color: '#F9FFFEFF' id: LoadingArea decals: - 1151: 32,-24 + 1084: 32,-24 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 5021: 3,68 + 4740: 3,68 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 166: 7,22 - 2427: -24,-28 - 7711: -24,-26 + 139: 7,22 + 2280: -24,-28 + 7334: -24,-26 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 1937: -89,8 - 1938: -87,8 - 1939: -81,8 - 1940: -79,8 - 4740: 63,-39 - 4741: 64,-39 - 4742: 65,-39 - 7789: 34,-24 + 1791: -89,8 + 1792: -87,8 + 1793: -81,8 + 1794: -79,8 + 4463: 63,-39 + 4464: 64,-39 + 4465: 65,-39 + 7412: 34,-24 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 3967: 40,31 - 3968: 40,32 - 3969: 40,33 + 3755: 40,31 + 3756: 40,32 + 3757: 40,33 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1941: -89,1 - 1942: -87,1 - 1943: -81,1 - 1944: -79,1 - 3393: 0,45 - 3394: -1,45 - 3395: -2,45 - 3897: -5,68 - 3898: -3,68 - 3937: 5,68 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 4660: -32,35 + 1795: -89,1 + 1796: -87,1 + 1797: -81,1 + 1798: -79,1 + 3195: 0,45 + 3196: -1,45 + 3197: -2,45 + 3725: 5,68 + 8944: -5,68 + 8945: -3,68 - node: angle: -1.5707963267948966 rad color: '#1861D5FF' id: LoadingAreaGreyscale decals: - 3539: -30,-25 + 3331: -30,-25 - node: angle: -1.5707963267948966 rad color: '#951710FF' id: LoadingAreaGreyscale decals: - 3540: -30,-29 + 3332: -30,-29 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay decals: - 5310: -10,-51 - 6860: -10,-47 - 6861: -9,-47 - - node: - cleanable: True - color: '#8932B87F' - id: MiniTileCheckerAOverlay - decals: - 259: 38,4 - 260: 38,3 - 261: 39,4 - 262: 39,3 - 263: 40,4 - 264: 40,3 - - node: - cleanable: True - color: '#B02E26B1' - id: MiniTileCheckerAOverlay - decals: - 253: 34,4 - 254: 34,3 - 255: 35,4 - 256: 36,3 - 257: 35,3 - 258: 36,4 - - node: - cleanable: True - color: '#F38BAAA4' - id: MiniTileCheckerAOverlay - decals: - 247: 30,4 - 248: 30,3 - 249: 31,4 - 250: 31,3 - 251: 32,4 - 252: 32,3 + 5011: -10,-51 + 6514: -10,-47 + 6515: -9,-47 - node: - cleanable: True - color: '#F9801DA1' + color: '#D4C8BFFF' id: MiniTileCheckerAOverlay decals: - 241: 26,4 - 242: 26,3 - 243: 27,3 - 244: 27,4 - 245: 28,4 - 246: 28,3 + 7791: 31,3 + 7792: 32,3 + 7793: 33,3 + 7794: 34,3 + 7795: 35,3 + 7796: 36,3 + 7797: 36,4 + 7798: 35,4 + 7799: 34,4 + 7800: 33,4 + 7801: 32,4 + 7802: 31,4 + 7803: 30,4 + 7804: 30,3 + 7805: 31,2 + 7806: 32,2 + 7807: 33,2 + 7808: 34,2 + 7809: 35,2 + 7810: 36,2 + 7811: 30,2 + 7812: 30,1 + 7813: 31,1 + 7814: 32,1 + 7815: 33,1 + 7816: 34,1 + 7817: 35,1 + 7818: 36,1 - node: color: '#318FE993' id: MiniTileCheckerBOverlay decals: - 6858: -10,-47 - 6859: -9,-47 + 6512: -10,-47 + 6513: -9,-47 - node: color: '#52B4E996' id: MiniTileCheckerBOverlay decals: - 5311: -9,-51 + 5012: -9,-51 - node: color: '#52B4E996' id: MiniTileCornerOverlayNE decals: - 5301: -8,-50 + 5002: -8,-50 - node: color: '#52B4E996' id: MiniTileCornerOverlayNW decals: - 5300: -11,-50 + 5001: -11,-50 - node: color: '#52B4E996' id: MiniTileCornerOverlaySE decals: - 5303: -8,-52 + 5004: -8,-52 - node: color: '#334E6DC8' id: MiniTileCornerOverlaySW decals: - 5225: -52,11 + 4926: -52,11 - node: color: '#52B4E996' id: MiniTileCornerOverlaySW decals: - 5302: -11,-52 + 5003: -11,-52 - node: color: '#D381C996' id: MiniTileDarkCornerNe decals: - 8036: 64,-26 + 7659: 64,-26 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 2778: 81,-51 - 2807: 81,-35 - 3358: 7,53 + 2594: 81,-51 + 2623: 81,-35 + 3160: 7,53 - node: color: '#D381C996' id: MiniTileDarkCornerNw decals: - 8033: 62,-26 + 7656: 62,-26 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 2467: -23,-22 - 2779: 77,-51 - 2808: 77,-35 - 3357: 6,53 + 2317: -23,-22 + 2595: 77,-51 + 2624: 77,-35 + 3159: 6,53 - node: color: '#D381C996' id: MiniTileDarkCornerSe decals: - 8034: 64,-28 + 7657: 64,-28 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 2465: -23,-20 - 2777: 81,-55 - 2812: 81,-39 - 3359: 7,50 + 2315: -23,-20 + 2593: 81,-55 + 2628: 81,-39 + 3161: 7,50 - node: color: '#D381C996' id: MiniTileDarkCornerSw decals: - 8035: 62,-28 + 7658: 62,-28 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 2466: -21,-20 - 2774: 77,-55 - 2811: 77,-39 - 3360: 6,50 - 7662: 7,-27 + 2316: -21,-20 + 2590: 77,-55 + 2627: 77,-39 + 3162: 6,50 + 7285: 7,-27 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNe decals: - 2470: -25,-23 + 2320: -25,-23 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: - 2469: -23,-23 - 2479: -20,-22 + 2319: -23,-23 + 2329: -20,-22 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: - 2471: -25,-20 - 2476: -23,-19 + 2321: -25,-20 + 2326: -23,-19 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSw decals: - 2477: -21,-19 - 2478: -20,-20 + 2327: -21,-19 + 2328: -20,-20 - node: color: '#D381C996' id: MiniTileDarkLineE decals: - 8038: 64,-27 + 7661: 64,-27 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 2440: -23,-17 - 2441: -23,-16 - 2455: -23,-10 - 2456: -23,-9 - 2457: -23,-8 - 2458: -23,-12 - 2459: -23,-13 - 2460: -23,-14 - 2463: -25,-21 - 2464: -25,-22 - 2489: -12,-21 - 2780: 81,-52 - 2781: 81,-53 - 2782: 81,-54 - 2799: 81,-54 - 2813: 81,-38 - 2814: 81,-37 - 2815: 81,-36 - 3361: 7,51 - 3362: 7,52 - 6529: 4,46 + 2290: -23,-17 + 2291: -23,-16 + 2305: -23,-10 + 2306: -23,-9 + 2307: -23,-8 + 2308: -23,-12 + 2309: -23,-13 + 2310: -23,-14 + 2313: -25,-21 + 2314: -25,-22 + 2339: -12,-21 + 2596: 81,-52 + 2597: 81,-53 + 2598: 81,-54 + 2615: 81,-54 + 2629: 81,-38 + 2630: 81,-37 + 2631: 81,-36 + 3163: 7,51 + 3164: 7,52 + 6183: 4,46 - node: color: '#D381C996' id: MiniTileDarkLineN decals: - 8039: 63,-26 + 7662: 63,-26 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 2443: -22,-15 - 2444: -22,-11 - 2461: -22,-18 - 2468: -24,-23 - 2474: -22,-22 - 2475: -21,-22 - 2483: -11,-22 - 2484: -10,-22 - 2554: -18,35 - 2784: 80,-51 - 2785: 79,-51 - 2786: 78,-51 - 2816: 80,-35 - 2817: 79,-35 - 2818: 78,-35 - 3275: 49,65 - 3276: 47,65 - 3277: 48,65 - 3278: 36,65 - 3279: 37,65 - 3280: 38,65 - 3281: 39,65 - 3282: 40,65 - 3283: 41,65 - 3284: 42,65 - 3285: 43,65 - 3286: 44,65 - 3287: 44,65 - 3288: 45,65 - 3289: 46,65 - 3290: 50,65 - 3291: 51,65 - 3292: 52,65 - 3293: 53,65 - 4538: -9,-22 - 6530: 6,45 - 6531: 5,45 + 2293: -22,-15 + 2294: -22,-11 + 2311: -22,-18 + 2318: -24,-23 + 2324: -22,-22 + 2325: -21,-22 + 2333: -11,-22 + 2334: -10,-22 + 2600: 80,-51 + 2601: 79,-51 + 2602: 78,-51 + 2632: 80,-35 + 2633: 79,-35 + 2634: 78,-35 + 3077: 49,65 + 3078: 47,65 + 3079: 48,65 + 3080: 36,65 + 3081: 37,65 + 3082: 38,65 + 3083: 39,65 + 3084: 40,65 + 3085: 41,65 + 3086: 42,65 + 3087: 43,65 + 3088: 44,65 + 3089: 44,65 + 3090: 45,65 + 3091: 46,65 + 3092: 50,65 + 3093: 51,65 + 3094: 52,65 + 3095: 53,65 + 4289: -9,-22 + 6184: 6,45 + 6185: 5,45 - node: color: '#D381C996' id: MiniTileDarkLineS decals: - 8037: 63,-28 + 7660: 63,-28 - node: color: '#DAA976FF' id: MiniTileDarkLineS decals: - 7483: 1,-5 + 7107: 1,-5 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 2442: -22,-15 - 2445: -22,-7 - 2446: -22,-11 - 2472: -24,-20 - 2473: -22,-19 - 2485: -11,-20 - 2486: -10,-20 - 2487: -9,-20 - 2790: 80,-55 - 2791: 79,-55 - 2792: 78,-55 - 2798: 78,-55 - 2819: 78,-39 - 2820: 79,-39 - 2821: 80,-39 - 3294: 53,63 - 3295: 52,63 - 3296: 51,63 - 3297: 50,63 - 3298: 49,63 - 3299: 48,63 - 3300: 47,63 - 3301: 46,63 - 3302: 45,63 - 3303: 44,63 - 3304: 43,63 - 3305: 42,63 - 3306: 41,63 - 3307: 40,63 - 3308: 39,63 - 3309: 38,63 - 3310: 37,63 - 3311: 36,63 - 3312: 35,63 - 6527: 6,47 - 6528: 5,47 + 2292: -22,-15 + 2295: -22,-7 + 2296: -22,-11 + 2322: -24,-20 + 2323: -22,-19 + 2335: -11,-20 + 2336: -10,-20 + 2337: -9,-20 + 2606: 80,-55 + 2607: 79,-55 + 2608: 78,-55 + 2614: 78,-55 + 2635: 78,-39 + 2636: 79,-39 + 2637: 80,-39 + 3096: 53,63 + 3097: 52,63 + 3098: 51,63 + 3099: 50,63 + 3100: 49,63 + 3101: 48,63 + 3102: 47,63 + 3103: 46,63 + 3104: 45,63 + 3105: 44,63 + 3106: 43,63 + 3107: 42,63 + 3108: 41,63 + 3109: 40,63 + 3110: 39,63 + 3111: 38,63 + 3112: 37,63 + 3113: 36,63 + 3114: 35,63 + 6181: 6,47 + 6182: 5,47 - node: color: '#D381C996' id: MiniTileDarkLineW decals: - 8040: 62,-27 + 7663: 62,-27 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 2447: -21,-10 - 2448: -21,-9 - 2449: -21,-8 - 2450: -21,-12 - 2451: -21,-13 - 2452: -21,-14 - 2453: -21,-16 - 2454: -21,-17 - 2480: -20,-21 - 2488: -8,-21 - 2787: 77,-52 - 2788: 77,-53 - 2789: 77,-54 - 2822: 77,-38 - 2823: 77,-37 - 2824: 77,-36 - 3363: 6,51 - 3364: 6,52 - 6526: 7,46 - 7659: 7,-26 - 7660: 7,-25 - 7661: 7,-24 + 2297: -21,-10 + 2298: -21,-9 + 2299: -21,-8 + 2300: -21,-12 + 2301: -21,-13 + 2302: -21,-14 + 2303: -21,-16 + 2304: -21,-17 + 2330: -20,-21 + 2338: -8,-21 + 2603: 77,-52 + 2604: 77,-53 + 2605: 77,-54 + 2638: 77,-38 + 2639: 77,-37 + 2640: 77,-36 + 3165: 6,51 + 3166: 6,52 + 6180: 7,46 + 7282: 7,-26 + 7283: 7,-25 + 7284: 7,-24 - node: color: '#724276FF' id: MiniTileInnerOverlaySW decals: - 5322: 18,-73 - 5323: 20,-74 + 5023: 18,-73 + 5024: 20,-74 - node: color: '#52B4E996' id: MiniTileLineOverlayE decals: - 5304: -8,-51 + 5005: -8,-51 - node: color: '#724276FF' id: MiniTileLineOverlayE decals: - 5312: 21,-73 - 5313: 21,-74 - 5315: 21,-75 + 5013: 21,-73 + 5014: 21,-74 + 5016: 21,-75 - node: color: '#52B4E996' id: MiniTileLineOverlayN decals: - 5305: -10,-50 - 5306: -9,-50 + 5006: -10,-50 + 5007: -9,-50 - node: color: '#334E6DC8' id: MiniTileLineOverlayS decals: - 5222: -49,11 - 5223: -48,11 - 5224: -51,11 + 4923: -49,11 + 4924: -48,11 + 4925: -51,11 - node: color: '#52B4E996' id: MiniTileLineOverlayS decals: - 5308: -10,-52 - 5309: -9,-52 + 5009: -10,-52 + 5010: -9,-52 - node: color: '#724276FF' id: MiniTileLineOverlayS decals: - 5314: 21,-75 - 5316: 20,-75 - 5318: 19,-74 - 5319: 18,-74 - 5321: 17,-73 + 5015: 21,-75 + 5017: 20,-75 + 5019: 19,-74 + 5020: 18,-74 + 5022: 17,-73 - node: color: '#52B4E996' id: MiniTileLineOverlayW decals: - 5307: -11,-51 + 5008: -11,-51 - node: color: '#724276FF' id: MiniTileLineOverlayW decals: - 5317: 20,-75 - 5320: 18,-74 + 5018: 20,-75 + 5021: 18,-74 - node: color: '#52B4E996' id: MiniTileSteelCornerNe decals: - 5079: 12,-58 - 5092: 1,-57 + 4798: 12,-58 + 4811: 1,-57 - node: color: '#D381C996' id: MiniTileSteelCornerNe decals: - 7925: 68,-34 - 7932: 65,-33 + 7548: 68,-34 + 7555: 65,-33 - node: color: '#52B4E996' id: MiniTileSteelCornerNw decals: - 5091: -1,-57 + 4810: -1,-57 - node: color: '#D381C996' id: MiniTileSteelCornerNw decals: - 7933: 63,-33 + 7556: 63,-33 - node: color: '#52B4E996' id: MiniTileSteelCornerSe decals: - 5082: 12,-62 - 5098: 1,-62 + 4801: 12,-62 + 4817: 1,-62 - node: color: '#D381C996' id: MiniTileSteelCornerSe decals: - 7920: 68,-39 + 7543: 68,-39 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 6355: -10,25 + 6011: -10,25 - node: color: '#52B4E996' id: MiniTileSteelCornerSw decals: - 5087: 7,-62 - 5097: -1,-62 + 4806: 7,-62 + 4816: -1,-62 - node: color: '#D381C996' id: MiniTileSteelCornerSw decals: - 7918: 63,-36 - 7919: 67,-39 + 7541: 63,-36 + 7542: 67,-39 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 6354: -12,25 + 6010: -12,25 - node: color: '#52B4E996' id: MiniTileSteelEndE decals: - 5101: 15,-62 - 5102: 15,-58 + 4820: 15,-62 + 4821: 15,-58 - node: color: '#FFFFFFFF' id: MiniTileSteelEndE decals: - 6590: -35,24 - 6764: 34,-2 + 6244: -35,24 + 6418: 34,-2 - node: color: '#52B4E996' id: MiniTileSteelEndW decals: - 5103: 13,-62 - 5104: 13,-58 + 4822: 13,-62 + 4823: 13,-58 - node: color: '#FFFFFFFF' id: MiniTileSteelEndW decals: - 6589: -37,24 - 6763: 32,-2 + 6243: -37,24 + 6417: 32,-2 - node: color: '#D381C996' id: MiniTileSteelInnerNe decals: - 7935: 65,-34 + 7558: 65,-34 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 6567: -34,23 - 6716: 17,-19 - 6976: 43,-2 + 6221: -34,23 + 6370: 17,-19 + 6626: 43,-2 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 6560: -38,23 - 6715: 23,-19 - 6980: 45,-2 + 6214: -38,23 + 6369: 23,-19 + 6630: 45,-2 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 6714: 17,-16 - 6737: 29,-1 - 6740: 35,-1 - 6975: 43,0 + 6368: 17,-16 + 6391: 29,-1 + 6394: 35,-1 + 6625: 43,0 - node: color: '#D381C996' id: MiniTileSteelInnerSw decals: - 7936: 67,-36 + 7559: 67,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 6713: 23,-16 - 6738: 37,-1 - 6739: 31,-1 - 6981: 45,0 + 6367: 23,-16 + 6392: 37,-1 + 6393: 31,-1 + 6631: 45,0 - node: color: '#52B4E996' id: MiniTileSteelLineE decals: - 5080: 12,-59 - 5081: 12,-61 - 5099: 1,-60 - 5100: 1,-59 - 5133: -1,-54 - 5134: -1,-55 + 4799: 12,-59 + 4800: 12,-61 + 4818: 1,-60 + 4819: 1,-59 + 4852: -1,-54 + 4853: -1,-55 - node: color: '#D381C996' id: MiniTileSteelLineE decals: - 7921: 68,-38 - 7922: 68,-37 - 7923: 68,-36 - 7924: 68,-35 + 7544: 68,-38 + 7545: 68,-37 + 7546: 68,-36 + 7547: 68,-35 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 5228: 47,-26 - 6309: -11,24 - 6322: 0,-24 - 6323: 0,-25 - 6324: 0,-26 - 6325: 0,-27 - 6346: -11,26 - 6347: -11,25 - 6353: -10,26 - 6565: -34,24 - 6566: -34,25 - 6711: 17,-17 - 6712: 17,-18 - 6744: 35,-3 - 6745: 35,-2 - 6974: 43,-1 + 4929: 47,-26 + 5965: -11,24 + 5978: 0,-24 + 5979: 0,-25 + 5980: 0,-26 + 5981: 0,-27 + 6002: -11,26 + 6003: -11,25 + 6009: -10,26 + 6219: -34,24 + 6220: -34,25 + 6365: 17,-17 + 6366: 17,-18 + 6398: 35,-3 + 6399: 35,-2 + 6624: 43,-1 - node: color: '#52B4E996' id: MiniTileSteelLineN decals: - 5076: 8,-58 - 5077: 10,-58 - 5078: 11,-58 - 5105: 14,-58 - 5106: 14,-62 - 5121: 7,-58 + 4795: 8,-58 + 4796: 10,-58 + 4797: 11,-58 + 4824: 14,-58 + 4825: 14,-62 + 4840: 7,-58 - node: color: '#D381C996' id: MiniTileSteelLineN decals: - 7926: 67,-34 - 7927: 66,-34 + 7549: 67,-34 + 7550: 66,-34 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 5227: 48,-27 - 5232: 49,-27 - 5233: 50,-27 - 6311: -10,23 - 6312: -12,23 - 6321: -9,23 - 6339: -13,23 - 6343: -11,23 - 6559: -39,23 - 6561: -33,23 - 6591: -36,24 - 6765: 33,-2 - 6977: 44,-2 + 4928: 48,-27 + 4933: 49,-27 + 4934: 50,-27 + 5967: -10,23 + 5968: -12,23 + 5977: -9,23 + 5995: -13,23 + 5999: -11,23 + 6213: -39,23 + 6215: -33,23 + 6245: -36,24 + 6419: 33,-2 + 6627: 44,-2 - node: color: '#52B4E996' id: MiniTileSteelLineS decals: - 5083: 11,-62 - 5084: 9,-62 - 5085: 10,-62 - 5086: 8,-62 - 5107: 14,-62 - 5108: 14,-58 - 5148: 10,-56 + 4802: 11,-62 + 4803: 9,-62 + 4804: 10,-62 + 4805: 8,-62 + 4826: 14,-62 + 4827: 14,-58 + 4867: 10,-56 - node: color: '#D381C996' id: MiniTileSteelLineS decals: - 7930: 66,-36 - 7931: 65,-36 - 7938: 64,-36 + 7553: 66,-36 + 7554: 65,-36 + 7561: 64,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 5229: 48,-25 - 5230: 49,-25 - 5231: 50,-25 - 6326: 6,-22 - 6327: 5,-22 - 6328: 4,-22 - 6329: 3,-22 - 6330: 2,-22 - 6592: -36,24 - 6706: 22,-16 - 6707: 21,-16 - 6708: 20,-16 - 6709: 19,-16 - 6710: 18,-16 - 6736: 30,-1 - 6741: 36,-1 - 6766: 33,-2 - 6978: 44,0 + 4930: 48,-25 + 4931: 49,-25 + 4932: 50,-25 + 5982: 6,-22 + 5983: 5,-22 + 5984: 4,-22 + 5985: 3,-22 + 5986: 2,-22 + 6246: -36,24 + 6360: 22,-16 + 6361: 21,-16 + 6362: 20,-16 + 6363: 19,-16 + 6364: 18,-16 + 6390: 30,-1 + 6395: 36,-1 + 6420: 33,-2 + 6628: 44,0 - node: color: '#52B4E996' id: MiniTileSteelLineW decals: - 5093: -1,-58 - 5094: -1,-59 - 5095: -1,-61 - 5119: 7,-59 - 5120: 7,-60 - 5131: 1,-54 - 5132: 1,-55 + 4812: -1,-58 + 4813: -1,-59 + 4814: -1,-61 + 4838: 7,-59 + 4839: 7,-60 + 4850: 1,-54 + 4851: 1,-55 - node: color: '#D381C996' id: MiniTileSteelLineW decals: - 7928: 67,-38 - 7929: 67,-37 - 7934: 63,-34 - 7937: 63,-35 + 7551: 67,-38 + 7552: 67,-37 + 7557: 63,-34 + 7560: 63,-35 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 6310: -11,24 - 6348: -11,25 - 6349: -11,26 - 6352: -12,26 - 6563: -38,24 - 6564: -38,25 - 6704: 23,-18 - 6705: 23,-17 - 6742: 31,-2 - 6743: 31,-3 - 6979: 45,-1 - 7892: 51,-26 + 5966: -11,24 + 6004: -11,25 + 6005: -11,26 + 6008: -12,26 + 6217: -38,24 + 6218: -38,25 + 6358: 23,-18 + 6359: 23,-17 + 6396: 31,-2 + 6397: 31,-3 + 6629: 45,-1 + 7515: 51,-26 - node: color: '#334E6DFF' id: MiniTileWhiteBox decals: - 4957: 10,40 + 4680: 10,40 - node: color: '#9FED58FF' id: MiniTileWhiteBox decals: - 4960: 8,38 + 4683: 8,38 - node: color: '#BC863FFF' id: MiniTileWhiteBox decals: - 4959: 9,38 + 4682: 9,38 - node: color: '#DE3A3AFF' id: MiniTileWhiteBox decals: - 4956: 9,40 + 4679: 9,40 - node: color: '#F98AFFFF' id: MiniTileWhiteBox decals: - 4955: 8,40 + 4678: 8,40 - node: color: '#FF9821FF' id: MiniTileWhiteBox decals: - 4958: 10,38 + 4681: 10,38 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 830: -8,-9 - 5590: 36,36 + 770: -8,-9 + 5281: 36,36 - node: color: '#3EB38896' id: MiniTileWhiteCornerNe decals: - 5453: 28,29 - 5455: 35,29 - 5463: 39,29 - 5526: 6,13 - 5527: 7,12 - 5528: 8,11 - 5535: 11,19 - 5539: 7,16 + 5152: 28,29 + 5154: 35,29 + 5162: 39,29 + 5225: 6,13 + 5226: 7,12 + 5227: 8,11 + 5234: 11,19 + 5238: 7,16 - node: color: '#43990996' id: MiniTileWhiteCornerNe decals: - 6050: -22,-40 - 6106: -34,-50 - 6109: -33,-53 - 6127: -29,-53 + 5723: -22,-40 + 5779: -34,-50 + 5782: -33,-53 + 5800: -29,-53 - node: color: '#48B9FF8C' id: MiniTileWhiteCornerNe decals: - 2864: -4,-51 - 2883: -4,-46 + 2680: -4,-51 + 2699: -4,-46 - node: color: '#4D69B7C6' id: MiniTileWhiteCornerNe decals: - 1925: -94,6 + 1779: -94,6 - node: color: '#52B4E996' id: MiniTileWhiteCornerNe decals: - 1114: -16,-50 - 2918: -21,-50 - 5028: 6,-50 - 5151: 10,-50 - 5979: 1,-36 + 1047: -16,-50 + 2734: -21,-50 + 4747: 6,-50 + 4870: 10,-50 + 5654: 1,-36 - node: color: '#60CFFF31' id: MiniTileWhiteCornerNe decals: - 4061: 2,-46 + 3849: 2,-46 - node: color: '#60CFFF6C' id: MiniTileWhiteCornerNe decals: - 4062: 2,-46 - - node: - color: '#79150096' - id: MiniTileWhiteCornerNe - decals: - 1731: -55,5 + 3850: 2,-46 - node: color: '#8C347F96' id: MiniTileWhiteCornerNe decals: - 6249: -45,25 + 5906: -45,25 - node: color: '#9FED5896' id: MiniTileWhiteCornerNe decals: - 783: 1,35 - 1099: -32,-59 - 1573: -94,43 - 1597: -76,43 - 1658: -58,43 + 725: 1,35 + 1032: -32,-59 + 1501: -94,43 + 1525: -76,43 + 1585: -58,43 + 7839: 28,1 + 8306: -26,38 - node: cleanable: True color: '#9FED58FF' id: MiniTileWhiteCornerNe decals: - 3621: 6,34 - 3628: 10,34 + 3413: 6,34 + 3420: 10,34 - node: color: '#A4610696' id: MiniTileWhiteCornerNe decals: - 6994: 51,1 - 7073: 43,1 + 6644: 51,1 + 6723: 43,1 - node: zIndex: 1 color: '#B4C8FFFF' id: MiniTileWhiteCornerNe decals: - 4379: -49,5 + 4130: -49,5 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteCornerNe decals: - 4385: -49,5 + 4136: -49,5 - node: color: '#D381C996' id: MiniTileWhiteCornerNe decals: - 809: 28,-20 - 812: 10,-20 - 817: 36,-19 - 2325: 53,-21 - 2846: 80,-44 - 4500: 25,-14 - 4511: 31,-16 - 5206: 51,-25 - 6197: 68,-44 - 7805: 44,-19 - 7842: 42,-13 - 7894: 61,-39 - 7906: 61,-34 - 7951: 60,-25 - 7973: 57,-21 + 749: 28,-20 + 752: 10,-20 + 757: 36,-19 + 2178: 53,-21 + 2662: 80,-44 + 4251: 25,-14 + 4262: 31,-16 + 4907: 51,-25 + 5863: 68,-44 + 7428: 44,-19 + 7465: 42,-13 + 7517: 61,-39 + 7529: 61,-34 + 7574: 60,-25 + 7596: 57,-21 - node: cleanable: True color: '#D4D4D4A7' id: MiniTileWhiteCornerNe decals: - 1311: 42,61 + 1240: 42,61 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerNe decals: - 927: 21,8 - 6600: 27,12 - 7021: 51,-5 - 7674: 15,-24 + 867: 21,8 + 6254: 27,12 + 6671: 51,-5 + 7297: 15,-24 - node: cleanable: True color: '#DE3A3A96' id: MiniTileWhiteCornerNe decals: - 1155: -8,-37 + 1088: -8,-37 - node: cleanable: True angle: 3.141592653589793 rad color: '#DE3A3A96' id: MiniTileWhiteCornerNe decals: - 1153: -13,-39 + 1086: -13,-39 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 867: 7,23 - 873: 8,27 - 883: 11,27 - 1027: 17,36 - 1034: 28,35 - 3218: 28,41 - 4993: 24,31 - 5597: 28,40 + 807: 7,23 + 813: 8,27 + 823: 11,27 + 960: 17,36 + 967: 28,35 + 3021: 28,41 + 4716: 24,31 + 5288: 28,40 - node: color: '#FA750096' id: MiniTileWhiteCornerNe decals: - 6025: 6,-37 - 6027: 6,-41 + 5700: 6,-37 + 5702: 6,-41 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe decals: - 2014: -75,-24 - 6815: 0.0028179884,-43.246723 - 6842: -11.9983,-41.24271 - 7793: 39,-22 + 1867: -75,-24 + 6469: 0.0028179884,-43.246723 + 6496: -11.9983,-41.24271 + 7416: 39,-22 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNw decals: - 820: 6,-9 - 5648: -11,10 - 5649: -10,11 - 5650: -9,12 - 5702: -8,13 + 760: 6,-9 + 5337: -11,10 + 5338: -10,11 + 5339: -9,12 + 5388: -8,13 - node: color: '#3EB38896' id: MiniTileWhiteCornerNw decals: - 5454: 32,29 - 5462: 37,29 - 5534: 2,19 - 5538: 5,16 + 5153: 32,29 + 5161: 37,29 + 5233: 2,19 + 5237: 5,16 - node: color: '#43990996' id: MiniTileWhiteCornerNw decals: - 6048: -26,-40 - 6063: -20,-40 - 6075: -36,-41 - 6105: -37,-50 - 6120: -38,-53 - 6126: -31,-53 + 5721: -26,-40 + 5736: -20,-40 + 5748: -36,-41 + 5778: -37,-50 + 5793: -38,-53 + 5799: -31,-53 - node: color: '#48B9FF8C' id: MiniTileWhiteCornerNw decals: - 2865: -6,-51 - 2884: -6,-46 - 2899: -26,-45 + 2681: -6,-51 + 2700: -6,-46 + 2715: -26,-45 - node: color: '#4D69B7C6' id: MiniTileWhiteCornerNw decals: - 1926: -96,6 - 1931: -98,5 + 1780: -96,6 + 1785: -98,5 - node: color: '#52B4E996' id: MiniTileWhiteCornerNw decals: - 1068: 3,-41 - 1115: -19,-50 - 2917: -24,-50 - 5029: 4,-50 - 5152: 8,-50 - 5978: -3,-36 + 1001: 3,-41 + 1048: -19,-50 + 2733: -24,-50 + 4748: 4,-50 + 4871: 8,-50 + 5653: -3,-36 - node: color: '#60CFFF6C' id: MiniTileWhiteCornerNw decals: - 4065: -2,-46 - 4082: -2,-46 - - node: - color: '#79150096' - id: MiniTileWhiteCornerNw - decals: - 1727: -59,5 + 3853: -2,-46 + 3870: -2,-46 - node: color: '#8C347F96' id: MiniTileWhiteCornerNw decals: - 6248: -52,25 + 5905: -52,25 - node: color: '#9FED5896' id: MiniTileWhiteCornerNw decals: - 1100: -39,-59 - 1574: -96,43 - 1596: -78,43 - 1659: -60,43 - 5000: -32,38 - 6548: -3,43 + 1033: -39,-59 + 1502: -96,43 + 1524: -78,43 + 1586: -60,43 + 6202: -3,43 + 7848: 38,1 + 8299: -32,38 - node: cleanable: True color: '#9FED58FF' id: MiniTileWhiteCornerNw decals: - 3619: 4,34 - 3625: 8,34 + 3411: 4,34 + 3417: 8,34 - node: color: '#A4610696' id: MiniTileWhiteCornerNw decals: - 1128: 67,7 - 1135: 62,5 - 6988: 45,1 + 1061: 67,7 + 1068: 62,5 + 6638: 45,1 - node: zIndex: 1 color: '#B4C8FFFF' id: MiniTileWhiteCornerNw decals: - 4378: -53,5 + 4129: -53,5 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteCornerNw decals: - 4386: -53,5 + 4137: -53,5 - node: color: '#D381C996' id: MiniTileWhiteCornerNw decals: - 811: 12,-20 - 2235: 30,-19 - 2765: 63,-44 - 4479: 14,-14 - 4480: 11,-17 - 4513: 29,-16 - 5205: 47,-25 - 6203: 70,-44 - 6206: 74,-44 - 7791: 46,-21 - 7810: 38,-19 - 7830: 23,-12 - 7843: 38,-13 - 7844: 33,-16 - 7893: 57,-39 - 7898: 54,-30 - 7957: 53,-25 - 7970: 55,-21 + 751: 12,-20 + 2088: 30,-19 + 2581: 63,-44 + 4230: 14,-14 + 4231: 11,-17 + 4264: 29,-16 + 4906: 47,-25 + 5869: 70,-44 + 5872: 74,-44 + 7414: 46,-21 + 7433: 38,-19 + 7453: 23,-12 + 7466: 38,-13 + 7467: 33,-16 + 7516: 57,-39 + 7521: 54,-30 + 7580: 53,-25 + 7593: 55,-21 - node: cleanable: True color: '#D4D4D4A7' id: MiniTileWhiteCornerNw decals: - 1310: 36,61 + 1239: 36,61 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerNw decals: - 6007: -6,-37 - 6599: 26,12 - 6608: 23,11 + 5682: -6,-37 + 6253: 26,12 + 6262: 23,11 - node: cleanable: True color: '#DE3A3A96' id: MiniTileWhiteCornerNw decals: - 1154: -13,-37 + 1087: -13,-37 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 880: 2,27 - 882: 10,27 - 886: 9,23 - 900: 26,29 - 932: 19,8 - 933: 19,31 - 1026: 13,36 - 1033: 26,35 - 3217: 26,41 - 5397: 23,19 - 5596: 26,40 + 820: 2,27 + 822: 10,27 + 826: 9,23 + 840: 26,29 + 872: 19,8 + 873: 19,31 + 959: 13,36 + 966: 26,35 + 3020: 26,41 + 5096: 23,19 + 5287: 26,40 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw decals: - 2013: -78,-24 - 6814: -1.9971819,-43.23978 - 6838: -13.998662,-41.246124 - 7794: 38,-22 + 1866: -78,-24 + 6468: -1.9971819,-43.23978 + 6492: -13.998662,-41.246124 + 7417: 38,-22 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 791: 17,-7 - 845: -8,10 - 5755: 6,-12 - 5756: 7,-11 - 5757: 8,-10 + 731: 17,-7 + 785: -8,10 + 5441: 6,-12 + 5442: 7,-11 + 5443: 8,-10 - node: color: '#3EB38896' id: MiniTileWhiteCornerSe decals: - 5456: 35,28 - 5464: 39,28 - 5514: 7,21 - 5540: 7,15 - 7471: 27,21 - 7472: 28,22 + 5155: 35,28 + 5163: 39,28 + 5213: 7,21 + 5239: 7,15 + 7095: 27,21 + 7096: 28,22 - node: color: '#43990996' id: MiniTileWhiteCornerSe decals: - 6049: -22,-43 - 6113: -33,-57 - 6128: -29,-55 + 5722: -22,-43 + 5786: -33,-57 + 5801: -29,-55 - node: color: '#48B9FF8C' id: MiniTileWhiteCornerSe decals: - 2885: -4,-49 - 2936: -20,-46 + 2701: -4,-49 + 2752: -20,-46 - node: color: '#4D69B7C6' id: MiniTileWhiteCornerSe decals: - 1928: -94,3 + 1782: -94,3 - node: color: '#52B4E996' id: MiniTileWhiteCornerSe decals: - 1092: 10,-48 - 2921: -21,-52 - 5038: 6,-53 - 5998: 6,-35 + 1025: 10,-48 + 2737: -21,-52 + 4757: 6,-53 + 5673: 6,-35 - node: color: '#60CFFF6C' id: MiniTileWhiteCornerSe decals: - 4064: 2,-50 - 4080: 2,-50 - - node: - color: '#79150096' - id: MiniTileWhiteCornerSe - decals: - 1719: -55,1 + 3852: 2,-50 + 3868: 2,-50 - node: color: '#9FED5896' id: MiniTileWhiteCornerSe decals: - 749: -45,11 - 1101: -32,-63 - 6357: -10,25 - 6555: 1,30 + 691: -45,11 + 1034: -32,-63 + 6013: -10,25 + 6209: 1,30 - node: cleanable: True color: '#9FED58FF' id: MiniTileWhiteCornerSe decals: - 3620: 6,33 - 3626: 10,33 + 3412: 6,33 + 3418: 10,33 - node: zIndex: 1 color: '#B4C8FFFF' id: MiniTileWhiteCornerSe decals: - 4380: -49,3 + 4131: -49,3 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteCornerSe decals: - 4384: -49,3 + 4135: -49,3 - node: color: '#D381C996' id: MiniTileWhiteCornerSe decals: - 810: 28,-22 - 819: 36,-23 - 2324: 53,-23 - 2696: 61,-46 - 2844: 81,-46 - 2845: 80,-46 - 4509: 28,-18 - 4510: 31,-17 - 4548: 21,-12 - 6198: 68,-46 - 7799: 44,-23 - 7818: 39,-23 - 7845: 42,-17 - 7891: 51,-27 - 7904: 61,-37 - 7971: 57,-23 + 750: 28,-22 + 759: 36,-23 + 2177: 53,-23 + 2512: 61,-46 + 2660: 81,-46 + 2661: 80,-46 + 4260: 28,-18 + 4261: 31,-17 + 4299: 21,-12 + 5864: 68,-46 + 7422: 44,-23 + 7441: 39,-23 + 7468: 42,-17 + 7514: 51,-27 + 7527: 61,-37 + 7594: 57,-23 - node: cleanable: True color: '#D4D4D4A7' id: MiniTileWhiteCornerSe decals: - 1312: 37,58 - 1313: 42,58 + 1241: 37,58 + 1242: 42,58 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerSe decals: - 766: 1,37 - 918: 24,3 - 6017: -8,-39 - 6604: 27,9 - 7022: 51,-7 - 7023: 50,-8 - 7691: 15,-28 + 708: 1,37 + 858: 24,3 + 5692: -8,-39 + 6258: 27,9 + 6672: 51,-7 + 6673: 50,-8 + 7314: 15,-28 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 1019: 17,32 - 1031: 28,31 - 3219: 28,37 - 4991: 24,25 - 5398: 26,14 - 5399: 24,13 - 5481: 8,25 - 5602: 30,34 + 952: 17,32 + 964: 28,31 + 3022: 28,37 + 4714: 24,25 + 5097: 26,14 + 5098: 24,13 + 5180: 8,25 + 5293: 30,34 - node: color: '#FA750096' id: MiniTileWhiteCornerSe decals: - 6026: 6,-39 + 5701: 6,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSe decals: - 2017: -75,-25 - 6817: 0.001319766,-43.7461 - 6843: -11.9983,-41.719563 - 7795: 39,-23 + 1870: -75,-25 + 6471: 0.001319766,-43.7461 + 6497: -11.9983,-41.719563 + 7418: 39,-23 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSw decals: - 857: 6,10 - 5667: -11,-9 - 5668: -10,-10 - 5669: -9,-11 - 5673: -8,-12 + 797: 6,10 + 5353: -11,-9 + 5354: -10,-10 + 5355: -9,-11 + 5359: -8,-12 - node: color: '#3EB38896' id: MiniTileWhiteCornerSw decals: - 5457: 32,28 - 5465: 37,28 - 5513: 9,21 - 5536: 2,17 - 5537: 5,15 + 5156: 32,28 + 5164: 37,28 + 5212: 9,21 + 5235: 2,17 + 5236: 5,15 - node: color: '#43990996' id: MiniTileWhiteCornerSw decals: - 6051: -26,-43 - 6116: -38,-57 + 5724: -26,-43 + 5789: -38,-57 - node: color: '#48B9FF8C' id: MiniTileWhiteCornerSw decals: - 2863: -6,-53 - 2882: -6,-49 - 2894: -26,-48 + 2679: -6,-53 + 2698: -6,-49 + 2710: -26,-48 - node: color: '#4D69B7C6' id: MiniTileWhiteCornerSw decals: - 1927: -96,3 - 1932: -98,4 + 1781: -96,3 + 1786: -98,4 - node: color: '#52B4E996' id: MiniTileWhiteCornerSw decals: - 1081: -11,-44 - 1119: 8,-56 - 5027: 4,-48 - 5995: 2,-34 - 5996: 3,-35 - 6041: 3,-39 + 1014: -11,-44 + 1052: 8,-56 + 4746: 4,-48 + 5670: 2,-34 + 5671: 3,-35 + 5714: 3,-39 - node: color: '#60CFFF6C' id: MiniTileWhiteCornerSw decals: - 4063: -2,-50 - 4081: -2,-50 - - node: - color: '#79150096' - id: MiniTileWhiteCornerSw - decals: - 1722: -58,1 - 1723: -59,2 + 3851: -2,-50 + 3869: -2,-50 - node: color: '#9FED5896' id: MiniTileWhiteCornerSw decals: - 769: -3,37 - 1102: -39,-63 - 6356: -12,25 - 7042: 38,-3 + 711: -3,37 + 1035: -39,-63 + 6012: -12,25 + 6692: 38,-3 + 8296: -32,35 - node: cleanable: True color: '#9FED58FF' id: MiniTileWhiteCornerSw decals: - 3618: 4,33 - 3627: 8,33 + 3410: 4,33 + 3419: 8,33 - node: color: '#A4610696' id: MiniTileWhiteCornerSw decals: - 1132: 62,2 + 1065: 62,2 - node: zIndex: 1 color: '#B4C8FFFF' id: MiniTileWhiteCornerSw decals: - 4377: -53,3 + 4128: -53,3 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteCornerSw decals: - 4387: -53,3 + 4138: -53,3 - node: color: '#D381C996' id: MiniTileWhiteCornerSw decals: - 2234: 30,-23 - 2695: 60,-46 - 2766: 63,-46 - 4481: 11,-18 - 4546: 19,-12 - 5200: 54,-37 - 5207: 47,-27 - 6204: 70,-46 - 6205: 74,-46 - 7790: 46,-23 - 7800: 43,-23 - 7819: 38,-23 - 7846: 33,-17 - 7958: 53,-28 - 7974: 55,-23 + 2087: 30,-23 + 2511: 60,-46 + 2582: 63,-46 + 4232: 11,-18 + 4297: 19,-12 + 4901: 54,-37 + 4908: 47,-27 + 5870: 70,-46 + 5871: 74,-46 + 7413: 46,-23 + 7423: 43,-23 + 7442: 38,-23 + 7469: 33,-17 + 7581: 53,-28 + 7597: 55,-23 - node: cleanable: True color: '#D4D4D4A7' id: MiniTileWhiteCornerSw decals: - 1314: 36,58 - 1315: 41,58 + 1243: 36,58 + 1244: 41,58 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerSw decals: - 917: 23,3 - 7024: 42,-8 - 7689: 13,-28 - 7695: 8,-26 + 857: 23,3 + 6674: 42,-8 + 7312: 13,-28 + 7318: 8,-26 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 879: 2,25 - 934: 19,25 - 1018: 13,32 - 1032: 26,31 - 3220: 26,37 - 5400: 23,13 - 6888: 19,10 + 819: 2,25 + 874: 19,25 + 951: 13,32 + 965: 26,31 + 3023: 26,37 + 5099: 23,13 + 6542: 19,10 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: - 2018: -78,-25 - 6818: -1.9986801,-43.73684 - 6839: -14.0012455,-41.741486 - 7796: 38,-23 + 1871: -78,-25 + 6472: -1.9986801,-43.73684 + 6493: -14.0012455,-41.741486 + 7419: 38,-23 + - node: + color: '#334E6DC8' + id: MiniTileWhiteEndE + decals: + 8098: -13,-3 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteEndE decals: - 4407: 17,-56 + 4158: 17,-56 - node: color: '#D381C996' id: MiniTileWhiteEndE decals: - 2850: 80,-48 - 2851: 80,-42 + 2666: 80,-48 + 2667: 80,-42 - node: color: '#EFB34196' id: MiniTileWhiteEndE decals: - 5601: 28,42 + 5292: 28,42 + - node: + color: '#334E6DC8' + id: MiniTileWhiteEndW + decals: + 8097: -19,-3 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteEndW decals: - 4408: 12,-56 + 4159: 12,-56 - node: color: '#D381C996' id: MiniTileWhiteEndW decals: - 2848: 78,-48 - 2849: 78,-42 + 2664: 78,-48 + 2665: 78,-42 - node: color: '#EFB34196' id: MiniTileWhiteEndW decals: - 5600: 26,42 + 5291: 26,42 - node: color: '#334E6DC8' id: MiniTileWhiteInnerNe decals: - 831: -8,-10 - 838: -9,-9 - 5630: -21,1 + 771: -8,-10 + 778: -9,-9 + 5319: -21,1 + 8110: -18,-3 + 8112: -14,-3 - node: color: '#3EB38896' id: MiniTileWhiteInnerNe decals: - 5529: 8,10 - 5530: 7,11 - 5531: 6,12 - 5615: 0,13 + 5228: 8,10 + 5229: 7,11 + 5230: 6,12 + 5304: 0,13 - node: color: '#43990996' id: MiniTileWhiteInnerNe decals: - 6110: -34,-53 + 5783: -34,-53 - node: color: '#48B9FF8C' id: MiniTileWhiteInnerNe decals: - 2867: -4,-52 - 2873: -5,-51 + 2683: -4,-52 + 2689: -5,-51 - node: color: '#52B4E996' id: MiniTileWhiteInnerNe decals: - 1077: -5,-43 - 2925: -23,-50 - 2943: -23,-54 - 5980: 0,-36 - 5982: 1,-37 + 1010: -5,-43 + 2741: -23,-50 + 2759: -23,-54 + 5655: 0,-36 + 5657: 1,-37 - node: color: '#8C347F96' id: MiniTileWhiteInnerNe decals: - 6262: -58,23 + 5919: -58,23 - node: color: '#9FED5896' id: MiniTileWhiteInnerNe decals: - 740: -66,15 - 1544: -84,15 - 1562: -94,23 - 3136: -96,15 - 3142: -76,23 - 3768: -45,23 - 6164: -64,-8 - 6345: -11,23 - 6575: -34,23 + 682: -66,15 + 1473: -84,15 + 1490: -94,23 + 2952: -96,15 + 2958: -76,23 + 3560: -45,23 + 5833: -64,-8 + 6001: -11,23 + 6229: -34,23 + 7840: 28,0 + 7968: -37,-1 + 8301: -31,38 + 8309: -26,35 - node: color: '#A4610696' id: MiniTileWhiteInnerNe decals: - 1142: 60,0 + 1075: 60,0 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteInnerNe decals: - 4415: 16,-56 - 4416: 13,-56 + 4166: 16,-56 + 4167: 13,-56 - node: color: '#D381C996' id: MiniTileWhiteInnerNe decals: - 4506: 25,-17 - 4518: 24,-14 - 5960: 0,-20 - 6717: 17,-19 - 7914: 57,-34 + 4257: 25,-17 + 4269: 24,-14 + 6371: 17,-19 + 7537: 57,-34 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNe decals: - 5262: -15,-41 - 5586: 6,60 - 5734: 21,1 + 4963: -15,-41 + 5277: 6,60 + 5420: 21,1 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe decals: - 1192: 11,23 - 5720: 9,1 - 5798: 0,23 + 1124: 11,23 + 5406: 9,1 + 5484: 0,23 - node: color: '#FA750096' id: MiniTileWhiteInnerNe decals: - 6146: 6,-46 + 5819: 6,-46 - node: color: '#334E6DC8' id: MiniTileWhiteInnerNw decals: - 5639: -11,1 - 5651: -10,10 - 5652: -9,11 - 5653: -8,12 - 5708: -2,13 + 5328: -11,1 + 5340: -10,10 + 5341: -9,11 + 5342: -8,12 + 5394: -2,13 + 8109: -14,-3 + 8111: -18,-3 - node: color: '#43990996' id: MiniTileWhiteInnerNw decals: - 6121: -37,-53 + 5794: -37,-53 - node: color: '#48B9FF8C' id: MiniTileWhiteInnerNw decals: - 2872: -5,-51 - 2916: -20,-45 + 2688: -5,-51 + 2732: -20,-45 - node: color: '#4D69B7C6' id: MiniTileWhiteInnerNw decals: - 1935: -96,5 + 1789: -96,5 - node: color: '#52B4E996' id: MiniTileWhiteInnerNw decals: - 1076: 3,-43 - 2926: -23,-50 - 5031: 4,-52 - 5981: -2,-36 - 5986: -3,-37 + 1009: 3,-43 + 2742: -23,-50 + 4750: 4,-52 + 5656: -2,-36 + 5661: -3,-37 - node: color: '#8C347F96' id: MiniTileWhiteInnerNw decals: - 6268: -52,23 + 5925: -52,23 - node: cleanable: True color: '#996700FF' id: MiniTileWhiteInnerNw decals: - 7489: 3,-7 + 7113: 3,-7 - node: color: '#9FED5896' id: MiniTileWhiteInnerNw decals: - 741: -52,15 - 1542: -88,15 - 1543: -70,15 - 1560: -96,23 - 1561: -78,23 - 1563: -60,23 - 5767: -2,23 - 6344: -11,23 - 6574: -38,23 + 683: -52,15 + 1471: -88,15 + 1472: -70,15 + 1488: -96,23 + 1489: -78,23 + 1491: -60,23 + 5453: -2,23 + 6000: -11,23 + 6228: -38,23 + 7742: -35,-1 + 7847: 38,0 + 8300: -31,38 - node: color: '#A4610696' id: MiniTileWhiteInnerNw decals: - 1141: 67,5 + 1074: 67,5 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteInnerNw decals: - 4417: 13,-56 - 4418: 16,-56 + 4168: 13,-56 + 4169: 16,-56 - node: color: '#D381C996' id: MiniTileWhiteInnerNw decals: - 4489: 14,-17 - 4514: 29,-17 - 4519: 23,-14 - 6718: 23,-19 - 7853: 38,-16 + 4240: 14,-17 + 4265: 29,-17 + 4270: 23,-14 + 6372: 23,-19 + 7476: 38,-16 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNw decals: - 5933: -2,-20 - 6038: -6,-41 - 6601: 26,11 + 5711: -6,-41 + 6255: 26,11 - node: color: '#EFB34196' id: MiniTileWhiteInnerNw decals: - 1193: 10,23 - 1196: 26,23 - 4059: 32,32 - 5711: 19,1 + 1125: 10,23 + 1128: 26,23 + 3847: 32,32 + 5397: 19,1 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSe decals: - 846: -9,10 - 863: -8,11 - 5510: 12,21 - 5511: 11.753565,21.001947 - 5699: 9,-1 - 5749: 0,-12 - 5758: 6,-11 - 5759: 7,-10 - 5760: 8,-9 + 786: -9,10 + 803: -8,11 + 5209: 12,21 + 5210: 11.753565,21.001947 + 5385: 9,-1 + 5435: 0,-12 + 5444: 6,-11 + 5445: 7,-10 + 5446: 8,-9 + 8133: -18,-1 + 8134: -14,-1 - node: cleanable: True color: '#334E6DC8' id: MiniTileWhiteInnerSe decals: - 3615: 5,31 + 3407: 5,31 - node: color: '#3EB38896' id: MiniTileWhiteInnerSe decals: - 5801: 0,21 - 7473: 27,22 + 5487: 0,21 + 7097: 27,22 - node: color: '#43990996' id: MiniTileWhiteInnerSe decals: - 6090: -35,-42 + 5763: -35,-42 - node: color: '#48B9FF8C' id: MiniTileWhiteInnerSe decals: - 2870: -5,-53 - 2871: -2,-53 - 2891: -5,-49 - 2939: -23,-46 + 2686: -5,-53 + 2687: -2,-53 + 2707: -5,-49 + 2755: -23,-46 - node: color: '#52B4E996' id: MiniTileWhiteInnerSe decals: - 2924: -23,-52 - 5039: 2,-53 - 5040: 5,-53 - 6044: -5,-38 - 6047: 2,-38 + 2740: -23,-52 + 4758: 2,-53 + 4759: 5,-53 + 5717: -5,-38 + 5720: 2,-38 - node: cleanable: True color: '#996700FF' id: MiniTileWhiteInnerSe decals: - 7490: 0,-5 + 7114: 0,-5 - node: color: '#9FED5896' id: MiniTileWhiteInnerSe decals: - 739: -66,21 - 1545: -96,21 - 1546: -84,21 - 5618: 8,-9 - 5821: -21,21 - 5828: -45,21 - 6351: -11,25 - 6554: 0,30 - 6755: 29,-1 - 6757: 35,-1 - 7743: 21,-1 + 681: -66,21 + 1474: -96,21 + 1475: -84,21 + 5307: 8,-9 + 5507: -21,21 + 5514: -45,21 + 6007: -11,25 + 6208: 0,30 + 6409: 29,-1 + 6411: 35,-1 + 7366: 21,-1 + 7969: -37,1 + 8315: -29,35 - node: cleanable: True color: '#9FED5896' id: MiniTileWhiteInnerSe decals: - 3605: 9,31 + 3397: 9,31 - node: color: '#D381C996' id: MiniTileWhiteInnerSe decals: - 4517: 28,-17 - 5962: 0,-22 - 6720: 17,-16 - 7816: 39,-20 + 4268: 28,-17 + 6374: 17,-16 + 7439: 39,-20 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerSe decals: - 6607: 24,9 - 7025: 50,-7 + 6261: 24,9 + 6675: 50,-7 - node: color: '#EFB34196' id: MiniTileWhiteInnerSe decals: - 4060: 28,34 - 5409: 24,14 - 5604: 30,35 + 3848: 28,34 + 5108: 24,14 + 5295: 30,35 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSw decals: - 858: 6,11 - 862: 7,10 - 1014: 19,21 - 5660: -11,-1 - 5670: -10,-9 - 5671: -9,-10 - 5672: -8,-11 - 5679: -2,-12 - 5737: 19,-1 + 798: 6,11 + 802: 7,10 + 947: 19,21 + 5346: -11,-1 + 5356: -10,-9 + 5357: -9,-10 + 5358: -8,-11 + 5365: -2,-12 + 5423: 19,-1 + 8131: -18,-1 + 8132: -14,-1 - node: cleanable: True color: '#334E6DC8' id: MiniTileWhiteInnerSw decals: - 3616: 9,31 + 3408: 9,31 - node: color: '#3EB38896' id: MiniTileWhiteInnerSw decals: - 5508: 12,21 - 5509: 12.244306,21.001947 + 5207: 12,21 + 5208: 12.244306,21.001947 - node: color: '#48B9FF8C' id: MiniTileWhiteInnerSw decals: - 2868: -2,-53 - 2869: -5,-53 - 2890: -5,-49 - 2933: -23,-48 + 2684: -2,-53 + 2685: -5,-53 + 2706: -5,-49 + 2749: -23,-48 - node: color: '#4D69B7C6' id: MiniTileWhiteInnerSw decals: - 1936: -96,4 + 1790: -96,4 - node: color: '#52B4E996' id: MiniTileWhiteInnerSw decals: - 1097: -11,-42 - 5041: 2,-53 - 5042: 5,-53 - 6045: -4,-38 - 6046: 3,-38 - - node: - color: '#79150096' - id: MiniTileWhiteInnerSw - decals: - 1724: -58,2 + 1030: -11,-42 + 4760: 2,-53 + 4761: 5,-53 + 5718: -4,-38 + 5719: 3,-38 - node: cleanable: True color: '#996700FF' id: MiniTileWhiteInnerSw decals: - 7488: 3,-5 + 7112: 3,-5 - node: color: '#9FED5896' id: MiniTileWhiteInnerSw decals: - 742: -52,21 - 1547: -70,21 - 3141: -88,21 - 5804: -2,21 - 5846: -23,21 - 6350: -11,25 - 6752: 31,-1 - 6753: 37,-1 - 7040: 38,-1 - 7339: -52,13 + 684: -52,21 + 1476: -70,21 + 2957: -88,21 + 5490: -2,21 + 5532: -23,21 + 6006: -11,25 + 6406: 31,-1 + 6407: 37,-1 + 6690: 38,-1 + 6973: -52,13 + 7741: -35,1 + 8316: -29,35 - node: color: '#D381C996' id: MiniTileWhiteInnerSw decals: - 2701: 60,-44 - 6719: 23,-16 - 7812: 43,-20 + 2517: 60,-44 + 6373: 23,-16 + 7435: 43,-20 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerSw decals: - 5935: -2,-22 - 7687: 13,-26 + 7310: 13,-26 - node: cleanable: True color: '#DE3A3A96' id: MiniTileWhiteInnerSw decals: - 3600: 5,31 + 3392: 5,31 - node: color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 792: 9,-3 - 793: 9,-7 - 794: 9,-8 - 832: -9,-8 - 833: -9,-7 - 834: -9,-6 - 835: -9,-5 - 836: -9,-4 - 837: -9,-3 - 839: -9,4 - 840: -9,5 - 841: -9,6 - 842: -9,7 - 843: -9,8 - 844: -9,9 - 5357: -9,-2 - 5619: -21,12 - 5620: -21,11 - 5621: -21,10 - 5622: -21,9 - 5623: -21,8 - 5624: -21,7 - 5625: -21,6 - 5626: -21,5 - 5627: -21,4 - 5628: -21,3 - 5629: -21,2 - 5682: -9,2 - 5683: -9,3 - 5690: -9,0 - 5698: 9,-2 - 5748: 0,-13 + 732: 9,-3 + 733: 9,-7 + 734: 9,-8 + 772: -9,-8 + 773: -9,-7 + 774: -9,-6 + 775: -9,-5 + 776: -9,-4 + 777: -9,-3 + 779: -9,4 + 780: -9,5 + 781: -9,6 + 782: -9,7 + 783: -9,8 + 784: -9,9 + 5058: -9,-2 + 5308: -21,12 + 5309: -21,11 + 5310: -21,10 + 5311: -21,9 + 5312: -21,8 + 5313: -21,7 + 5314: -21,6 + 5315: -21,5 + 5316: -21,4 + 5317: -21,3 + 5318: -21,2 + 5368: -9,2 + 5369: -9,3 + 5376: -9,0 + 5384: 9,-2 + 5434: 0,-13 + 8107: -18,-2 + 8113: -14,-2 - node: cleanable: True color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 1351: 55,65 - 1352: 55,64 - 1353: 55,63 - 1356: 59,66 - 1357: 59,65 - 1358: 59,64 - 1359: 59,63 - 1360: 59,62 - 1432: 52,61 - 1433: 52,60 - 1434: 52,59 - 1435: 52,57 - 1436: 52,58 - 3610: 5,30 - 3611: 5,29 + 1280: 55,65 + 1281: 55,64 + 1282: 55,63 + 1285: 59,66 + 1286: 59,65 + 1287: 59,64 + 1288: 59,63 + 1289: 59,62 + 1361: 52,61 + 1362: 52,60 + 1363: 52,59 + 1364: 52,57 + 1365: 52,58 + 3402: 5,30 + 3403: 5,29 - node: color: '#3EB38896' id: MiniTileWhiteLineE decals: - 5517: 0,19 - 5518: 0,18 - 5519: 0,17 - 5520: 0,16 - 5521: 0,15 - 5560: 10,16 - 5561: 10,15 - 5562: 11,15 - 5563: 11,16 - 5564: 11,17 - 5565: 11,18 - 5613: 0,14 - 5800: 0,20 - 7474: 28,23 - 7475: 28,24 - 7476: 28,25 - 7477: 28,26 - 7478: 28,27 + 5216: 0,19 + 5217: 0,18 + 5218: 0,17 + 5219: 0,16 + 5220: 0,15 + 5259: 10,16 + 5260: 10,15 + 5261: 11,15 + 5262: 11,16 + 5263: 11,17 + 5264: 11,18 + 5302: 0,14 + 5486: 0,20 + 7098: 28,23 + 7099: 28,24 + 7100: 28,25 + 7101: 28,26 + 7102: 28,27 - node: color: '#43990996' id: MiniTileWhiteLineE decals: - 6089: -35,-43 - 6091: -35,-44 - 6092: -35,-45 - 6093: -35,-46 - 6094: -35,-47 - 6095: -35,-48 - 6107: -34,-51 - 6108: -34,-52 - 6111: -33,-54 - 6112: -33,-56 - 6132: -29,-54 + 5762: -35,-43 + 5764: -35,-44 + 5765: -35,-45 + 5766: -35,-46 + 5767: -35,-47 + 5768: -35,-48 + 5780: -34,-51 + 5781: -34,-52 + 5784: -33,-54 + 5785: -33,-56 + 5805: -29,-54 - node: color: '#48B9FF8C' id: MiniTileWhiteLineE decals: - 2888: -4,-48 - 2889: -4,-47 - 2893: -5,-50 - 2910: -20,-45 - 2911: -20,-44 - 2930: -23,-48 - 2932: -23,-47 + 2704: -4,-48 + 2705: -4,-47 + 2709: -5,-50 + 2726: -20,-45 + 2727: -20,-44 + 2746: -23,-48 + 2748: -23,-47 - node: color: '#52B4E996' id: MiniTileWhiteLineE decals: - 1074: -5,-42 - 1075: -5,-41 - 1116: -16,-51 - 1120: 10,-55 - 1121: 10,-54 - 1122: 10,-53 - 1123: 10,-52 - 1124: 10,-51 - 2920: -21,-51 - 2922: -23,-53 - 2928: -23,-49 - 2940: -21,-54 - 5033: 6,-51 - 5153: 10,-51 - 5970: 0,-32 - 5971: 0,-34 - 5976: 0,-35 - 5999: 6,-34 - 6037: -5,-40 - 6040: -5,-39 - 6150: 10,-46 + 1007: -5,-42 + 1008: -5,-41 + 1049: -16,-51 + 1053: 10,-55 + 1054: 10,-54 + 1055: 10,-53 + 1056: 10,-52 + 1057: 10,-51 + 2736: -21,-51 + 2738: -23,-53 + 2744: -23,-49 + 2756: -21,-54 + 4752: 6,-51 + 4872: 10,-51 + 5645: 0,-32 + 5646: 0,-34 + 5651: 0,-35 + 5674: 6,-34 + 5710: -5,-40 + 5713: -5,-39 + 5823: 10,-46 - node: color: '#60CFFF6C' id: MiniTileWhiteLineE decals: - 4066: 2,-47 - 4067: 2,-48 - 4068: 2,-48 - 4069: 2,-49 - 4070: 2,-49 - 4071: 2,-47 - - node: - color: '#79150096' - id: MiniTileWhiteLineE - decals: - 1732: -55,4 - 1733: -55,3 - 1734: -55,2 - - node: - color: '#791500FF' - id: MiniTileWhiteLineE - decals: - 4723: -14,37 - 4724: -14,37 + 3854: 2,-47 + 3855: 2,-48 + 3856: 2,-48 + 3857: 2,-49 + 3858: 2,-49 + 3859: 2,-47 - node: color: '#8C347F96' id: MiniTileWhiteLineE decals: - 6255: -58,30 - 6256: -58,29 - 6257: -58,28 - 6258: -58,27 - 6259: -58,26 - 6260: -58,25 - 6261: -58,24 + 5912: -58,30 + 5913: -58,29 + 5914: -58,28 + 5915: -58,27 + 5916: -58,26 + 5917: -58,25 + 5918: -58,24 - node: color: '#9FED5896' id: MiniTileWhiteLineE decals: - 666: -66,20 - 667: -66,19 - 668: -66,18 - 669: -66,17 - 670: -66,16 - 671: -45,20 - 672: -45,19 - 673: -45,18 - 674: -45,17 - 675: -45,16 - 676: -45,15 - 677: -45,13 - 751: -45,12 - 782: 1,34 - 1111: -32,-60 - 1553: -96,17 - 1554: -96,18 - 1555: -96,19 - 1556: -84,16 - 1557: -84,17 - 1558: -84,19 - 1559: -84,20 - 1564: -94,24 - 1565: -94,26 - 1566: -94,27 - 1567: -94,31 - 1568: -94,32 - 1569: -94,35 - 1570: -94,36 - 1571: -94,38 - 1572: -94,41 - 1598: -76,42 - 1599: -76,41 - 1600: -76,38 - 1601: -76,36 - 1602: -76,35 - 1603: -76,34 - 1604: -76,32 - 1605: -76,31 - 1606: -76,29 - 1607: -76,28 - 1608: -76,27 - 1609: -76,26 - 1610: -76,24 - 1644: -84,18 - 1645: -96,16 - 1648: -96,20 - 1649: -58,31 - 1650: -58,32 - 1651: -58,33 - 1652: -58,35 - 1653: -58,36 - 1654: -58,37 - 1655: -58,38 - 1656: -58,40 - 1657: -58,42 - 3138: -94,28 - 3140: -94,37 - 3143: -76,25 - 3146: -76,30 - 3149: -76,37 - 3150: -76,39 - 3155: -58,34 - 3158: -58,39 - 3159: -58,41 - 3769: -45,24 - 5585: 0,29 - 5822: -21,18 - 5823: -21,19 - 5824: -21,20 - 5825: -21,14 - 5826: -21,15 - 5827: -21,16 - 6166: -64,-6 - 6167: -64,-7 - 6188: -64,-5 - 6315: -11,24 - 6358: -10,26 - 6556: 1,31 - 6568: -34,25 - 6569: -34,24 - 6748: 35,-3 - 6749: 35,-2 - 7335: -45,14 - 7740: 21,-4 - 7741: 21,-3 - 7742: 21,-2 + 609: -66,20 + 610: -66,19 + 611: -66,18 + 612: -66,17 + 613: -66,16 + 614: -45,20 + 615: -45,19 + 616: -45,17 + 617: -45,16 + 618: -45,15 + 619: -45,13 + 693: -45,12 + 724: 1,34 + 1044: -32,-60 + 1482: -96,17 + 1483: -96,19 + 1484: -84,16 + 1485: -84,17 + 1486: -84,19 + 1487: -84,20 + 1492: -94,24 + 1493: -94,26 + 1494: -94,27 + 1495: -94,31 + 1496: -94,32 + 1497: -94,35 + 1498: -94,36 + 1499: -94,38 + 1500: -94,41 + 1526: -76,42 + 1527: -76,41 + 1528: -76,38 + 1529: -76,36 + 1530: -76,35 + 1531: -76,34 + 1532: -76,32 + 1533: -76,31 + 1534: -76,29 + 1535: -76,28 + 1536: -76,27 + 1537: -76,26 + 1538: -76,24 + 1571: -84,18 + 1572: -96,16 + 1575: -96,20 + 1576: -58,31 + 1577: -58,32 + 1578: -58,33 + 1579: -58,35 + 1580: -58,36 + 1581: -58,37 + 1582: -58,38 + 1583: -58,40 + 1584: -58,42 + 2954: -94,28 + 2956: -94,37 + 2959: -76,25 + 2964: -76,37 + 2965: -76,39 + 2970: -58,34 + 2973: -58,39 + 2974: -58,41 + 3561: -45,24 + 5276: 0,29 + 5508: -21,18 + 5509: -21,19 + 5510: -21,20 + 5511: -21,14 + 5512: -21,15 + 5513: -21,16 + 5835: -64,-6 + 5836: -64,-7 + 5857: -64,-5 + 5971: -11,24 + 6014: -10,26 + 6210: 1,31 + 6222: -34,25 + 6223: -34,24 + 6402: 35,-3 + 6403: 35,-2 + 6969: -45,14 + 7363: 21,-4 + 7364: 21,-3 + 7365: 21,-2 + 7967: -37,0 + 8307: -26,37 + 8308: -26,36 + 8321: -29,34 + 8591: -96,18 + 8640: -45,18 - node: cleanable: True color: '#9FED5896' id: MiniTileWhiteLineE decals: - 3606: 9,30 - 3607: 9,29 + 3398: 9,30 + 3399: 9,29 - node: color: '#A4610696' id: MiniTileWhiteLineE decals: - 6973: 43,-3 - 6982: 43,-1 - 6995: 51,0 - 6996: 51,-2 - 6997: 51,-3 + 6623: 43,-3 + 6632: 43,-1 + 6645: 51,0 + 6646: 51,-2 + 6647: 51,-3 - node: zIndex: 1 color: '#B4C8FFFF' id: MiniTileWhiteLineE decals: - 4370: -49,4 - 4381: -49,4 - 4382: -49,4 + 4121: -49,4 + 4132: -49,4 + 4133: -49,4 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteLineE decals: - 4383: -49,4 - 4395: 13,-55 - 4396: 13,-54 - 4397: 13,-53 - 4404: 16,-55 - 4405: 16,-54 - 4406: 16,-53 + 4134: -49,4 + 4146: 13,-55 + 4147: 13,-54 + 4148: 13,-53 + 4155: 16,-55 + 4156: 16,-54 + 4157: 16,-53 - node: color: '#D381C996' id: MiniTileWhiteLineE decals: - 2381: 61,-40 - 2697: 61,-44 - 2698: 61,-43 - 2699: 61,-42 - 2700: 61,-41 - 2847: 80,-45 - 4499: 24,-13 - 4501: 25,-15 - 4502: 25,-16 - 5946: 0,-15 - 5947: 0,-16 - 5948: 0,-17 - 5949: 0,-18 - 5950: 0,-19 - 5961: 0,-23 - 5967: 0,-28 - 5968: 0,-29 - 5969: 0,-30 - 6331: 0,-27 - 6332: 0,-26 - 6333: 0,-25 - 6334: 0,-24 - 6721: 17,-18 - 6722: 17,-17 - 7666: 10,-22 - 7713: 36,-20 - 7714: 36,-22 - 7733: 21,-11 - 7734: 21,-10 - 7735: 21,-9 - 7736: 21,-8 - 7737: 21,-7 - 7738: 21,-6 - 7739: 21,-5 - 7803: 44,-21 - 7804: 44,-20 - 7815: 39,-21 - 7817: 39,-22 - 7831: 24,-12 - 7861: 42,-16 - 7862: 42,-15 - 7863: 42,-14 - 7905: 61,-36 - 7910: 57,-33 - 7911: 57,-32 - 7912: 57,-31 - 7913: 57,-30 - 7949: 60,-28 - 7950: 60,-26 - 7972: 57,-22 + 2234: 61,-40 + 2513: 61,-44 + 2514: 61,-43 + 2515: 61,-42 + 2516: 61,-41 + 2663: 80,-45 + 4250: 24,-13 + 4252: 25,-15 + 4253: 25,-16 + 5623: 0,-15 + 5624: 0,-16 + 5625: 0,-17 + 5626: 0,-18 + 5627: 0,-19 + 5637: 0,-23 + 5642: 0,-28 + 5643: 0,-29 + 5644: 0,-30 + 5987: 0,-27 + 5988: 0,-26 + 5989: 0,-25 + 5990: 0,-24 + 6375: 17,-18 + 6376: 17,-17 + 7289: 10,-22 + 7336: 36,-20 + 7337: 36,-22 + 7356: 21,-11 + 7357: 21,-10 + 7358: 21,-9 + 7359: 21,-8 + 7360: 21,-7 + 7361: 21,-6 + 7362: 21,-5 + 7426: 44,-21 + 7427: 44,-20 + 7438: 39,-21 + 7440: 39,-22 + 7454: 24,-12 + 7484: 42,-16 + 7485: 42,-15 + 7486: 42,-14 + 7528: 61,-36 + 7533: 57,-33 + 7534: 57,-32 + 7535: 57,-31 + 7536: 57,-30 + 7572: 60,-28 + 7573: 60,-26 + 7595: 57,-22 - node: cleanable: True color: '#D4D4D4A7' id: MiniTileWhiteLineE decals: - 1318: 42,60 - 1319: 42,59 + 1247: 42,60 + 1248: 42,59 - node: color: '#DE3A3A96' id: MiniTileWhiteLineE decals: - 909: 21,12 - 910: 21,11 - 919: 24,4 - 920: 24,5 - 921: 24,6 - 922: 24,8 - 923: 21,3 - 924: 21,5 - 925: 21,6 - 926: 21,7 - 5261: -15,-40 - 5733: 21,2 - 6541: 1,38 - 6542: 1,40 - 6543: 1,41 - 6544: 1,42 - 6602: 27,11 - 6603: 27,10 - 7692: 15,-27 - 7693: 15,-26 - 7694: 15,-25 + 849: 21,12 + 850: 21,11 + 859: 24,4 + 860: 24,5 + 861: 24,6 + 862: 24,8 + 863: 21,3 + 864: 21,5 + 865: 21,6 + 866: 21,7 + 4962: -15,-40 + 5419: 21,2 + 6195: 1,38 + 6196: 1,40 + 6197: 1,41 + 6198: 1,42 + 6256: 27,11 + 6257: 27,10 + 7315: 15,-27 + 7316: 15,-26 + 7317: 15,-25 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 884: 11,24 - 905: 21,20 - 906: 21,19 - 907: 21,18 - 908: 21,13 - 935: 24,27 - 1020: 17,33 - 1021: 17,34 - 1022: 17,35 - 1190: 11,25 - 1191: 11,26 - 3221: 28,38 - 3222: 28,39 - 3970: 24,30 - 3978: 28,32 - 3979: 28,33 - 4992: 24,26 - 5401: 26,15 - 5402: 26,16 - 5403: 26,17 - 5404: 26,18 - 5405: 26,19 - 5421: 24,29 - 5581: 0,25 - 5582: 0,26 - 5583: 0,27 - 5584: 0,28 - 5721: 9,2 - 5722: 9,3 - 5723: 9,4 - 5724: 9,5 - 5725: 9,6 - 5726: 9,7 - 5727: 9,8 - 5728: 9,9 - 5797: 0,24 - 6887: 9,10 - 6893: 21,17 - 6894: 21,16 - 6895: 21,15 - 6896: 21,14 + 824: 11,24 + 845: 21,20 + 846: 21,19 + 847: 21,18 + 848: 21,13 + 875: 24,27 + 953: 17,33 + 954: 17,34 + 955: 17,35 + 1122: 11,25 + 1123: 11,26 + 3024: 28,38 + 3025: 28,39 + 3758: 24,30 + 3766: 28,32 + 3767: 28,33 + 4715: 24,26 + 5100: 26,15 + 5101: 26,16 + 5102: 26,17 + 5103: 26,18 + 5104: 26,19 + 5120: 24,29 + 5272: 0,25 + 5273: 0,26 + 5274: 0,27 + 5275: 0,28 + 5407: 9,2 + 5408: 9,3 + 5409: 9,4 + 5410: 9,5 + 5411: 9,6 + 5412: 9,7 + 5413: 9,8 + 5414: 9,9 + 5483: 0,24 + 6541: 9,10 + 6547: 21,17 + 6548: 21,16 + 6549: 21,15 + 6550: 21,14 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineE decals: - 1341: 34,64 - 1342: 34,63 - 1344: 34,62 - 1345: 34,66 - 1346: 34,65 + 1270: 34,64 + 1271: 34,63 + 1273: 34,62 + 1274: 34,66 + 1275: 34,65 - node: color: '#FA750096' id: MiniTileWhiteLineE decals: - 6143: 6,-43 - 6144: 6,-44 - 6145: 6,-45 + 5816: 6,-43 + 5817: 6,-44 + 5818: 6,-45 - node: zIndex: 2 color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 4364: -49,4 + 4115: -49,4 - node: color: '#334E6DC8' id: MiniTileWhiteLineN decals: - 790: 16,-3 - 821: 5,-10 - 822: 4,-10 - 823: 3,-10 - 824: 2,-10 - 825: -2,-10 - 826: -5,-10 - 827: -4,-10 - 828: -6,-10 - 829: -7,-10 - 5364: -3,-10 - 5365: 0,-10 - 5366: 1,-10 - 5589: 35,36 - 5631: -20,1 - 5632: -19,1 - 5633: -18,1 - 5634: -17,1 - 5635: -15,1 - 5636: -14,1 - 5637: -13,1 - 5638: -12,1 - 5701: 14,-3 - 5703: -7,13 - 5704: -6,13 - 5705: -5,13 - 5706: -4,13 - 5707: -3,13 + 730: 16,-3 + 761: 5,-10 + 762: 4,-10 + 763: 3,-10 + 764: 2,-10 + 765: -2,-10 + 766: -5,-10 + 767: -4,-10 + 768: -6,-10 + 769: -7,-10 + 5063: -3,-10 + 5064: 0,-10 + 5065: 1,-10 + 5280: 35,36 + 5320: -20,1 + 5321: -19,1 + 5322: -18,1 + 5323: -17,1 + 5324: -15,1 + 5325: -14,1 + 5326: -13,1 + 5327: -12,1 + 5387: 14,-3 + 5389: -7,13 + 5390: -6,13 + 5391: -5,13 + 5392: -4,13 + 5393: -3,13 + 8104: -17,-3 + 8105: -16,-3 + 8106: -15,-3 - node: cleanable: True color: '#334E6DC8' id: MiniTileWhiteLineN decals: - 1354: 56,62 - 1355: 57,62 - 1411: 45,69 - 1420: 45,57 - 1421: 46,57 - 1422: 47,57 - 1423: 48,57 - 1424: 50,57 - 1425: 51,57 - 1426: 49,57 + 1283: 56,62 + 1284: 57,62 + 1340: 45,69 + 1349: 45,57 + 1350: 46,57 + 1351: 47,57 + 1352: 48,57 + 1353: 50,57 + 1354: 51,57 + 1355: 49,57 - node: color: '#3EB38896' id: MiniTileWhiteLineN decals: - 5458: 33,29 - 5459: 34,29 - 5466: 38,29 - 5522: 2,13 - 5523: 3,13 - 5524: 4,13 - 5525: 5,13 - 5541: 6,16 - 5552: 3,19 - 5553: 4,19 - 5554: 5,19 - 5555: 6,19 - 5556: 7,19 - 5557: 8,19 - 5558: 9,19 - 5614: 1,13 - 6890: 9,10 + 5157: 33,29 + 5158: 34,29 + 5165: 38,29 + 5221: 2,13 + 5222: 3,13 + 5223: 4,13 + 5224: 5,13 + 5240: 6,16 + 5251: 3,19 + 5252: 4,19 + 5253: 5,19 + 5254: 6,19 + 5255: 7,19 + 5256: 8,19 + 5257: 9,19 + 5303: 1,13 + 6544: 9,10 - node: color: '#43990996' id: MiniTileWhiteLineN decals: - 6052: -25,-40 - 6053: -24,-40 - 6054: -23,-40 - 6064: -28,-41 - 6068: -29,-41 - 6069: -30,-41 - 6070: -31,-41 - 6071: -32,-41 - 6072: -33,-41 - 6073: -34,-41 - 6074: -35,-41 - 6131: -30,-53 + 5725: -25,-40 + 5726: -24,-40 + 5727: -23,-40 + 5737: -28,-41 + 5741: -29,-41 + 5742: -30,-41 + 5743: -31,-41 + 5744: -32,-41 + 5745: -33,-41 + 5746: -34,-41 + 5747: -35,-41 + 5804: -30,-53 - node: cleanable: True color: '#474F52EC' id: MiniTileWhiteLineN decals: - 1348: 47,65 + 1277: 47,65 - node: color: '#48B9FF8C' id: MiniTileWhiteLineN decals: - 2860: 0,-52 - 2861: -2,-52 - 2862: -3,-52 - 2900: -25,-45 - 2901: -24,-45 - 2902: -23,-45 - 2903: -22,-45 - 2905: -21,-45 + 2676: 0,-52 + 2677: -2,-52 + 2678: -3,-52 + 2716: -25,-45 + 2717: -24,-45 + 2718: -23,-45 + 2719: -22,-45 + 2721: -21,-45 - node: color: '#4D69B7C6' id: MiniTileWhiteLineN decals: - 1929: -95,6 - 1934: -97,5 + 1783: -95,6 + 1788: -97,5 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 1070: 2,-43 - 1071: 1,-43 - 1072: -3,-43 - 1073: -4,-43 - 1088: -16,-40 - 1089: -18,-40 - 1090: -17,-40 - 1091: -19,-40 - 1118: -18,-50 - 2919: -22,-50 - 2931: -22,-54 - 2937: -21,-54 - 4222: -1,-46 - 4223: 0,-46 - 4224: 1,-46 - 4225: 2,-52 - 5032: 3,-52 - 5983: 2,-37 - 5984: 3,-37 - 5985: 5,-37 - 5987: -4,-37 - 5988: -5,-37 - 5990: 2,-33 - 5991: 3,-33 - 5992: 4,-33 - 5993: 5,-33 - 5994: 6,-33 - 6595: -15,-40 - 6812: -2,-43 - 6813: 0,-43 + 1003: 2,-43 + 1004: 1,-43 + 1005: -3,-43 + 1006: -4,-43 + 1021: -16,-40 + 1022: -18,-40 + 1023: -17,-40 + 1024: -19,-40 + 1051: -18,-50 + 2735: -22,-50 + 2747: -22,-54 + 2753: -21,-54 + 3985: -1,-46 + 3986: 0,-46 + 3987: 1,-46 + 3988: 2,-52 + 4751: 3,-52 + 5658: 2,-37 + 5659: 3,-37 + 5660: 5,-37 + 5662: -4,-37 + 5663: -5,-37 + 5665: 2,-33 + 5666: 3,-33 + 5667: 4,-33 + 5668: 5,-33 + 5669: 6,-33 + 6249: -15,-40 + 6466: -2,-43 + 6467: 0,-43 - node: cleanable: True color: '#52B4E996' id: MiniTileWhiteLineN decals: - 1410: 47,69 - - node: - color: '#79150096' - id: MiniTileWhiteLineN - decals: - 1728: -58,5 - 1729: -57,5 - 1730: -56,5 + 1339: 47,69 - node: color: '#8C347F96' id: MiniTileWhiteLineN decals: - 6250: -51,25 - 6251: -50,25 - 6252: -46,25 - 6263: -57,23 - 6264: -56,23 - 6265: -55,23 - 6266: -54,23 - 6267: -53,23 + 5907: -51,25 + 5908: -50,25 + 5909: -46,25 + 5920: -57,23 + 5921: -56,23 + 5922: -55,23 + 5923: -54,23 + 5924: -53,23 - node: cleanable: True color: '#996700FF' id: MiniTileWhiteLineN decals: - 7486: 1,-7 - 7487: 2,-7 + 7110: 1,-7 + 7111: 2,-7 - node: color: '#9FED5896' id: MiniTileWhiteLineN decals: - 713: -65,15 - 714: -64,15 - 715: -63,15 - 716: -62,15 - 717: -61,15 - 718: -59,15 - 719: -58,15 - 720: -57,15 - 721: -56,15 - 722: -55,15 - 723: -54,15 - 724: -53,15 - 725: -83,23 - 726: -82,23 - 727: -80,23 - 728: -79,23 - 729: -75,23 - 730: -73,23 - 731: -72,23 - 732: -71,23 - 733: -70,23 - 734: -65,23 - 735: -64,23 - 736: -63,23 - 737: -62,23 - 738: -61,23 - 762: -84,23 - 763: -85,23 - 764: -88,23 - 784: 29,1 - 785: 33,1 - 786: 37,1 - 1109: -33,-59 - 1110: -34,-59 - 1112: -38,-59 - 1113: -37,-59 - 1501: -95,15 - 1502: -94,15 - 1503: -93,15 - 1504: -92,15 - 1505: -90,15 - 1506: -89,15 - 1507: -83,15 - 1508: -82,15 - 1509: -81,15 - 1510: -80,15 - 1511: -79,15 - 1512: -78,15 - 1513: -77,15 - 1514: -76,15 - 1515: -75,15 - 1516: -74,15 - 1517: -73,15 - 1518: -72,15 - 1519: -71,15 - 1520: -69,23 - 1521: -68,23 - 1522: -66,23 - 1523: -81,23 - 1524: -86,23 - 1525: -87,23 - 1526: -89,23 - 1527: -90,23 - 1528: -92,23 - 1529: -91,23 - 1530: -93,23 - 1531: -97,23 - 1532: -98,23 - 3134: -91,15 - 3151: -67,23 - 3153: -60,15 - 5768: -3,23 - 5769: -4,23 - 5770: -5,23 - 5771: -6,23 - 5772: -7,23 - 5773: -8,23 - 5774: -14,23 - 5775: -15,23 - 5776: -16,23 - 5777: -17,23 - 5778: -18,23 - 5779: -19,23 - 5780: -20,23 - 5781: -22,23 - 5782: -24,23 - 5783: -25,23 - 5784: -44,23 - 5785: -43,23 - 5786: -41,23 - 5787: -40,23 - 5788: -31,23 - 5789: -30,23 - 5790: -29,23 - 5791: -28,23 - 5792: -27,23 - 5863: -25,1 - 5864: -24,1 - 5865: -32,1 - 5866: -31,1 - 5867: -30,1 - 5868: -29,1 - 5869: -28,1 - 5870: -34,1 - 5871: -35,1 - 5872: -36,1 - 6313: -12,23 - 6314: -10,23 - 6341: -13,23 - 6342: -9,23 - 6562: -32,23 - 6570: -33,23 - 6571: -39,23 - 6576: -38,25 - 6577: -37,25 - 6578: -36,25 - 6579: -35,25 - 6580: -34,25 - 6972: 41,1 + 655: -65,15 + 656: -64,15 + 657: -63,15 + 658: -62,15 + 659: -61,15 + 660: -59,15 + 661: -58,15 + 662: -57,15 + 663: -56,15 + 664: -55,15 + 665: -54,15 + 666: -53,15 + 667: -83,23 + 668: -82,23 + 669: -80,23 + 670: -79,23 + 671: -75,23 + 672: -73,23 + 673: -72,23 + 674: -71,23 + 675: -70,23 + 676: -65,23 + 677: -64,23 + 678: -63,23 + 679: -62,23 + 680: -61,23 + 704: -84,23 + 705: -85,23 + 706: -88,23 + 726: 37,1 + 1042: -33,-59 + 1043: -34,-59 + 1045: -38,-59 + 1046: -37,-59 + 1430: -95,15 + 1431: -94,15 + 1432: -93,15 + 1433: -92,15 + 1434: -90,15 + 1435: -89,15 + 1436: -83,15 + 1437: -82,15 + 1438: -81,15 + 1439: -80,15 + 1440: -79,15 + 1441: -78,15 + 1442: -77,15 + 1443: -76,15 + 1444: -75,15 + 1445: -74,15 + 1446: -73,15 + 1447: -72,15 + 1448: -71,15 + 1449: -69,23 + 1450: -68,23 + 1451: -66,23 + 1452: -81,23 + 1453: -86,23 + 1454: -87,23 + 1455: -89,23 + 1456: -90,23 + 1457: -92,23 + 1458: -91,23 + 1459: -93,23 + 1460: -97,23 + 1461: -98,23 + 2950: -91,15 + 2966: -67,23 + 2968: -60,15 + 5454: -3,23 + 5455: -4,23 + 5456: -5,23 + 5457: -6,23 + 5458: -7,23 + 5459: -8,23 + 5460: -14,23 + 5461: -15,23 + 5462: -16,23 + 5463: -17,23 + 5464: -18,23 + 5465: -19,23 + 5466: -20,23 + 5467: -22,23 + 5468: -24,23 + 5469: -25,23 + 5470: -44,23 + 5471: -43,23 + 5472: -41,23 + 5473: -40,23 + 5474: -31,23 + 5475: -30,23 + 5476: -29,23 + 5477: -28,23 + 5478: -27,23 + 5549: -25,1 + 5550: -24,1 + 5551: -32,1 + 5552: -31,1 + 5553: -30,1 + 5554: -29,1 + 5555: -28,1 + 5556: -34,1 + 5969: -12,23 + 5970: -10,23 + 5997: -13,23 + 5998: -9,23 + 6216: -32,23 + 6224: -33,23 + 6225: -39,23 + 6230: -38,25 + 6231: -37,25 + 6232: -36,25 + 6233: -35,25 + 6234: -34,25 + 7739: -36,-1 + 7743: -35,1 + 7837: 26,1 + 7838: 27,1 + 7841: 29,0 + 7842: 30,0 + 7843: 31,0 + 7844: 34,0 + 7845: 35,0 + 7846: 37,0 + 7849: 39,1 + 7850: 40,1 + 7851: 41,1 + 8302: -30,38 + 8303: -29,38 + 8304: -28,38 + 8305: -27,38 - node: cleanable: True color: '#9FED5896' id: MiniTileWhiteLineN decals: - 1406: 51,69 + 1335: 51,69 - node: cleanable: True color: '#9FED58FF' id: MiniTileWhiteLineN decals: - 3622: 5,34 - 3623: 9,34 + 3414: 5,34 + 3415: 9,34 - node: color: '#A4610696' id: MiniTileWhiteLineN decals: - 1129: 68,7 - 1136: 63,5 - 1137: 64,5 - 1138: 65,5 - 1139: 66,5 - 6990: 46,1 - 6991: 47,1 - 6992: 48,1 - 6993: 49,1 - 7054: 50,1 + 1062: 68,7 + 1069: 63,5 + 1070: 64,5 + 1071: 65,5 + 1072: 66,5 + 6640: 46,1 + 6641: 47,1 + 6642: 48,1 + 6643: 49,1 + 6704: 50,1 - node: cleanable: True color: '#A4610696' id: MiniTileWhiteLineN decals: - 1407: 49,69 + 1336: 49,69 - node: zIndex: 1 color: '#B4C8FFFF' id: MiniTileWhiteLineN decals: - 4371: -52,5 - 4372: -51,5 - 4373: -50,5 + 4122: -52,5 + 4123: -51,5 + 4124: -50,5 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteLineN decals: - 4388: -52,5 - 4389: -51,5 - 4390: -50,5 - 4409: 14,-56 - 4410: 15,-56 + 4139: -52,5 + 4140: -51,5 + 4141: -50,5 + 4160: 14,-56 + 4161: 15,-56 - node: color: '#D381C996' id: MiniTileWhiteLineN decals: - 813: 9,-20 - 814: 7,-20 - 1437: 13,-20 - 1438: 14,-20 - 1439: 15,-20 - 1440: 19,-20 - 1441: 21,-20 - 1442: 22,-20 - 1443: 26,-20 - 1444: 27,-20 - 2332: 47,-21 - 2333: 48,-21 - 2334: 49,-21 - 2335: 50,-21 - 2336: 51,-21 - 2337: 52,-21 - 2773: 65,-44 - 2775: 66,-44 - 2776: 67,-44 - 2783: 72,-44 - 2853: 79,-48 - 2854: 79,-42 - 4486: 12,-17 - 4487: 13,-17 - 4490: 15,-14 - 4491: 16,-14 - 4492: 17,-14 - 4493: 18,-14 - 4494: 19,-14 - 4495: 20,-14 - 4496: 21,-14 - 4497: 22,-14 - 4503: 26,-17 - 4504: 27,-17 - 4505: 28,-17 - 4512: 30,-16 - 4540: 20,-20 - 4773: 77,-44 - 4774: 76,-44 - 4775: 78,-44 - 4988: 75,-44 - 5209: 48,-25 - 5210: 49,-25 - 5211: 50,-25 - 5951: 1,-20 - 5952: 2,-20 - 5953: 3,-20 - 5954: 4,-20 - 5955: 5,-20 - 5956: 6,-20 - 6684: 25,-20 - 6686: 16,-20 - 6687: 24,-20 - 7495: 64,-44 - 7777: 31,-19 - 7778: 32,-19 - 7779: 34,-19 - 7780: 35,-19 - 7797: 18,-20 - 7806: 43,-19 - 7807: 42,-19 - 7808: 41,-19 - 7809: 39,-19 - 7847: 34,-16 - 7848: 35,-16 - 7849: 36,-16 - 7850: 37,-16 - 7864: 41,-13 - 7865: 40,-13 - 7895: 58,-39 - 7896: 60,-39 - 7899: 55,-30 - 7900: 56,-30 - 7907: 60,-34 - 7908: 59,-34 - 7909: 58,-34 - 7952: 59,-25 - 7953: 58,-25 - 7954: 57,-25 - 7955: 55,-25 - 7956: 54,-25 + 753: 9,-20 + 754: 7,-20 + 1366: 13,-20 + 1367: 14,-20 + 1368: 15,-20 + 1369: 19,-20 + 1370: 21,-20 + 1371: 22,-20 + 1372: 26,-20 + 1373: 27,-20 + 2185: 47,-21 + 2186: 48,-21 + 2187: 49,-21 + 2188: 50,-21 + 2189: 51,-21 + 2190: 52,-21 + 2589: 65,-44 + 2591: 66,-44 + 2592: 67,-44 + 2599: 72,-44 + 2669: 79,-48 + 2670: 79,-42 + 4237: 12,-17 + 4238: 13,-17 + 4241: 15,-14 + 4242: 16,-14 + 4243: 17,-14 + 4244: 18,-14 + 4245: 19,-14 + 4246: 20,-14 + 4247: 21,-14 + 4248: 22,-14 + 4254: 26,-17 + 4255: 27,-17 + 4256: 28,-17 + 4263: 30,-16 + 4291: 20,-20 + 4496: 77,-44 + 4497: 76,-44 + 4498: 78,-44 + 4711: 75,-44 + 4910: 48,-25 + 4911: 49,-25 + 4912: 50,-25 + 5628: 1,-20 + 5629: 2,-20 + 5630: 3,-20 + 5631: 4,-20 + 5632: 5,-20 + 5633: 6,-20 + 6338: 25,-20 + 6340: 16,-20 + 6341: 24,-20 + 7119: 64,-44 + 7400: 31,-19 + 7401: 32,-19 + 7402: 34,-19 + 7403: 35,-19 + 7420: 18,-20 + 7429: 43,-19 + 7430: 42,-19 + 7431: 41,-19 + 7432: 39,-19 + 7470: 34,-16 + 7471: 35,-16 + 7472: 36,-16 + 7473: 37,-16 + 7487: 41,-13 + 7488: 40,-13 + 7518: 58,-39 + 7519: 60,-39 + 7522: 55,-30 + 7523: 56,-30 + 7530: 60,-34 + 7531: 59,-34 + 7532: 58,-34 + 7575: 59,-25 + 7576: 58,-25 + 7577: 57,-25 + 7578: 55,-25 + 7579: 54,-25 - node: cleanable: True color: '#D381C996' id: MiniTileWhiteLineN decals: - 1399: 47,67 - 3595: 33,-19 + 1328: 47,67 + 3387: 33,-19 - node: cleanable: True color: '#D4D4D496' id: MiniTileWhiteLineN decals: - 1402: 49,67 + 1331: 49,67 - node: cleanable: True color: '#D4D4D4A7' id: MiniTileWhiteLineN decals: - 1320: 37,61 - 1321: 38,61 - 1322: 40,61 - 1323: 41,61 - 1324: 39,61 + 1249: 37,61 + 1250: 38,61 + 1251: 40,61 + 1252: 41,61 + 1253: 39,61 - node: color: '#DE3A3A96' id: MiniTileWhiteLineN decals: - 5258: -7,-41 - 5259: -8,-41 - 5260: -10,-41 - 5729: 25,1 - 5730: 24,1 - 5731: 23,1 - 5732: 22,1 - 6011: -12,-37 - 6012: -11,-37 - 6013: -10,-37 - 6014: -9,-37 - 6545: 1,43 - 6597: 24,11 - 6598: 25,11 - 6835: -12,-41 - 6836: -13,-41 - 6837: -14,-41 - 7018: 43,-5 - 7026: 44,-5 - 7027: 45,-5 - 7028: 46,-5 - 7029: 49,-5 - 7030: 48,-5 - 7031: 50,-5 - 7678: 9,-24 - 7679: 10,-24 - 7680: 11,-24 - 7681: 12,-24 - 7682: 14,-24 + 4959: -7,-41 + 4960: -8,-41 + 4961: -10,-41 + 5415: 25,1 + 5416: 24,1 + 5417: 23,1 + 5418: 22,1 + 5686: -12,-37 + 5687: -11,-37 + 5688: -10,-37 + 5689: -9,-37 + 6199: 1,43 + 6251: 24,11 + 6252: 25,11 + 6489: -12,-41 + 6490: -13,-41 + 6491: -14,-41 + 6668: 43,-5 + 6676: 44,-5 + 6677: 45,-5 + 6678: 46,-5 + 6679: 49,-5 + 6680: 48,-5 + 6681: 50,-5 + 7301: 9,-24 + 7302: 10,-24 + 7303: 11,-24 + 7304: 12,-24 + 7305: 14,-24 - node: cleanable: True color: '#DE3A3A96' id: MiniTileWhiteLineN decals: - 1403: 51,67 + 1332: 51,67 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 864: 2,23 - 865: 4,23 - 866: 6,23 - 868: 3,27 - 869: 4,27 - 870: 5,27 - 871: 6,27 - 872: 7,27 - 887: 12,23 - 888: 13,23 - 889: 14,23 - 890: 16,23 - 891: 17,23 - 892: 18,23 - 893: 19,23 - 894: 20,23 - 895: 22,23 - 896: 23,23 - 897: 24,23 - 898: 25,23 - 936: 21,31 - 937: 22,31 - 1028: 14,36 - 1029: 15,36 - 1030: 16,36 - 3971: 20,31 - 4027: 34,36 - 4028: 32,36 - 4029: 31,36 - 4030: 30,36 - 4031: 33,36 - 4046: 40,33 - 4047: 39,33 - 4048: 38,33 - 4049: 37,33 - 4050: 36,33 - 4051: 35,33 - 4052: 34,33 - 4053: 33,33 - 4054: 32,33 - 4055: 31,32 - 4056: 30,32 - 4994: 23,31 - 5406: 24,19 - 5407: 25,19 - 5712: 18,1 - 5713: 17,1 - 5714: 16,1 - 5715: 15,1 - 5716: 13,1 - 5717: 12,1 - 5718: 11,1 - 5719: 10,1 - 5796: 1,23 + 804: 2,23 + 805: 4,23 + 806: 6,23 + 808: 3,27 + 809: 4,27 + 810: 5,27 + 811: 6,27 + 812: 7,27 + 827: 12,23 + 828: 13,23 + 829: 14,23 + 830: 16,23 + 831: 17,23 + 832: 18,23 + 833: 19,23 + 834: 20,23 + 835: 22,23 + 836: 23,23 + 837: 24,23 + 838: 25,23 + 876: 21,31 + 877: 22,31 + 961: 14,36 + 962: 15,36 + 963: 16,36 + 3759: 20,31 + 3815: 34,36 + 3816: 32,36 + 3817: 31,36 + 3818: 30,36 + 3819: 33,36 + 3834: 40,33 + 3835: 39,33 + 3836: 38,33 + 3837: 37,33 + 3838: 36,33 + 3839: 35,33 + 3840: 34,33 + 3841: 33,33 + 3842: 32,33 + 3843: 31,32 + 3844: 30,32 + 4717: 23,31 + 5105: 24,19 + 5106: 25,19 + 5398: 18,1 + 5399: 17,1 + 5400: 16,1 + 5401: 15,1 + 5402: 13,1 + 5403: 12,1 + 5404: 11,1 + 5405: 10,1 + 5482: 1,23 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineN decals: - 1398: 45,67 + 1327: 45,67 - node: color: '#FA750096' id: MiniTileWhiteLineN decals: - 6147: 7,-46 - 6148: 8,-46 - 6149: 10,-46 + 5820: 7,-46 + 5821: 8,-46 + 5822: 10,-46 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 2019: -76,-24 - 2020: -77,-24 - 6806: -2,-43 - 6807: 0,-43 - 6816: -0.99868023,-43.232212 - 6829: -14,-41 - 6830: -13,-41 - 6831: -12,-41 - 6840: -13.0012455,-41.24148 + 1872: -76,-24 + 1873: -77,-24 + 6460: -2,-43 + 6461: 0,-43 + 6470: -0.99868023,-43.232212 + 6483: -14,-41 + 6484: -13,-41 + 6485: -12,-41 + 6494: -13.0012455,-41.24148 - node: color: '#334E6DC8' id: MiniTileWhiteLineS decals: - 795: 11,-1 - 796: 12,-1 - 797: 13,-1 - 798: 15,-1 - 799: 16,-1 - 800: 17,-1 - 806: 16,-7 - 847: -7,11 - 848: -6,11 - 849: -5,11 - 850: -4,11 - 851: -2,11 - 852: -1,11 - 853: 0,11 - 854: 3,11 - 855: 4,11 - 856: 5,11 - 1010: 18,21 - 1011: 17,21 - 1012: 16,21 - 1013: 15,21 - 3501: 2,11 - 5367: -3,11 - 5368: 1,11 - 5507: 13,21 - 5588: 35,35 - 5591: 36,35 - 5654: -19,-1 - 5655: -13,-1 - 5656: -17,-1 - 5657: -16,-1 - 5658: -15,-1 - 5659: -12,-1 - 5674: -7,-12 - 5675: -6,-12 - 5676: -5,-12 - 5677: -4,-12 - 5678: -3,-12 - 5700: 10,-1 - 5735: 18,-1 - 5750: 1,-12 - 5751: 2,-12 - 5752: 3,-12 - 5753: 4,-12 - 5754: 5,-12 - 5761: 9,-9 + 735: 11,-1 + 736: 12,-1 + 737: 13,-1 + 738: 15,-1 + 739: 16,-1 + 740: 17,-1 + 746: 16,-7 + 787: -7,11 + 788: -6,11 + 789: -5,11 + 790: -4,11 + 791: -2,11 + 792: -1,11 + 793: 0,11 + 794: 3,11 + 795: 4,11 + 796: 5,11 + 943: 18,21 + 944: 17,21 + 945: 16,21 + 946: 15,21 + 3293: 2,11 + 5066: -3,11 + 5067: 1,11 + 5206: 13,21 + 5279: 35,35 + 5282: 36,35 + 5343: -19,-1 + 5344: -13,-1 + 5345: -12,-1 + 5360: -7,-12 + 5361: -6,-12 + 5362: -5,-12 + 5363: -4,-12 + 5364: -3,-12 + 5386: 10,-1 + 5421: 18,-1 + 5436: 1,-12 + 5437: 2,-12 + 5438: 3,-12 + 5439: 4,-12 + 5440: 5,-12 + 5447: 9,-9 + 8094: -17,-1 + 8095: -16,-1 + 8096: -15,-1 + 8099: -18,-3 + 8100: -17,-3 + 8101: -16,-3 + 8102: -15,-3 + 8103: -14,-3 - node: cleanable: True color: '#334E6DC8' id: MiniTileWhiteLineS decals: - 1349: 56,66 - 1350: 57,66 - 1412: 45,71 - 1413: 45,61 - 1414: 46,61 - 1415: 47,61 - 1416: 48,61 - 1417: 49,61 - 1418: 50,61 - 1419: 51,61 - 3612: 6,31 - 3613: 7,31 - 3614: 8,31 + 1278: 56,66 + 1279: 57,66 + 1341: 45,71 + 1342: 45,61 + 1343: 46,61 + 1344: 47,61 + 1345: 48,61 + 1346: 49,61 + 1347: 50,61 + 1348: 51,61 + 3404: 6,31 + 3405: 7,31 + 3406: 8,31 - node: color: '#3EB38896' id: MiniTileWhiteLineS decals: - 5460: 34,28 - 5461: 33,28 - 5467: 38,28 - 5506: 11,21 - 5515: 6,21 - 5516: 2,21 - 5542: 6,15 - 5544: 3,17 - 5545: 4,17 - 5546: 5,17 - 5547: 6,17 - 5548: 7,17 - 5549: 8,17 - 5550: 9,17 - 5551: 10,17 - 5576: 4,21 - 5799: 1,21 + 5159: 34,28 + 5160: 33,28 + 5166: 38,28 + 5205: 11,21 + 5214: 6,21 + 5215: 2,21 + 5241: 6,15 + 5243: 3,17 + 5244: 4,17 + 5245: 5,17 + 5246: 6,17 + 5247: 7,17 + 5248: 8,17 + 5249: 9,17 + 5250: 10,17 + 5271: 4,21 + 5485: 1,21 - node: color: '#43990996' id: MiniTileWhiteLineS decals: - 6055: -25,-43 - 6056: -24,-43 - 6057: -23,-43 - 6065: -28,-42 - 6083: -29,-42 - 6084: -30,-42 - 6085: -31,-42 - 6086: -32,-42 - 6087: -33,-42 - 6088: -34,-42 - 6114: -34,-57 - 6115: -37,-57 - 6129: -30,-55 + 5728: -25,-43 + 5729: -24,-43 + 5730: -23,-43 + 5738: -28,-42 + 5756: -29,-42 + 5757: -30,-42 + 5758: -31,-42 + 5759: -32,-42 + 5760: -33,-42 + 5761: -34,-42 + 5787: -34,-57 + 5788: -37,-57 + 5802: -30,-55 - node: color: '#48B9FF8C' id: MiniTileWhiteLineS decals: - 2858: -3,-53 - 2859: -1,-53 - 2866: -4,-53 - 2895: -25,-48 - 2896: -24,-48 - 2934: -22,-46 - 2935: -21,-46 + 2674: -3,-53 + 2675: -1,-53 + 2682: -4,-53 + 2711: -25,-48 + 2712: -24,-48 + 2750: -22,-46 + 2751: -21,-46 - node: color: '#4D69B7C6' id: MiniTileWhiteLineS decals: - 1930: -95,3 - 1933: -97,4 + 1784: -95,3 + 1787: -97,4 - node: color: '#52B4E996' id: MiniTileWhiteLineS decals: - 1078: -19,-42 - 1079: -18,-42 - 1082: -10,-44 - 1083: -8,-44 - 1084: -7,-44 - 1085: -6,-44 - 1086: -4,-44 - 1087: -3,-44 - 1093: 7,-48 - 1094: 6,-48 - 2923: -22,-52 - 2929: -22,-54 - 2938: -21,-54 - 2942: -23,-54 - 3770: 2,-44 - 3771: 3,-44 - 4221: 1,-44 - 5034: 8,-48 - 5035: 1,-53 - 5036: 3,-53 - 5037: 4,-53 - 5257: -17,-42 - 5339: -16,-42 - 5997: 5,-35 - 6809: -2,-44 - 6810: -1,-44 - 6811: 0,-44 - 6832: -14,-42 - 6833: -13,-42 - 6834: -12,-42 + 1011: -19,-42 + 1012: -18,-42 + 1015: -10,-44 + 1016: -8,-44 + 1017: -7,-44 + 1018: -6,-44 + 1019: -4,-44 + 1020: -3,-44 + 1026: 7,-48 + 1027: 6,-48 + 2739: -22,-52 + 2745: -22,-54 + 2754: -21,-54 + 2758: -23,-54 + 3562: 2,-44 + 3563: 3,-44 + 3984: 1,-44 + 4753: 8,-48 + 4754: 1,-53 + 4755: 3,-53 + 4756: 4,-53 + 4958: -17,-42 + 5040: -16,-42 + 5672: 5,-35 + 6463: -2,-44 + 6464: -1,-44 + 6465: 0,-44 + 6486: -14,-42 + 6487: -13,-42 + 6488: -12,-42 - node: cleanable: True color: '#52B4E996' id: MiniTileWhiteLineS decals: - 1409: 47,71 + 1338: 47,71 - node: color: '#60CFFF6C' id: MiniTileWhiteLineS decals: - 4072: 0,-50 - 4073: 0,-50 - - node: - color: '#79150096' - id: MiniTileWhiteLineS - decals: - 1720: -56,1 - 1721: -57,1 - 2605: -18,35 - 2606: -17,35 + 3860: 0,-50 + 3861: 0,-50 - node: cleanable: True color: '#996700FF' id: MiniTileWhiteLineS decals: - 7484: 1,-5 - 7485: 2,-5 + 7108: 1,-5 + 7109: 2,-5 - node: color: '#9FED5896' id: MiniTileWhiteLineS decals: - 678: -53,13 - 679: -55,13 - 680: -54,13 - 681: -56,13 - 682: -57,13 - 683: -61,13 - 684: -62,13 - 685: -65,13 - 686: -64,13 - 687: -70,13 - 688: -71,13 - 689: -72,13 - 690: -73,13 - 691: -77,13 - 692: -78,13 - 693: -82,13 - 694: -83,13 - 695: -65,21 - 696: -64,21 - 697: -63,21 - 698: -62,21 - 699: -61,21 - 700: -60,21 - 701: -59,21 - 702: -58,21 - 703: -57,21 - 704: -56,21 - 705: -55,21 - 706: -54,21 - 707: -53,21 - 752: -47,11 - 753: -46,11 - 760: -85,13 - 761: -88,13 - 1105: -38,-63 - 1106: -37,-63 - 1107: -34,-63 - 1108: -33,-63 - 1472: -74,13 - 1473: -75,13 - 1474: -76,13 - 1475: -68,13 - 1476: -67,13 - 1477: -66,13 - 1478: -86,13 - 1479: -91,13 - 1480: -92,13 - 1481: -93,13 - 1482: -71,21 - 1483: -72,21 - 1484: -73,21 - 1485: -74,21 - 1486: -75,21 - 1487: -76,21 - 1488: -77,21 - 1489: -78,21 - 1490: -79,21 - 1491: -80,21 - 1492: -81,21 - 1493: -82,21 - 1494: -83,21 - 1495: -89,21 - 1496: -90,21 - 1497: -91,21 - 1498: -92,21 - 1499: -94,21 - 1500: -95,21 - 1611: -95,13 - 1612: -96,13 - 1613: -97,13 - 1614: -98,13 - 3135: -94,13 - 3137: -93,21 - 3152: -69,13 - 3161: -63,13 - 3162: -80,13 - 3163: -84,13 - 3164: -90,13 - 4996: -31,40 - 5384: -60,13 - 5385: -59,13 - 5386: -58,13 - 5803: -3,21 - 5805: -4,21 - 5806: -5,21 - 5807: -6,21 - 5808: -7,21 - 5809: -8,21 - 5810: -9,21 - 5811: -10,21 - 5812: -11,21 - 5813: -13,21 - 5814: -14,21 - 5815: -15,21 - 5816: -16,21 - 5817: -17,21 - 5818: -18,21 - 5819: -19,21 - 5820: -20,21 - 5829: -44,21 - 5830: -43,21 - 5831: -41,21 - 5832: -40,21 - 5833: -39,21 - 5834: -38,21 - 5835: -36,21 - 5836: -34,21 - 5837: -33,21 - 5838: -32,21 - 5839: -31,21 - 5840: -30,21 - 5841: -29,21 - 5842: -27,21 - 5843: -26,21 - 5844: -25,21 - 5845: -24,21 - 6165: -64,-8 - 6746: 30,-1 - 6747: 36,-1 - 6754: 37,-1 - 6756: 29,-1 - 6758: 31,-3 - 6759: 32,-3 - 6760: 33,-3 - 6761: 34,-3 - 6762: 35,-3 - 7043: 40,-3 - 7744: 22,-1 - 7745: 23,-1 - 7746: 24,-1 - 7747: 25,-1 - 7748: 26,-1 - 7749: 28,-1 + 620: -53,13 + 621: -55,13 + 622: -54,13 + 623: -56,13 + 624: -57,13 + 625: -61,13 + 626: -62,13 + 627: -65,13 + 628: -64,13 + 629: -70,13 + 630: -71,13 + 631: -72,13 + 632: -73,13 + 633: -77,13 + 634: -78,13 + 635: -82,13 + 636: -83,13 + 637: -65,21 + 638: -64,21 + 639: -63,21 + 640: -62,21 + 641: -61,21 + 642: -60,21 + 643: -59,21 + 644: -58,21 + 645: -57,21 + 646: -56,21 + 647: -55,21 + 648: -54,21 + 649: -53,21 + 694: -47,11 + 695: -46,11 + 702: -85,13 + 703: -88,13 + 1038: -38,-63 + 1039: -37,-63 + 1040: -34,-63 + 1041: -33,-63 + 1401: -74,13 + 1402: -75,13 + 1403: -76,13 + 1404: -68,13 + 1405: -67,13 + 1406: -66,13 + 1407: -86,13 + 1408: -91,13 + 1409: -92,13 + 1410: -93,13 + 1411: -71,21 + 1412: -72,21 + 1413: -73,21 + 1414: -74,21 + 1415: -75,21 + 1416: -76,21 + 1417: -77,21 + 1418: -78,21 + 1419: -79,21 + 1420: -80,21 + 1421: -81,21 + 1422: -82,21 + 1423: -83,21 + 1424: -89,21 + 1425: -90,21 + 1426: -91,21 + 1427: -92,21 + 1428: -94,21 + 1429: -95,21 + 1539: -95,13 + 1540: -96,13 + 1541: -97,13 + 1542: -98,13 + 2951: -94,13 + 2953: -93,21 + 2967: -69,13 + 2976: -63,13 + 2977: -80,13 + 2978: -84,13 + 2979: -90,13 + 4719: -31,40 + 5083: -60,13 + 5084: -59,13 + 5085: -58,13 + 5489: -3,21 + 5491: -4,21 + 5492: -5,21 + 5493: -6,21 + 5494: -7,21 + 5495: -8,21 + 5496: -9,21 + 5497: -10,21 + 5498: -11,21 + 5499: -13,21 + 5500: -14,21 + 5501: -15,21 + 5502: -16,21 + 5503: -17,21 + 5504: -18,21 + 5505: -19,21 + 5506: -20,21 + 5515: -44,21 + 5516: -43,21 + 5517: -41,21 + 5518: -40,21 + 5519: -39,21 + 5520: -38,21 + 5521: -36,21 + 5522: -34,21 + 5523: -33,21 + 5524: -32,21 + 5525: -31,21 + 5526: -30,21 + 5527: -29,21 + 5528: -27,21 + 5529: -26,21 + 5530: -25,21 + 5531: -24,21 + 5834: -64,-8 + 6400: 30,-1 + 6401: 36,-1 + 6408: 37,-1 + 6410: 29,-1 + 6412: 31,-3 + 6413: 32,-3 + 6414: 33,-3 + 6415: 34,-3 + 6416: 35,-3 + 6693: 40,-3 + 7367: 22,-1 + 7368: 23,-1 + 7369: 24,-1 + 7370: 25,-1 + 7371: 26,-1 + 7372: 28,-1 + 7740: -36,1 + 8310: -26,35 + 8311: -27,35 + 8312: -28,35 + 8313: -30,35 + 8314: -31,35 - node: cleanable: True color: '#9FED5896' id: MiniTileWhiteLineS decals: - 1405: 51,71 - 3601: 10,31 - 3602: 11,31 - 3603: 11,31 - 3604: 10,31 + 1334: 51,71 + 3393: 10,31 + 3394: 11,31 + 3395: 11,31 + 3396: 10,31 - node: cleanable: True color: '#9FED58FF' id: MiniTileWhiteLineS decals: - 3617: 5,33 - 3624: 9,33 + 3409: 5,33 + 3416: 9,33 - node: color: '#A4610696' id: MiniTileWhiteLineS decals: - 1130: 66,2 - 1131: 63,2 - 6239: 65,2 + 1063: 66,2 + 1064: 63,2 + 5896: 65,2 - node: cleanable: True color: '#A4610696' id: MiniTileWhiteLineS decals: - 1408: 49,71 + 1337: 49,71 - node: zIndex: 1 color: '#B4C8FFFF' id: MiniTileWhiteLineS decals: - 4374: -52,3 - 4375: -51,3 - 4376: -50,3 + 4125: -52,3 + 4126: -51,3 + 4127: -50,3 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteLineS decals: - 4391: -52,3 - 4392: -51,3 - 4393: -50,3 - 4411: 13,-56 - 4412: 14,-56 - 4413: 15,-56 - 4414: 16,-56 + 4142: -52,3 + 4143: -51,3 + 4144: -50,3 + 4162: 13,-56 + 4163: 14,-56 + 4164: 15,-56 + 4165: 16,-56 - node: color: '#D381C996' id: MiniTileWhiteLineS decals: - 818: 33,-23 - 1445: 17,-22 - 1446: 18,-22 - 1447: 19,-22 - 1448: 21,-22 - 1449: 22,-22 - 1450: 23,-22 - 1451: 24,-22 - 1452: 25,-22 - 1453: 26,-22 - 2326: 51,-23 - 2327: 47,-23 - 2328: 52,-23 - 2329: 48,-23 - 2330: 49,-23 - 2331: 50,-23 - 2692: 58,-44 - 2693: 59,-44 - 2767: 64,-46 - 2768: 65,-46 - 2769: 66,-46 - 2770: 67,-46 - 2771: 72,-46 - 2852: 79,-48 - 2855: 79,-42 - 4482: 12,-18 - 4483: 13,-18 - 4484: 14,-18 - 4485: 15,-18 - 4507: 26,-18 - 4508: 27,-18 - 4515: 29,-17 - 4516: 30,-17 - 4547: 20,-12 - 4772: 77,-46 - 4776: 76,-46 - 4777: 75,-46 - 4778: 78,-46 - 5212: 48,-27 - 5213: 49,-27 - 5214: 50,-27 - 5236: 56,-37 - 5237: 55,-37 - 5959: 1,-22 - 6195: 57,-44 - 6335: 2,-22 - 6336: 3,-22 - 6337: 4,-22 - 6338: 5,-22 - 6340: 6,-22 - 6685: 25,-18 - 6723: 18,-16 - 6724: 19,-16 - 6725: 20,-16 - 6726: 21,-16 - 6727: 22,-16 - 6730: 16,-18 - 6731: 24,-18 - 7776: 31,-23 - 7787: 35,-23 - 7813: 42,-20 - 7814: 40,-20 - 7854: 34,-17 - 7855: 35,-17 - 7856: 36,-17 - 7857: 37,-17 - 7858: 38,-17 - 7859: 39,-17 - 7860: 41,-17 - 7901: 57,-37 - 7902: 58,-37 - 7903: 60,-37 - 7946: 56,-28 - 7947: 58,-28 - 7948: 59,-28 - 7960: 54,-28 - 7961: 55,-28 + 758: 33,-23 + 1374: 17,-22 + 1375: 18,-22 + 1376: 19,-22 + 1377: 21,-22 + 1378: 22,-22 + 1379: 23,-22 + 1380: 24,-22 + 1381: 25,-22 + 1382: 26,-22 + 2179: 51,-23 + 2180: 47,-23 + 2181: 52,-23 + 2182: 48,-23 + 2183: 49,-23 + 2184: 50,-23 + 2508: 58,-44 + 2509: 59,-44 + 2583: 64,-46 + 2584: 65,-46 + 2585: 66,-46 + 2586: 67,-46 + 2587: 72,-46 + 2668: 79,-48 + 2671: 79,-42 + 4233: 12,-18 + 4234: 13,-18 + 4235: 14,-18 + 4236: 15,-18 + 4258: 26,-18 + 4259: 27,-18 + 4266: 29,-17 + 4267: 30,-17 + 4298: 20,-12 + 4495: 77,-46 + 4499: 76,-46 + 4500: 75,-46 + 4501: 78,-46 + 4913: 48,-27 + 4914: 49,-27 + 4915: 50,-27 + 4937: 56,-37 + 4938: 55,-37 + 5636: 1,-22 + 5861: 57,-44 + 5991: 2,-22 + 5992: 3,-22 + 5993: 4,-22 + 5994: 5,-22 + 5996: 6,-22 + 6339: 25,-18 + 6377: 18,-16 + 6378: 19,-16 + 6379: 20,-16 + 6380: 21,-16 + 6381: 22,-16 + 6384: 16,-18 + 6385: 24,-18 + 7399: 31,-23 + 7410: 35,-23 + 7436: 42,-20 + 7437: 40,-20 + 7477: 34,-17 + 7478: 35,-17 + 7479: 36,-17 + 7480: 37,-17 + 7481: 38,-17 + 7482: 39,-17 + 7483: 41,-17 + 7524: 57,-37 + 7525: 58,-37 + 7526: 60,-37 + 7569: 56,-28 + 7570: 58,-28 + 7571: 59,-28 + 7583: 54,-28 + 7584: 55,-28 - node: cleanable: True color: '#D381C996' id: MiniTileWhiteLineS decals: - 1400: 47,69 + 1329: 47,69 - node: cleanable: True color: '#D4D4D496' id: MiniTileWhiteLineS decals: - 1401: 49,69 + 1330: 49,69 - node: color: '#DE3A3A96' id: MiniTileWhiteLineS decals: - 911: 21,10 - 5913: -36,-1 - 5914: -20,-1 - 5915: -24,-1 - 5916: -25,-1 - 5917: -26,-1 - 5918: -27,-1 - 5919: -28,-1 - 5920: -29,-1 - 5921: -33,-1 - 5922: -32,-1 - 5923: -31,-1 - 5924: -30,-1 - 6015: -12,-39 - 6016: -10,-39 - 6605: 26,9 - 6606: 25,9 - 6999: 45,-3 - 7000: 46,-3 - 7001: 48,-3 - 7002: 49,-3 - 7003: 50,-3 - 7004: 51,-3 - 7012: 43,-3 - 7013: 41,-3 - 7032: 43,-8 - 7033: 44,-8 - 7034: 46,-8 - 7035: 47,-8 - 7036: 48,-8 - 7037: 49,-8 - 7496: -35,-1 - 7663: 7,-22 - 7664: 9,-22 - 7665: 10,-22 - 7668: 12,-22 - 7669: 14,-22 - 7670: 15,-22 - 7671: 16,-22 - 7684: 10,-26 - 7685: 11,-26 - 7686: 12,-26 - 7690: 14,-28 + 851: 21,10 + 5595: -20,-1 + 5596: -24,-1 + 5597: -25,-1 + 5598: -26,-1 + 5599: -27,-1 + 5600: -28,-1 + 5601: -29,-1 + 5602: -33,-1 + 5603: -32,-1 + 5604: -31,-1 + 5605: -30,-1 + 5690: -12,-39 + 5691: -10,-39 + 6259: 26,9 + 6260: 25,9 + 6649: 45,-3 + 6650: 46,-3 + 6651: 48,-3 + 6652: 49,-3 + 6653: 50,-3 + 6654: 51,-3 + 6662: 43,-3 + 6663: 41,-3 + 6682: 43,-8 + 6683: 44,-8 + 6684: 46,-8 + 6685: 47,-8 + 6686: 48,-8 + 6687: 49,-8 + 7286: 7,-22 + 7287: 9,-22 + 7288: 10,-22 + 7291: 12,-22 + 7292: 14,-22 + 7293: 15,-22 + 7294: 16,-22 + 7307: 10,-26 + 7308: 11,-26 + 7309: 12,-26 + 7313: 14,-28 + 7745: -35,-1 - node: cleanable: True color: '#DE3A3A96' id: MiniTileWhiteLineS decals: - 1404: 51,69 - 3598: 3,31 - 3599: 4,31 + 1333: 51,69 + 3390: 3,31 + 3391: 4,31 - node: color: '#EFB34196' id: MiniTileWhiteLineS decals: - 874: 7,25 - 875: 6,25 - 876: 5,25 - 877: 4,25 - 878: 3,25 - 901: 25,21 - 902: 24,21 - 903: 23,21 - 904: 22,21 - 940: 20,25 - 941: 22,25 - 942: 23,25 - 1015: 14,32 - 1016: 15,32 - 1017: 16,32 - 4004: 29,34 - 4032: 34,35 - 4033: 33,35 - 4034: 32,35 - 4035: 30,31 - 4036: 31,31 - 4037: 32,31 - 4038: 33,31 - 4039: 34,31 - 4040: 35,31 - 4041: 36,31 - 4042: 37,31 - 4043: 38,31 - 4044: 39,31 - 4045: 40,31 - 5408: 25,14 - 5603: 31,35 + 814: 7,25 + 815: 6,25 + 816: 5,25 + 817: 4,25 + 818: 3,25 + 841: 25,21 + 842: 24,21 + 843: 23,21 + 844: 22,21 + 880: 20,25 + 881: 22,25 + 882: 23,25 + 948: 14,32 + 949: 15,32 + 950: 16,32 + 3792: 29,34 + 3820: 34,35 + 3821: 33,35 + 3822: 32,35 + 3823: 30,31 + 3824: 31,31 + 3825: 32,31 + 3826: 33,31 + 3827: 34,31 + 3828: 35,31 + 3829: 36,31 + 3830: 37,31 + 3831: 38,31 + 3832: 39,31 + 3833: 40,31 + 5107: 25,14 + 5294: 31,35 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineS decals: - 1397: 45,69 + 1326: 45,69 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 2015: -77,-25 - 2016: -76,-25 - 6803: -2,-44 - 6804: -1,-44 - 6805: 0,-44 - 6819: -1.0079395,-43.73684 - 6826: -14,-42 - 6827: -13,-42 - 6828: -12,-42 - 6841: -12.9983,-41.74271 + 1868: -77,-25 + 1869: -76,-25 + 6457: -2,-44 + 6458: -1,-44 + 6459: 0,-44 + 6473: -1.0079395,-43.73684 + 6480: -14,-42 + 6481: -13,-42 + 6482: -12,-42 + 6495: -12.9983,-41.74271 - node: color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 787: 11,-4 - 788: 11,-5 - 789: 11,-6 - 801: 19,-3 - 802: 19,-4 - 803: 19,-5 - 804: 19,-6 - 805: 19,-7 - 859: 7,9 - 860: 7,8 - 861: 7,7 - 1003: 19,20 - 1004: 19,18 - 1005: 19,17 - 1006: 19,15 - 1007: 19,14 - 1008: 19,13 - 1009: 19,12 - 1194: 19,16 - 1195: 19,19 - 5640: -11,2 - 5641: -11,3 - 5642: -11,4 - 5643: -11,5 - 5644: -11,6 - 5645: -11,7 - 5646: -11,8 - 5647: -11,9 - 5661: -11,-2 - 5662: -11,-3 - 5663: -11,-4 - 5664: -11,-5 - 5665: -11,-7 - 5666: -11,-8 - 5680: -2,-13 - 5684: 7,6 - 5685: 7,5 - 5686: 7,4 - 5687: 7,3 - 5688: 7,2 - 5689: 7,0 - 5691: 7,-2 - 5692: 7,-3 - 5693: 7,-4 - 5694: 7,-5 - 5695: 7,-6 - 5696: 7,-7 - 5697: 7,-8 - 5736: 19,-2 + 727: 11,-4 + 728: 11,-5 + 729: 11,-6 + 741: 19,-3 + 742: 19,-4 + 743: 19,-5 + 744: 19,-6 + 745: 19,-7 + 799: 7,9 + 800: 7,8 + 801: 7,7 + 936: 19,20 + 937: 19,18 + 938: 19,17 + 939: 19,15 + 940: 19,14 + 941: 19,13 + 942: 19,12 + 1126: 19,16 + 1127: 19,19 + 5329: -11,2 + 5330: -11,3 + 5331: -11,4 + 5332: -11,5 + 5333: -11,6 + 5334: -11,7 + 5335: -11,8 + 5336: -11,9 + 5347: -11,-2 + 5348: -11,-3 + 5349: -11,-4 + 5350: -11,-5 + 5351: -11,-7 + 5352: -11,-8 + 5366: -2,-13 + 5370: 7,6 + 5371: 7,5 + 5372: 7,4 + 5373: 7,3 + 5374: 7,2 + 5375: 7,0 + 5377: 7,-2 + 5378: 7,-3 + 5379: 7,-4 + 5380: 7,-5 + 5381: 7,-6 + 5382: 7,-7 + 5383: 7,-8 + 5422: 19,-2 + 8108: -14,-2 + 8114: -18,-2 - node: cleanable: True color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 1427: 44,57 - 1428: 44,58 - 1429: 44,59 - 1430: 44,61 - 1431: 44,60 - 3608: 9,30 - 3609: 9,29 + 1356: 44,57 + 1357: 44,58 + 1358: 44,59 + 1359: 44,61 + 1360: 44,60 + 3400: 9,30 + 3401: 9,29 - node: color: '#334E6DD5' id: MiniTileWhiteLineW decals: - 2492: 19,-8 + 2342: 19,-8 - node: color: '#3EB38896' id: MiniTileWhiteLineW decals: - 5543: 2,18 + 5242: 2,18 - node: color: '#43990996' id: MiniTileWhiteLineW decals: - 6076: -36,-42 - 6077: -36,-43 - 6078: -36,-44 - 6079: -36,-45 - 6080: -36,-46 - 6081: -36,-47 - 6082: -36,-48 - 6117: -38,-56 - 6118: -38,-55 - 6119: -38,-54 - 6122: -37,-52 - 6123: -37,-51 - 6130: -31,-54 + 5749: -36,-42 + 5750: -36,-43 + 5751: -36,-44 + 5752: -36,-45 + 5753: -36,-46 + 5754: -36,-47 + 5755: -36,-48 + 5790: -38,-56 + 5791: -38,-55 + 5792: -38,-54 + 5795: -37,-52 + 5796: -37,-51 + 5803: -31,-54 - node: color: '#48B9FF8C' id: MiniTileWhiteLineW decals: - 2886: -6,-48 - 2887: -6,-47 - 2892: -5,-50 - 2897: -26,-47 - 2898: -26,-46 - 2912: -20,-44 + 2702: -6,-48 + 2703: -6,-47 + 2708: -5,-50 + 2713: -26,-47 + 2714: -26,-46 + 2728: -20,-44 - node: color: '#52B4E996' id: MiniTileWhiteLineW decals: - 1069: 3,-42 - 1080: -11,-43 - 1095: 4,-47 - 1096: 4,-46 - 1098: -24,-49 - 1117: -19,-51 - 1125: 8,-55 - 1126: 8,-54 - 1127: 8,-53 - 2913: -24,-53 - 2914: -24,-52 - 2915: -24,-51 - 2927: -23,-49 - 2941: -24,-54 - 3772: 4,-45 - 5030: 4,-51 - 5154: 8,-51 - 5972: -2,-32 - 5973: -2,-33 - 5974: -2,-34 - 5977: -2,-35 + 1002: 3,-42 + 1013: -11,-43 + 1028: 4,-47 + 1029: 4,-46 + 1031: -24,-49 + 1050: -19,-51 + 1058: 8,-55 + 1059: 8,-54 + 1060: 8,-53 + 2729: -24,-53 + 2730: -24,-52 + 2731: -24,-51 + 2743: -23,-49 + 2757: -24,-54 + 3564: 4,-45 + 4749: 4,-51 + 4873: 8,-51 + 5647: -2,-32 + 5648: -2,-33 + 5649: -2,-34 + 5652: -2,-35 - node: color: '#60CFFF6C' id: MiniTileWhiteLineW decals: - 4074: -2,-49 - 4075: -2,-48 - 4076: -2,-47 - 4077: -2,-47 - 4078: -2,-48 - 4079: -2,-49 - - node: - color: '#79150096' - id: MiniTileWhiteLineW - decals: - 1725: -59,3 - 1726: -59,4 + 3862: -2,-49 + 3863: -2,-48 + 3864: -2,-47 + 3865: -2,-47 + 3866: -2,-48 + 3867: -2,-49 - node: color: '#8C347F96' id: MiniTileWhiteLineW decals: - 6269: -52,24 + 5926: -52,24 - node: color: '#9FED5896' id: MiniTileWhiteLineW decals: - 708: -52,20 - 709: -52,19 - 710: -52,18 - 711: -52,17 - 712: -52,16 - 750: -52,12 - 767: -3,40 - 768: -3,39 - 770: -3,41 - 1061: -2,31 - 1062: -2,30 - 1063: -2,29 - 1064: -2,28 - 1065: -2,34 - 1066: -2,35 - 1103: -39,-60 - 1104: -39,-62 - 1533: -99,14 - 1534: -99,17 - 1535: -99,18 - 1536: -99,19 - 1537: -88,16 - 1538: -88,17 - 1539: -88,18 - 1540: -88,19 - 1541: -88,20 - 1548: -70,16 - 1549: -70,17 - 1550: -70,18 - 1551: -70,19 - 1552: -70,20 - 1575: -96,38 - 1576: -96,37 - 1577: -96,36 - 1578: -96,32 - 1579: -96,29 - 1580: -96,24 - 1581: -96,26 - 1582: -96,34 - 1583: -78,24 - 1584: -78,26 - 1585: -78,27 - 1586: -78,28 - 1587: -78,29 - 1588: -78,30 - 1589: -78,32 - 1590: -78,35 - 1591: -78,36 - 1592: -78,37 - 1593: -78,39 - 1594: -78,41 - 1595: -78,42 - 1646: -99,16 - 1647: -99,20 - 1660: -60,41 - 1661: -60,39 - 1662: -60,38 - 1663: -60,36 - 1664: -60,35 - 1665: -60,34 - 1666: -60,32 - 1667: -60,30 - 1668: -60,29 - 1669: -60,28 - 1670: -60,27 - 1671: -60,26 - 1672: -60,24 - 1679: -99,22 - 3139: -96,30 - 3144: -78,25 - 3145: -78,31 - 3147: -78,34 - 3148: -78,38 - 3154: -60,25 - 3156: -60,31 - 3157: -60,37 - 3160: -60,42 - 3541: -3,38 - 4997: -31,41 - 4998: -31,42 - 4999: -31,43 - 5001: -32,37 - 5002: -32,36 - 5606: -2,16 - 5611: -2,14 - 5763: -2,27 - 5764: -2,26 - 5765: -2,25 - 5766: -2,24 - 5793: -2,17 - 5794: -2,18 - 5795: -2,19 - 5802: -2,20 - 5847: -23,20 - 5848: -23,10 - 5849: -23,11 - 5850: -23,12 - 5851: -23,13 - 5852: -23,14 - 5853: -23,15 - 5854: -23,16 - 5855: -23,17 - 5856: -23,18 - 5857: -23,19 - 5858: -23,6 - 5859: -23,7 - 5860: -23,8 - 5861: -23,2 - 5862: -23,3 - 6307: -2,32 - 6308: -2,33 - 6316: -11,24 - 6359: -12,26 - 6549: -3,42 - 6572: -38,25 - 6573: -38,24 - 6750: 31,-3 - 6751: 31,-2 - 7041: 38,-2 + 650: -52,20 + 651: -52,19 + 652: -52,18 + 653: -52,17 + 654: -52,16 + 692: -52,12 + 709: -3,40 + 710: -3,39 + 712: -3,41 + 994: -2,31 + 995: -2,30 + 996: -2,29 + 997: -2,28 + 998: -2,34 + 999: -2,35 + 1036: -39,-60 + 1037: -39,-62 + 1462: -99,14 + 1463: -99,17 + 1464: -99,18 + 1465: -99,19 + 1466: -88,16 + 1467: -88,17 + 1468: -88,18 + 1469: -88,19 + 1470: -88,20 + 1477: -70,16 + 1478: -70,17 + 1479: -70,18 + 1480: -70,19 + 1481: -70,20 + 1503: -96,38 + 1504: -96,37 + 1505: -96,36 + 1506: -96,32 + 1507: -96,29 + 1508: -96,24 + 1509: -96,26 + 1510: -96,34 + 1511: -78,24 + 1512: -78,26 + 1513: -78,27 + 1514: -78,28 + 1515: -78,29 + 1516: -78,30 + 1517: -78,32 + 1518: -78,35 + 1519: -78,36 + 1520: -78,37 + 1521: -78,39 + 1522: -78,41 + 1523: -78,42 + 1573: -99,16 + 1574: -99,20 + 1587: -60,41 + 1588: -60,39 + 1589: -60,38 + 1590: -60,36 + 1591: -60,35 + 1592: -60,34 + 1593: -60,32 + 1594: -60,30 + 1595: -60,29 + 1596: -60,28 + 1597: -60,27 + 1598: -60,26 + 1599: -60,24 + 1606: -99,22 + 2955: -96,30 + 2960: -78,25 + 2961: -78,31 + 2962: -78,34 + 2963: -78,38 + 2969: -60,25 + 2971: -60,31 + 2972: -60,37 + 2975: -60,42 + 3333: -3,38 + 4720: -31,41 + 4721: -31,42 + 4722: -31,43 + 5297: -2,16 + 5300: -2,14 + 5449: -2,27 + 5450: -2,26 + 5451: -2,25 + 5452: -2,24 + 5479: -2,17 + 5480: -2,18 + 5481: -2,19 + 5488: -2,20 + 5533: -23,20 + 5534: -23,10 + 5535: -23,11 + 5536: -23,12 + 5537: -23,13 + 5538: -23,14 + 5539: -23,15 + 5540: -23,16 + 5541: -23,17 + 5542: -23,18 + 5543: -23,19 + 5544: -23,6 + 5545: -23,7 + 5546: -23,8 + 5547: -23,2 + 5548: -23,3 + 5963: -2,32 + 5964: -2,33 + 5972: -11,24 + 6015: -12,26 + 6203: -3,42 + 6226: -38,25 + 6227: -38,24 + 6404: 31,-3 + 6405: 31,-2 + 6691: 38,-2 + 7698: -35,0 + 8297: -32,36 + 8298: -32,37 + 8322: -29,34 - node: color: '#A4610696' id: MiniTileWhiteLineW decals: - 1133: 62,3 - 1134: 62,4 - 1140: 67,6 - 6987: 45,-1 - 6989: 45,-3 + 1066: 62,3 + 1067: 62,4 + 1073: 67,6 + 6637: 45,-1 + 6639: 45,-3 - node: zIndex: 1 color: '#B4C8FFFF' id: MiniTileWhiteLineW decals: - 4369: -53,4 + 4120: -53,4 - node: zIndex: 2 color: '#B4C8FFFF' id: MiniTileWhiteLineW decals: - 4394: -53,4 - 4398: 13,-55 - 4399: 13,-54 - 4400: 13,-53 - 4401: 16,-55 - 4402: 16,-54 - 4403: 16,-53 + 4145: -53,4 + 4149: 13,-55 + 4150: 13,-54 + 4151: 13,-53 + 4152: 16,-55 + 4153: 16,-54 + 4154: 16,-53 - node: color: '#D381C996' id: MiniTileWhiteLineW decals: - 807: 19,-10 - 808: 19,-11 - 2236: 30,-22 - 2237: 30,-20 - 2380: 57,-40 - 2689: 57,-41 - 2690: 57,-42 - 2691: 57,-43 - 2694: 60,-45 - 4488: 14,-16 - 4498: 23,-13 - 5201: 54,-36 - 5202: 54,-34 - 5203: 54,-33 - 5204: 54,-31 - 5208: 47,-26 - 6728: 23,-18 - 6729: 23,-17 - 7667: 12,-22 - 7801: 43,-22 - 7802: 43,-21 - 7811: 38,-20 - 7820: 38,-22 - 7851: 38,-14 - 7852: 38,-15 - 7959: 53,-27 + 747: 19,-10 + 748: 19,-11 + 2089: 30,-22 + 2090: 30,-20 + 2233: 57,-40 + 2505: 57,-41 + 2506: 57,-42 + 2507: 57,-43 + 2510: 60,-45 + 4239: 14,-16 + 4249: 23,-13 + 4902: 54,-36 + 4903: 54,-34 + 4904: 54,-33 + 4905: 54,-31 + 4909: 47,-26 + 6382: 23,-18 + 6383: 23,-17 + 7290: 12,-22 + 7424: 43,-22 + 7425: 43,-21 + 7434: 38,-20 + 7443: 38,-22 + 7474: 38,-14 + 7475: 38,-15 + 7582: 53,-27 - node: cleanable: True color: '#D4D4D4A7' id: MiniTileWhiteLineW decals: - 1316: 36,60 - 1317: 36,59 + 1245: 36,60 + 1246: 36,59 - node: color: '#DE3A3A96' id: MiniTileWhiteLineW decals: - 912: 23,9 - 913: 23,8 - 914: 23,7 - 915: 23,6 - 916: 23,5 - 5928: -2,-15 - 5929: -2,-16 - 5930: -2,-17 - 5931: -2,-18 - 5932: -2,-19 - 5936: -2,-23 - 5937: -2,-24 - 5938: -2,-25 - 5939: -2,-26 - 5940: -2,-27 - 5941: -2,-28 - 6008: -6,-39 - 6009: -6,-40 - 6010: -13,-38 - 7017: 42,-5 - 7038: 42,-6 - 7039: 42,-7 - 7675: 8,-25 - 7676: 8,-24 - 7688: 13,-27 + 852: 23,9 + 853: 23,8 + 854: 23,7 + 855: 23,6 + 856: 23,5 + 5607: -2,-15 + 5608: -2,-16 + 5609: -2,-17 + 5610: -2,-18 + 5611: -2,-19 + 5613: -2,-23 + 5614: -2,-24 + 5615: -2,-25 + 5616: -2,-26 + 5617: -2,-27 + 5618: -2,-28 + 5683: -6,-39 + 5684: -6,-40 + 5685: -13,-38 + 6667: 42,-5 + 6688: 42,-6 + 6689: 42,-7 + 7298: 8,-25 + 7299: 8,-24 + 7311: 13,-27 - node: cleanable: True color: '#DE3A3A96' id: MiniTileWhiteLineW decals: - 3596: 5,30 - 3597: 5,29 + 3388: 5,30 + 3389: 5,29 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 881: 2,26 - 885: 10,24 - 899: 26,27 - 928: 19,7 - 929: 19,5 - 930: 19,4 - 931: 19,3 - 938: 19,30 - 939: 19,27 - 1023: 13,33 - 1024: 13,34 - 1025: 13,35 - 1035: 26,32 - 1036: 26,33 - 1187: 26,25 - 1188: 26,24 - 1189: 26,26 - 3216: 26,39 - 4025: 30,35 - 4026: 30,36 - 4057: 30,32 - 4058: 32,33 - 4995: 19,28 - 5410: 23,14 - 5411: 23,15 - 5412: 23,16 - 5413: 23,17 - 5414: 23,18 - 5482: 10,25 - 5710: 19,2 - 6889: 19,11 - 6891: 19,6 + 821: 2,26 + 825: 10,24 + 839: 26,27 + 868: 19,7 + 869: 19,5 + 870: 19,4 + 871: 19,3 + 878: 19,30 + 879: 19,27 + 956: 13,33 + 957: 13,34 + 958: 13,35 + 968: 26,32 + 969: 26,33 + 1119: 26,25 + 1120: 26,24 + 1121: 26,26 + 3019: 26,39 + 3813: 30,35 + 3814: 30,36 + 3845: 30,32 + 3846: 32,33 + 4718: 19,28 + 5109: 23,14 + 5110: 23,15 + 5111: 23,16 + 5112: 23,17 + 5113: 23,18 + 5181: 10,25 + 5396: 19,2 + 6543: 19,11 + 6545: 19,6 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineW decals: - 1296: 19,26 - 1297: 19,29 - 1336: 32,62 - 1337: 32,63 - 1338: 32,64 - 1339: 32,65 - 1340: 32,66 + 1225: 19,26 + 1226: 19,29 + 1265: 32,62 + 1266: 32,63 + 1267: 32,64 + 1268: 32,65 + 1269: 32,66 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: - 4368: -53,4 + 4119: -53,4 - node: color: '#334E6DC8' id: OffsetCheckerAOverlay decals: - 7425: -5,4 - 7426: 3,4 - 7427: -5,5 - 7428: -4,4 - 7429: 3,5 - 7430: 2,4 + 7049: -5,4 + 7050: 3,4 + 7051: -5,5 + 7052: -4,4 + 7053: 3,5 + 7054: 2,4 - node: color: '#334E6DC8' id: OffsetCheckerBOverlay decals: - 7421: -4,4 - 7422: -5,4 - 7423: 3,4 - 7424: 2,4 - 7431: -5,5 - 7432: 3,5 + 7045: -4,4 + 7046: -5,4 + 7047: 3,4 + 7048: 2,4 + 7055: -5,5 + 7056: 3,5 + 8323: 1,2 + 8324: -3,2 - node: color: '#334E6DC8' id: OffsetOverlay decals: - 7413: -4,0 - 7414: -2,0 - 7415: 0,0 - 7416: 2,0 - 7441: -1,5 - 7442: -2,4 - 7443: 0,4 - 7447: -1,4 + 7041: -4,0 + 7042: 2,0 + 7065: -1,5 + 7066: -2,4 + 7067: 0,4 + 7071: -1,4 + 8325: -2,0 + 8326: -1,0 + 8327: 0,0 - node: color: '#9FED5896' id: OldConcreteTrimCornerNe decals: - 3566: -17,-33 + 3358: -17,-33 - node: color: '#9FED5896' id: OldConcreteTrimCornerNw decals: - 3565: -21,-33 + 3357: -21,-33 - node: color: '#FF0F09FF' id: OldConcreteTrimCornerNw decals: - 4171: -101,-19 + 3934: -101,-19 - node: color: '#9FED5896' id: OldConcreteTrimCornerSe decals: - 3570: -17,-35 + 3362: -17,-35 - node: color: '#FF0F09FF' id: OldConcreteTrimCornerSe decals: - 4174: -99,-22 + 3937: -99,-22 - node: color: '#9FED5896' id: OldConcreteTrimCornerSw decals: - 3571: -21,-35 + 3363: -21,-35 - node: color: '#FF0F09FF' id: OldConcreteTrimCornerSw decals: - 4172: -101,-22 + 3935: -101,-22 - node: color: '#FF0F09FF' id: OldConcreteTrimEndE decals: - 4178: -98,-19 + 3941: -98,-19 - node: color: '#FF0F09FF' id: OldConcreteTrimInnerSe decals: - 4177: -99,-19 + 3940: -99,-19 - node: color: '#9FED5896' id: OldConcreteTrimLineE decals: - 3572: -17,-34 + 3364: -17,-34 - node: color: '#FF0F09FF' id: OldConcreteTrimLineE decals: - 4175: -99,-21 - 4176: -99,-20 + 3938: -99,-21 + 3939: -99,-20 - node: color: '#9FED5896' id: OldConcreteTrimLineN decals: - 3567: -20,-33 - 3568: -18,-33 - 3569: -19,-33 + 3359: -20,-33 + 3360: -18,-33 + 3361: -19,-33 - node: color: '#FF0F09FF' id: OldConcreteTrimLineN decals: - 4179: -99,-19 - 4180: -100,-19 + 3942: -99,-19 + 3943: -100,-19 - node: color: '#9FED5896' id: OldConcreteTrimLineS decals: - 3574: -20,-35 - 3575: -18,-35 - 3576: -19,-35 + 3366: -20,-35 + 3367: -18,-35 + 3368: -19,-35 - node: color: '#FF0F09FF' id: OldConcreteTrimLineS decals: - 4173: -100,-22 + 3936: -100,-22 - node: color: '#9FED5896' id: OldConcreteTrimLineW decals: - 3573: -21,-34 + 3365: -21,-34 - node: color: '#FF0F09FF' id: OldConcreteTrimLineW decals: - 4169: -101,-21 - 4170: -101,-20 + 3932: -101,-21 + 3933: -101,-20 - node: color: '#503F66FF' id: Omni decals: - 201: 44.964478,3.9967928 + 173: 44.964478,3.9967928 + - node: + color: '#000F1279' + id: OriginStationSign4 + decals: + 8275: -34,27 + 8276: -34,28 + 8277: -34,29 + 8278: -34,30 + 8279: -33,30 + 8280: -33,29 + 8281: -33,28 + 8282: -33,27 + 8283: -32,27 + 8284: -32,28 + 8285: -32,29 + 8286: -32,30 + 8287: -31,28 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 3537: 32,16 + 3329: 32,16 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale decals: - 6154: 6,-43 - 6155: 6,-39 + 5827: 6,-43 + 5828: 6,-39 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 3538: 32,16 + 3330: 32,16 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 3535: 32,16 + 3327: 32,16 - node: color: '#CC800095' id: QuarterTileOverlayGreyscale270 decals: - 3550: 13,-39 + 3342: 13,-39 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale270 decals: - 6156: 6,-37 - 6157: 6,-41 + 5829: 6,-37 + 5830: 6,-41 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 3536: 32,16 + 3328: 32,16 - node: color: '#CC800095' id: QuarterTileOverlayGreyscale90 decals: - 3556: 13,-39 + 3348: 13,-39 - node: color: '#FFFFFFFF' id: Remains decals: - 2243: -31.431255,-76.12591 - 4976: -25.078335,52.963158 + 2096: -31.431255,-76.12591 + 4699: -25.078335,52.963158 - node: cleanable: True color: '#FFFFFFFF' id: Remains decals: - 3072: 51,-67 + 2888: 51,-67 - node: color: '#FFFFFFFF' id: Rock01 decals: - 32: -52.489395,-7.742259 - 189: -35.904587,32.00624 - 1367: 54.096867,7.04215 - 2021: -65,-25 - 2080: -40,-53 - 2082: -46,-56 - 2084: -41,-39 - 2124: -45,-66 - 2130: -38,-72 - 2131: -19,-67 - 2241: -27,-76 - 2301: -74.80446,-19.363585 - 2307: -52.526882,-23.105782 - 2308: -42.065277,-30.645542 - 3473: 39.941925,-43.94008 - 4167: -87.17018,-6.246065 - 4722: 15.03835,50.953083 + 27: -52.489395,-7.742259 + 161: -35.904587,32.00624 + 1296: 54.096867,7.04215 + 1874: -65,-25 + 1933: -40,-53 + 1935: -46,-56 + 1937: -41,-39 + 1977: -45,-66 + 1983: -38,-72 + 1984: -19,-67 + 2094: -27,-76 + 2154: -74.80446,-19.363585 + 2160: -52.526882,-23.105782 + 2161: -42.065277,-30.645542 + 3275: 39.941925,-43.94008 + 4449: 15.03835,50.953083 - node: cleanable: True color: '#FFFFFFFF' id: Rock01 decals: - 2656: -14,43 + 2475: -14,43 - node: color: '#FFFFFFFF' id: Rock02 decals: - 33: -51.676895,-7.523509 - 34: -52.208145,-8.711009 - 42: -49.989395,-11.367259 - 43: -49.645645,-10.461009 - 314: 20.823744,-38.945713 - 659: -60.88588,17.177135 - 2081: -41,-53 - 2129: -24,-72 + 28: -51.676895,-7.523509 + 29: -52.208145,-8.711009 + 37: -49.989395,-11.367259 + 38: -49.645645,-10.461009 + 257: 20.823744,-38.945713 + 602: -60.88588,17.177135 + 1934: -41,-53 + 1982: -24,-72 + 7864: 26.647238,-37.04999 - node: color: '#FFFFFFFF' id: Rock03 decals: - 37: -52.520645,-11.632884 - 38: -51.69252,-11.414134 - 56: -53.062424,-10.09477 - 198: -34.06182,9.033297 - 315: 19.995619,-39.883213 - 1366: 53.253117,7.0109 - 1454: -44.85394,31.962513 - 2086: -45,-51 - 2123: -38,-65 - 2128: -24,-71 - 2240: -28,-75 - 2304: -58.50792,-23.183817 - 2310: -44.925186,-27.942406 + 32: -52.520645,-11.632884 + 33: -51.69252,-11.414134 + 51: -53.062424,-10.09477 + 170: -34.06182,9.033297 + 258: 19.995619,-39.883213 + 1295: 53.253117,7.0109 + 1383: -44.85394,31.962513 + 1939: -45,-51 + 1976: -38,-65 + 1981: -24,-71 + 2093: -28,-75 + 2157: -58.50792,-23.183817 + 7718: -55.029655,4.673483 + 7867: 24.028383,-38.0887 - node: color: '#FFFFFFFF' id: Rock04 decals: - 36: -52.69252,-11.992259 - 44: -50.25502,-10.492259 - 54: -49.6093,-8.483088 - 55: -49.3593,-7.2487125 - 188: -14.039047,49.780285 - 200: 41.98061,4.9957447 - 1786: -60.044827,-10.867942 - 1885: -67.01088,-15.572131 - 2022: -49,-24 - 2083: -45,-55 - 2087: -38,-41 - 2088: -41,-73 - 2125: -34,-71 - 2305: -58.007935,-23.527567 - 4166: -85.27956,-10.652314 + 31: -52.69252,-11.992259 + 39: -50.25502,-10.492259 + 49: -49.6093,-8.483088 + 50: -49.3593,-7.2487125 + 160: -14.039047,49.780285 + 172: 41.98061,4.9957447 + 1675: -60.044827,-10.867942 + 1739: -67.01088,-15.572131 + 1875: -49,-24 + 1936: -45,-55 + 1940: -38,-41 + 1941: -41,-73 + 1978: -34,-71 + 2158: -58.007935,-23.527567 + 7865: 25.916725,-39.004795 - node: color: '#FFFFFFFF' id: Rock05 decals: - 39: -51.97377,-12.054759 - 40: -52.69252,-10.242259 - 41: -53.176895,-10.726634 - 45: -50.7343,-6.9205875 - 46: -50.906174,-7.3580875 - 47: -45.82805,-5.8737125 - 48: -46.51555,-6.5143375 - 49: -46.156174,-5.4049625 - 50: -46.656174,-5.9518375 - 51: -49.4218,-7.9674625 - 52: -48.4218,-7.6862125 - 53: -48.51555,-8.545588 - 202: 32.99591,-10.984658 - 300: 19.92542,-31.038776 - 2127: -25,-72 - 2302: -74.17946,-18.754208 - 2306: -53.558136,-22.902658 - 3481: 40.051594,-38.10324 + 34: -51.97377,-12.054759 + 35: -52.69252,-10.242259 + 36: -53.176895,-10.726634 + 40: -50.7343,-6.9205875 + 41: -50.906174,-7.3580875 + 42: -45.82805,-5.8737125 + 43: -46.51555,-6.5143375 + 44: -46.156174,-5.4049625 + 45: -46.656174,-5.9518375 + 46: -49.4218,-7.9674625 + 47: -48.4218,-7.6862125 + 48: -48.51555,-8.545588 + 174: 32.99591,-10.984658 + 243: 19.92542,-31.038776 + 1980: -25,-72 + 2155: -74.17946,-18.754208 + 2159: -53.558136,-22.902658 + 3283: 40.051594,-38.10324 + 7866: 28.876818,-37.895348 - node: color: '#FFFFFFFF' id: Rock06 decals: - 35: -52.00502,-11.476634 - 2023: -45,-28 - 2085: -42,-57 - 2089: -42,-73 - 2126: -33,-71 - 2132: -17,-70 - 2242: -28,-76 - 2303: -74.92947,-18.707333 - 2309: -42.815277,-30.879917 - 3474: 41.88389,-42.572388 - 3475: 54.113747,-45.032722 - 4168: -79.90456,-6.261691 + 30: -52.00502,-11.476634 + 1938: -42,-57 + 1942: -42,-73 + 1979: -33,-71 + 1985: -17,-70 + 2095: -28,-76 + 2156: -74.92947,-18.707333 + 2162: -42.815277,-30.879917 + 3276: 41.88389,-42.572388 + 3277: 54.113747,-45.032722 + 9284: -77.19092,-10.562477 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Rock06 + decals: + 8258: -36.09415,26.70655 - node: angle: 7.853981633974483 rad color: '#FFFFFFFF' id: Rock07 decals: - 2230: -13.939968,50.953747 + 2083: -13.939968,50.953747 - node: cleanable: True color: '#FFFFFFFF' id: Rust decals: - 4712: 13,57 - 4717: 16,45 + 4439: 13,57 + 4444: 16,45 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 3233: -4,12 + 3036: -4,12 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 3503: -3,12 + 3295: -3,12 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 3232: -2,12 + 3035: -2,12 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 3231: -1,12 + 3034: -1,12 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 3230: 0,12 + 3033: 0,12 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 3502: 1,12 + 3294: 1,12 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 3229: 2,12 + 3032: 2,12 + - node: + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 7668: 80,38 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: - 1707: -89,11 - 1708: -87,11 - 1709: -81,11 - 1710: -79,11 + 1634: -89,11 + 1635: -87,11 + 1636: -81,11 + 1637: -79,11 + 7667: 79,39 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 1703: -74,33 - 1704: -74,40 - 1705: -92,40 - 1706: -92,33 + 1630: -74,33 + 1631: -74,40 + 1632: -92,40 + 1633: -92,33 + 7666: 78,38 - node: color: '#FFFFFFFF' id: StandClear decals: - 1693: -95,45 - 1701: -77,45 - 1702: -59,45 - 1868: -79,-2 - 1869: -81,-2 - 1870: -87,-2 - 1871: -89,-2 - 3390: 0,46 - 3421: -2,46 - 4294: -5,71 - 4295: -3,71 - 4296: 3,71 - 4297: 5,71 + 1620: -95,45 + 1628: -77,45 + 1629: -59,45 + 1722: -79,-2 + 1723: -81,-2 + 1724: -87,-2 + 1725: -89,-2 + 3192: 0,46 + 3223: -2,46 + 4055: -5,71 + 4056: -3,71 + 4057: 3,71 + 4058: 5,71 + 7665: 79,37 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 1684: -62,33 - 1685: -62,40 - 1686: -80,40 - 1687: -80,33 - 1688: -98,33 - 1689: -101,21 - 1690: -101,23 - 1691: -101,13 - 1692: -101,15 + 1611: -62,33 + 1612: -62,40 + 1613: -80,40 + 1614: -80,33 + 1615: -98,33 + 1616: -101,21 + 1617: -101,23 + 1618: -101,13 + 1619: -101,15 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 2214: 74,3 - 2215: 74,5 + 2067: 74,3 + 2068: 74,5 - node: color: '#48B9FF8C' id: ThreeQuarterTileOverlayGreyscale decals: - 2880: -6,-54 - 2881: -3,-54 + 2696: -6,-54 + 2697: -3,-54 - node: angle: -6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 2944: -11,-46 + 2760: -11,-46 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 5049: 4,-54 - 5050: 1,-54 - 5299: -11,-53 + 4768: 4,-54 + 4769: 1,-54 + 5000: -11,-53 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 7045: 38,-5 - 7139: -29,7 + 6695: 38,-5 + 6787: -29,7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 3405: 10,54 - 3407: 10,51 + 3207: 10,54 + 3209: 10,51 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 3523: 28,17 + 3315: 28,17 - node: angle: -6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2946: -8,-48 + 2762: -8,-48 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 5298: -8,-55 + 4999: -8,-55 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: - 7048: 40,-8 - 7138: -25,3 + 6698: 40,-8 + 6786: -25,3 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 7879: 37,-15 + 7502: 37,-15 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3401: 12,50 - 3402: 12,53 + 3203: 12,50 + 3204: 12,53 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3528: 31,14 + 3320: 31,14 - node: cleanable: True color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 451: 17,25 + 394: 17,25 - node: angle: -6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2945: -11,-48 + 2761: -11,-48 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3529: 28,14 - 5297: -11,-55 + 3321: 28,14 + 4998: -11,-55 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: - 7047: 38,-8 - 7137: -29,3 + 6697: 38,-8 + 6785: -29,3 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 7878: 33,-15 + 7501: 33,-15 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3410: 10,50 - 3411: 10,53 + 3212: 10,50 + 3213: 10,53 - node: color: '#48B9FF8C' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2878: -4,-54 - 2879: -1,-54 + 2694: -4,-54 + 2695: -1,-54 - node: angle: -6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2947: -8,-46 + 2763: -8,-46 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3530: 31,17 - 5047: 6,-54 - 5048: 3,-54 - 5296: -8,-53 + 3322: 31,17 + 4766: 6,-54 + 4767: 3,-54 + 4997: -8,-53 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 7046: 40,-5 - 7136: -25,7 + 6696: 40,-5 + 6784: -25,7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3408: 12,54 - 3409: 12,51 + 3210: 12,54 + 3211: 12,51 - node: color: '#FFFFFFFF' id: WarnBox decals: - 5338: 23,-70 + 5039: 23,-70 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3506: 80,39 - 4332: 13,-41 - 4336: 10,-37 - 4345: 15,-35 - 5069: 15,-59 - 5182: 50,-30 - 5183: 50,-35 - 7838: 36,-13 - 7884: 65,-30 + 3298: 80,39 + 4086: 13,-41 + 4090: 10,-37 + 4096: 15,-35 + 4788: 15,-59 + 4883: 50,-30 + 4884: 50,-35 + 7461: 36,-13 + 7507: 65,-30 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerNE decals: - 1335: 32,61 + 1264: 32,61 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3507: 78,39 - 4335: 8,-37 - 4343: 14,-35 - 4431: 11,-41 - 5068: 13,-59 - 5180: 48,-35 - 5181: 48,-30 - 7837: 34,-13 - 7882: 63,-30 + 3299: 78,39 + 4089: 8,-37 + 4094: 14,-35 + 4182: 11,-41 + 4787: 13,-59 + 4881: 48,-35 + 4882: 48,-30 + 7460: 34,-13 + 7505: 63,-30 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerNW decals: - 1334: 34,61 + 1263: 34,61 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 3509: 80,37 - 4333: 13,-42 - 4334: 10,-38 - 4344: 15,-36 - 5070: 15,-61 - 5184: 50,-37 - 5185: 50,-32 - 7839: 36,-14 - 7883: 65,-32 + 3301: 80,37 + 4087: 13,-42 + 4088: 10,-38 + 4095: 15,-36 + 4789: 15,-61 + 4885: 50,-37 + 4886: 50,-32 + 7462: 36,-14 + 7506: 65,-32 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerSE decals: - 4322: 9,56 + 4076: 9,56 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 3508: 78,37 - 4337: 8,-38 - 4346: 14,-36 - 4432: 11,-42 - 5071: 13,-61 - 5186: 48,-37 - 5187: 48,-32 - 7840: 34,-14 - 7885: 63,-32 + 3300: 78,37 + 4091: 8,-38 + 4097: 14,-36 + 4183: 11,-42 + 4790: 13,-61 + 4887: 48,-37 + 4888: 48,-32 + 7463: 34,-14 + 7508: 63,-32 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 2402: -42,-25 - 2834: 77,-34 - 6505: -3,47 - 6551: -3,43 + 2255: -42,-25 + 2650: 77,-34 + 6159: -3,47 + 6205: -3,43 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 2833: 81,-34 - 3389: 1,47 - 6550: 1,43 + 2649: 81,-34 + 3191: 1,47 + 6204: 1,43 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 2406: -42,-25 - 2831: 77,-56 - 6499: -3,49 - 6506: -3,45 + 2259: -42,-25 + 2647: 77,-56 + 6154: -3,49 + 6160: -3,45 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 2832: 81,-56 - 3388: 1,45 - 5007: 1,49 + 2648: 81,-56 + 3190: 1,45 + 4726: 1,49 - node: color: '#DE3A3A96' id: WarnEndGreyscaleS decals: - 2040: -12,-18 + 1893: -12,-18 - node: color: '#DE3A3A96' id: WarnEndN decals: - 7526: -25,-16 - 7527: -26,-16 - 7528: -27,-16 - 7529: -28,-16 + 7149: -25,-16 + 7150: -26,-16 + 7151: -27,-16 + 7152: -28,-16 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 4676: -34,40 - 4677: -34,44 + 4420: -34,40 + 4421: -34,44 - node: color: '#DE3A3A96' id: WarnEndS decals: - 7522: -25,-18 - 7523: -26,-18 - 7524: -27,-18 - 7525: -28,-18 + 7145: -25,-18 + 7146: -26,-18 + 7147: -27,-18 + 7148: -28,-18 - node: color: '#F2AF415D' id: WarnFull decals: - 1048: 3,16 + 981: 3,16 - node: color: '#F2AF4160' id: WarnFull decals: - 1050: 2,16 - 1051: 2,15 - 1052: 3,15 - 1053: 4,15 - 1054: 4,16 - 1055: 8,15 - 1056: 9,15 - 1057: 10,15 - 1058: 10,16 - 1059: 8,16 - 1060: 9,16 + 983: 2,16 + 984: 2,15 + 985: 3,15 + 986: 4,15 + 987: 4,16 + 988: 8,15 + 989: 9,15 + 990: 10,15 + 991: 10,16 + 992: 8,16 + 993: 9,16 - node: color: '#52B4E996' id: WarnFullGreyscale decals: - 80: -16,-53 - 81: -19,-53 + 75: -16,-53 + 76: -19,-53 - node: angle: 3.141592653589793 rad color: '#FFFF00FF' id: WarnLineE decals: - 5: -4,-20 - 6: -4,-21 - 7: -4,-22 + 0: -4,-20 + 1: -4,-21 + 2: -4,-22 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 2212: 74,3 - 2213: 74,5 - 2399: -42,-23 - 2400: -42,-24 - 2407: -42,-26 - 2523: 16,-7 - 2524: 16,-6 - 2525: 16,-5 - 2526: 16,-4 - 2527: 16,-3 - 3773: 9,60 - 4706: -34,42 - 5072: 15,-60 - 5188: 50,-36 - 5189: 50,-31 - 7887: 65,-31 + 2065: 74,3 + 2066: 74,5 + 2252: -42,-23 + 2253: -42,-24 + 2260: -42,-26 + 2373: 16,-7 + 2374: 16,-6 + 2375: 16,-5 + 2376: 16,-4 + 2377: 16,-3 + 3565: 9,60 + 4433: -34,42 + 4791: 15,-60 + 4889: 50,-36 + 4890: 50,-31 + 7510: 65,-31 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineE decals: - 1329: 41,70 - 1330: 41,69 - 1331: 41,68 - 1332: 41,67 - 4325: 9,57 + 1258: 41,70 + 1259: 41,69 + 1260: 41,68 + 1261: 41,67 + 4079: 9,57 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 5350: 9,-6 - 5351: 9,-5 - 5352: 9,-4 - 5355: -9,-1 - 5356: -9,1 - 5592: 36,35 - 5762: 9,-9 + 5051: 9,-6 + 5052: 9,-5 + 5053: 9,-4 + 5056: -9,-1 + 5057: -9,1 + 5283: 36,35 + 5448: 9,-9 - node: color: '#3EB38896' id: WarnLineGreyscaleE decals: - 5452: 28,28 + 5151: 28,28 - node: color: '#43990996' id: WarnLineGreyscaleE decals: - 6058: -22,-42 - 6059: -22,-41 - 6066: -28,-42 - 6067: -28,-41 - 6100: -33,-55 + 5731: -22,-42 + 5732: -22,-41 + 5739: -28,-42 + 5740: -28,-41 + 5773: -33,-55 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 5125: 12,-60 - 5126: 1,-61 - 5127: 1,-58 - 5145: 6,-52 - 5149: 10,-56 - 5155: 10,-47 - 5975: 0,-33 - 6002: 6,-33 - 7104: 0,-31 + 4844: 12,-60 + 4845: 1,-61 + 4846: 1,-58 + 4864: 6,-52 + 4868: 10,-56 + 4874: 10,-47 + 5650: 0,-33 + 5677: 6,-33 + 6752: 0,-31 - node: color: '#9FED5896' id: WarnLineGreyscaleE decals: - 5375: -21,17 - 5376: -21,13 - 5504: 1,32 - 5505: 1,33 - 6163: -59,-5 - 6189: -77,-8 - 6306: -59,9 - 7142: -25,4 - 7143: -25,5 + 5074: -21,17 + 5075: -21,13 + 5203: 1,32 + 5204: 1,33 + 5832: -59,-5 + 5962: -59,9 + 6790: -25,4 + 6791: -25,5 + 7735: -55,-1 + 7736: -55,1 - node: color: '#A4610696' id: WarnLineGreyscaleE decals: - 6240: 72,-3 - 6243: 76,-17 - 6244: 76,-15 - 6964: 51,4 - 6983: 43,-2 - 6984: 43,0 - 6998: 51,-1 + 5897: 72,-3 + 5900: 76,-17 + 5901: 76,-15 + 6618: 51,4 + 6633: 43,-2 + 6634: 43,0 + 6648: 51,-1 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 5215: 53,-22 - 5217: 28,-21 - 5220: 10,-21 - 5239: 61,-45 - 5958: 0,-14 - 6199: 68,-45 - 6208: 72,-45 - 7715: 36,-21 - 7824: 44,-22 - 7890: 51,-26 - 7916: 61,-35 - 7964: 60,-27 + 4916: 53,-22 + 4918: 28,-21 + 4921: 10,-21 + 4940: 61,-45 + 5635: 0,-14 + 5865: 68,-45 + 5874: 72,-45 + 7338: 36,-21 + 7447: 44,-22 + 7513: 51,-26 + 7539: 61,-35 + 7587: 60,-27 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 5426: 21,10 - 5427: 21,4 - 5430: 24,7 - 5450: -27,-33 - 6020: -8,-38 - 6546: 1,39 - 6547: 1,43 - 7015: 51,-6 - 7517: -32,-4 - 7603: -34,-17 - 7624: -41,-16 - 7627: -43,-15 - 7628: -43,-14 + 5125: 21,10 + 5126: 21,4 + 5129: 24,7 + 5149: -27,-33 + 5695: -8,-38 + 6200: 1,39 + 6201: 1,43 + 6665: 51,-6 + 7140: -32,-4 + 7226: -34,-17 + 7247: -41,-16 + 7250: -43,-15 + 7251: -43,-14 - node: color: '#EFB34196' id: WarnLineGreyscaleE decals: - 5392: 8,26 - 5417: 24,28 + 5091: 8,26 + 5116: 24,28 - node: color: '#FA750096' id: WarnLineGreyscaleE decals: - 6028: 6,-38 - 6142: 6,-42 + 5703: 6,-38 + 5815: 6,-42 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: - 5362: -2,1 - 5363: 0,1 - 5369: -1,-10 - 5607: -16,1 - 6236: 58,2 + 5068: -1,-10 + 5298: -16,1 + 5893: 58,2 - node: color: '#3EB38896' id: WarnLineGreyscaleN decals: - 5559: 10,19 + 5258: 10,19 - node: color: '#43990996' id: WarnLineGreyscaleN decals: - 6098: -36,-50 - 6099: -35,-50 - 6103: -36,-59 - 6104: -35,-59 + 5771: -36,-50 + 5772: -35,-50 + 5776: -36,-59 + 5777: -35,-59 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 5122: 0,-57 - 5123: 9,-58 - 5136: -5,-46 - 5140: -1,-52 - 5141: 1,-52 - 5142: 5,-50 - 5150: 9,-50 - 5156: 4,-41 - 5157: 5,-41 - 5158: -5,-41 - 5989: 4,-37 - 6039: -6,-41 - 7366: -1,-43 + 4841: 0,-57 + 4842: 9,-58 + 4855: -5,-46 + 4859: -1,-52 + 4860: 1,-52 + 4861: 5,-50 + 4869: 9,-50 + 4875: 4,-41 + 4876: 5,-41 + 4877: -5,-41 + 5664: 4,-37 + 5712: -6,-41 + 7000: -1,-43 - node: color: '#8C347F96' id: WarnLineGreyscaleN decals: - 6247: -49,25 - 6253: -48,25 - 6254: -47,25 + 5904: -49,25 + 5910: -48,25 + 5911: -47,25 - node: color: '#9FED5896' id: WarnLineGreyscaleN decals: - 5346: -26,1 - 5348: -33,1 - 5379: -26,23 - 5383: -42,23 - 5746: -27,1 - 5875: -23,23 - 5876: -21,23 - 6160: -51,1 - 6215: 26,1 - 6216: 27,1 - 6217: 28,1 - 6218: 30,1 - 6219: 31,1 - 6220: 32,1 - 6221: 34,1 - 6222: 35,1 - 6223: 36,1 - 6969: 38,1 - 6970: 39,1 - 6971: 40,1 - 7074: 42,1 - 7144: 39,-5 + 5047: -26,1 + 5049: -33,1 + 5078: -26,23 + 5082: -42,23 + 5432: -27,1 + 5557: -23,23 + 5558: -21,23 + 6792: 39,-5 + 7852: 42,1 + 7853: 32,0 + 7854: 33,0 + 7857: 36,0 - node: color: '#A4610696' id: WarnLineGreyscaleN decals: - 6237: 64,0 + 5894: 64,0 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 5241: 71,-44 - 5244: 79,-44 - 5957: 8,-20 - 6702: 17,-20 - 6703: 23,-20 - 7822: 40,-19 - 7832: 24,-12 - 7867: 39,-13 - 7897: 59,-39 - 7917: 57,-30 - 7966: 56,-25 - 7969: 56,-21 + 4942: 71,-44 + 4945: 79,-44 + 5634: 8,-20 + 6356: 17,-20 + 6357: 23,-20 + 7445: 40,-19 + 7455: 24,-12 + 7490: 39,-13 + 7520: 59,-39 + 7540: 57,-30 + 7589: 56,-25 + 7592: 56,-21 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 5263: -11,-41 - 5264: -9,-41 - 5432: -24,-25 - 7016: 47,-5 - 7019: 42,-5 - 7515: -34,-3 - 7630: -43,-11 - 7677: 8,-24 - 7683: 13,-24 + 4964: -11,-41 + 4965: -9,-41 + 5131: -24,-25 + 6666: 47,-5 + 6669: 42,-5 + 7138: -34,-3 + 7253: -43,-11 + 7300: 8,-24 + 7306: 13,-24 - node: color: '#EFB34196' id: WarnLineGreyscaleN decals: - 5389: 20,8 - 5394: 15,23 - 5395: 21,23 - 5415: 26,19 - 5419: 27,29 - 5423: 27,35 - 5593: 27,40 - 5595: 27,42 - 6892: 14,1 + 5088: 20,8 + 5093: 15,23 + 5094: 21,23 + 5114: 26,19 + 5118: 27,29 + 5122: 27,35 + 5284: 27,40 + 5286: 27,42 + 6546: 14,1 - node: color: '#FA750096' id: WarnLineGreyscaleN decals: - 6151: 9,-46 + 5824: 9,-46 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 6808: -1,-43 + 6462: -1,-43 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 5226: -50,11 - 5359: 14,-1 - 5360: -4,-1 - 5361: -1,-1 - 5425: 14,21 + 4927: -50,11 + 5060: 14,-1 + 5061: -4,-1 + 5062: -1,-1 + 5124: 14,21 - node: color: '#3EB38896' id: WarnLineGreyscaleS decals: - 5512: 10,21 - 5566: 11,15 + 5211: 10,21 + 5265: 11,15 - node: color: '#43990996' id: WarnLineGreyscaleS decals: - 6096: -36,-48 - 6097: -35,-48 - 6101: -36,-57 - 6102: -35,-57 - 6124: -31,-55 - 6140: -36,-63 - 6141: -35,-63 + 5769: -36,-48 + 5770: -35,-48 + 5774: -36,-57 + 5775: -35,-57 + 5797: -31,-55 + 5813: -36,-63 + 5814: -35,-63 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 5124: 0,-62 - 5130: 0,-55 - 5137: -5,-44 - 5138: -1,-50 - 5139: 1,-50 - 5143: 5,-48 - 5146: 9,-48 - 5147: 9,-56 - 5159: -9,-44 - 5160: -20,-42 - 5161: -24,-54 - 5340: -15,-42 - 6000: 4,-35 - 6029: -3,-38 - 6030: 1,-38 - 6036: -1,-38 - 6042: 4,-39 - 6043: 5,-39 + 4843: 0,-62 + 4849: 0,-55 + 4856: -5,-44 + 4857: -1,-50 + 4858: 1,-50 + 4862: 5,-48 + 4865: 9,-48 + 4866: 9,-56 + 4878: -9,-44 + 4879: -20,-42 + 4880: -24,-54 + 5041: -15,-42 + 5675: 4,-35 + 5704: -3,-38 + 5705: 1,-38 + 5715: 4,-39 + 5716: 5,-39 + 8447: -1,-38 - node: color: '#9FED5896' id: WarnLineGreyscaleS decals: - 5374: -12,21 - 5378: -28,21 - 5380: -37,21 - 5381: -35,21 - 5382: -42,21 - 6161: -53,-1 - 6162: -50,-1 - 6183: -67,-5 - 6192: -84,-12 - 7044: 39,-3 - 7140: -27,3 - 7141: -26,3 - 7750: 27,-1 + 5073: -12,21 + 5077: -28,21 + 5079: -37,21 + 5080: -35,21 + 5081: -42,21 + 5852: -67,-5 + 6694: 39,-3 + 6788: -27,3 + 6789: -26,3 + 7373: 27,-1 - node: color: '#A4610696' id: WarnLineGreyscaleS decals: - 6226: 58,-7 - 6238: 64,2 - 6963: 50,3 + 5883: 58,-7 + 5895: 64,2 + 6617: 50,3 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 5218: 27,-22 - 5219: 20,-22 - 5242: 71,-46 - 5243: 79,-46 - 6732: 17,-18 - 6733: 23,-18 - 7781: 32,-23 - 7788: 34,-23 - 7821: 41,-20 - 7866: 40,-17 - 7915: 59,-37 - 7962: 57,-28 - 7963: 60,-28 - 7967: 56,-23 + 4919: 27,-22 + 4920: 20,-22 + 4943: 71,-46 + 4944: 79,-46 + 6386: 17,-18 + 6387: 23,-18 + 7404: 32,-23 + 7411: 34,-23 + 7444: 41,-20 + 7489: 40,-17 + 7538: 59,-37 + 7585: 57,-28 + 7586: 60,-28 + 7590: 56,-23 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 5431: -24,-23 - 5435: -24,-30 - 5448: -27,-34 - 6018: -11,-39 - 6019: -9,-39 - 7005: 47,-3 - 7014: 42,-3 - 7020: 45,-8 - 7497: -34,-1 - 7530: -29,-18 - 7623: -41,-17 - 7625: -44,-17 - 7631: -43,-10 - 7672: 8,-22 - 7673: 13,-22 - 7696: 9,-26 + 5130: -24,-23 + 5134: -24,-30 + 5147: -27,-34 + 5693: -11,-39 + 5694: -9,-39 + 6655: 47,-3 + 6664: 42,-3 + 6670: 45,-8 + 7120: -34,-1 + 7153: -29,-18 + 7246: -41,-17 + 7248: -44,-17 + 7254: -43,-10 + 7295: 8,-22 + 7296: 13,-22 + 7319: 9,-26 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 5390: 20,10 - 5396: 26,21 - 5416: 21,25 - 5420: 27,31 - 5424: 27,37 - 5594: 27,42 - 6938: 14,3 + 5089: 20,10 + 5095: 26,21 + 5115: 21,25 + 5119: 27,31 + 5123: 27,37 + 5285: 27,42 + 6592: 14,3 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: - 5353: 7,-1 - 5354: 7,1 - 5608: -11,-6 - 5681: -2,-14 + 5054: 7,-1 + 5055: 7,1 + 5299: -11,-6 + 5367: -2,-14 - node: color: '#43990996' id: WarnLineGreyscaleW decals: - 6060: -26,-42 - 6061: -26,-41 - 6062: -20,-42 - 6125: -31,-55 - 6783: -20,-41 + 5733: -26,-42 + 5734: -26,-41 + 5735: -20,-42 + 5798: -31,-55 + 6437: -20,-41 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 5128: 7,-61 - 5129: 7,-58 - 5135: -6,-52 - 5144: 8,-52 - 6001: 2,-33 + 4847: 7,-61 + 4848: 7,-58 + 4854: -6,-52 + 4863: 8,-52 + 5676: 2,-33 - node: color: '#9FED5896' id: WarnLineGreyscaleW decals: - 5347: -23,5 - 5349: -23,9 - 5377: -23,4 - 5605: -2,15 - 5877: -9,50 - 6190: -75,-8 - 6191: -91,-8 - 6305: -60,9 + 5048: -23,5 + 5050: -23,9 + 5076: -23,4 + 5296: -2,15 + 5559: -9,50 + 5858: -75,-8 + 5961: -60,9 + 7744: -35,1 - node: color: '#A4610696' id: WarnLineGreyscaleW decals: - 6224: 53,-1 - 6225: 53,4 - 6242: 74,-3 - 6245: 75,-17 - 6246: 75,-15 - 6965: 48,4 - 6985: 45,-2 - 6986: 45,0 + 5881: 53,-1 + 5882: 53,4 + 5899: 74,-3 + 5902: 75,-17 + 5903: 75,-15 + 6619: 48,4 + 6635: 45,-2 + 6636: 45,0 - node: color: '#D381C996' id: WarnLineGreyscaleW decals: - 5216: 30,-21 - 5221: 12,-21 - 5238: 63,-45 - 5747: 19,-9 - 6194: 14,-15 - 6196: 57,-44 - 6200: 70,-45 - 6207: 74,-45 - 7792: 46,-22 - 7823: 38,-21 - 7965: 53,-26 - 7968: 55,-22 - 8029: 54,-35 - 8030: 54,-32 + 4917: 30,-21 + 4922: 12,-21 + 4939: 63,-45 + 5433: 19,-9 + 5860: 14,-15 + 5862: 57,-44 + 5866: 70,-45 + 5873: 74,-45 + 7415: 46,-22 + 7446: 38,-21 + 7588: 53,-26 + 7591: 55,-22 + 7652: 54,-35 + 7653: 54,-32 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 5265: -6,-38 - 5428: 23,10 - 5429: 23,4 - 5433: -23,-13 - 5434: -23,-17 - 5449: -32,-33 - 7011: 53,-6 - 7516: -31,-4 - 7531: -32,-17 - 7604: -39,-16 - 7626: -45,-16 - 7629: -45,-12 - 7706: -25,-29 - 7707: -25,-25 + 4966: -6,-38 + 5127: 23,10 + 5128: 23,4 + 5132: -23,-13 + 5133: -23,-17 + 5148: -32,-33 + 6661: 53,-6 + 7139: -31,-4 + 7154: -32,-17 + 7227: -39,-16 + 7249: -45,-16 + 7252: -45,-12 + 7329: -25,-29 + 7330: -25,-25 + 7746: -35,-1 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 5391: 10,26 - 5393: 9,22 - 5418: 26,28 - 5422: 26,34 - 5599: 26,38 + 5090: 10,26 + 5092: 9,22 + 5117: 26,28 + 5121: 26,34 + 5290: 26,38 - node: color: '#DE3A3A96' id: WarnLineN decals: - 5451: -27,-34 + 5150: -27,-34 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 170: -2,37 - 171: -1,37 - 172: 0,37 - 281: -20,-23 - 282: -17,-23 - 283: -14,-23 - 284: -11,-23 - 998: -21,-3 - 2319: -34,-29 - 2320: -31,-25 - 2321: -32,-25 - 2322: -33,-25 - 2323: -34,-25 - 2338: -36,-25 - 2339: -37,-25 - 2340: -38,-25 - 2341: -36,-29 - 2342: -37,-29 - 2343: -38,-29 - 2370: -33,-29 - 2371: -32,-29 - 2376: -30,-22 - 2377: -29,-22 - 2382: -31,-29 - 2403: -41,-25 - 2404: -40,-25 - 2422: -30,-29 - 2423: -29,-29 - 2424: -28,-29 - 2425: -27,-29 - 2504: -39,-25 - 2505: -35,-25 - 2506: -35,-29 - 2519: 11,-6 - 2520: 13,-6 - 2521: 14,-6 - 2522: 15,-6 - 2828: 78,-56 - 2829: 79,-56 - 2830: 80,-56 - 2838: 78,-33 - 2839: 79,-33 - 2840: 80,-33 - 3034: -27,-8 - 3035: -28,-8 - 3036: -29,-8 - 3037: -30,-8 - 3246: 0,49 - 3247: -2,49 - 3326: -1,49 - 3403: 0,45 - 3404: -1,45 - 3406: -2,45 - 4338: 9,-38 - 4434: 12,-42 - 5073: 14,-61 - 5192: 49,-37 - 5193: 49,-32 - 5739: -23,-3 - 5740: -22,-3 - 7836: 35,-14 - 7886: 64,-32 + 142: -2,37 + 143: -1,37 + 144: 0,37 + 224: -20,-23 + 225: -17,-23 + 226: -14,-23 + 227: -11,-23 + 934: -21,-3 + 2172: -34,-29 + 2173: -31,-25 + 2174: -32,-25 + 2175: -33,-25 + 2176: -34,-25 + 2191: -36,-25 + 2192: -37,-25 + 2193: -38,-25 + 2194: -36,-29 + 2195: -37,-29 + 2196: -38,-29 + 2223: -33,-29 + 2224: -32,-29 + 2229: -30,-22 + 2230: -29,-22 + 2235: -31,-29 + 2256: -41,-25 + 2257: -40,-25 + 2275: -30,-29 + 2276: -29,-29 + 2277: -28,-29 + 2278: -27,-29 + 2354: -39,-25 + 2355: -35,-25 + 2356: -35,-29 + 2369: 11,-6 + 2370: 13,-6 + 2371: 14,-6 + 2372: 15,-6 + 2644: 78,-56 + 2645: 79,-56 + 2646: 80,-56 + 2654: 78,-33 + 2655: 79,-33 + 2656: 80,-33 + 2850: -27,-8 + 2851: -28,-8 + 2852: -29,-8 + 2853: -30,-8 + 3048: 0,49 + 3049: -2,49 + 3128: -1,49 + 3205: 0,45 + 3206: -1,45 + 3208: -2,45 + 4092: 9,-38 + 4185: 12,-42 + 4792: 14,-61 + 4893: 49,-37 + 4894: 49,-32 + 5425: -23,-3 + 5426: -22,-3 + 7459: 35,-14 + 7509: 64,-32 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineN decals: - 4323: 8,56 - 4324: 7,56 + 4077: 8,56 + 4078: 7,56 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 2395: -42,-23 - 2396: -42,-24 - 2397: -42,-25 - 2398: -42,-26 - 2756: 16,-5 - 2757: 16,-4 - 2758: 16,-3 - 3852: -69,-12 - 3853: -69,-11 - 3854: -69,-10 - 4707: -34,42 - 5075: 13,-60 - 5194: 48,-36 - 5195: 48,-31 - 7888: 63,-31 + 2248: -42,-23 + 2249: -42,-24 + 2250: -42,-25 + 2251: -42,-26 + 2572: 16,-5 + 2573: 16,-4 + 2574: 16,-3 + 3644: -69,-12 + 3645: -69,-11 + 3646: -69,-10 + 4434: -34,42 + 4794: 13,-60 + 4895: 48,-36 + 4896: 48,-31 + 7511: 63,-31 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineS decals: - 1325: 37,70 - 1326: 37,69 - 1327: 37,68 - 1328: 37,67 + 1254: 37,70 + 1255: 37,69 + 1256: 37,68 + 1257: 37,67 - node: color: '#D58C18FF' id: WarnLineW decals: - 7543: -39,-14 - 7544: -38,-14 - 7545: -37,-14 - 7546: -36,-14 - 7547: -35,-14 - 7548: -34,-14 - 7549: -34,-13 - 7550: -35,-13 - 7551: -36,-13 - 7552: -37,-13 - 7553: -38,-13 - 7554: -39,-13 - 7555: -39,-12 - 7556: -38,-12 - 7557: -37,-12 - 7558: -36,-12 - 7559: -35,-12 - 7560: -34,-12 - 7561: -34,-11 - 7562: -35,-11 - 7563: -36,-11 - 7564: -37,-11 - 7565: -38,-11 - 7566: -39,-11 - 7567: -39,-10 - 7568: -38,-10 - 7569: -37,-10 - 7570: -36,-10 - 7571: -35,-10 - 7572: -34,-10 - 7573: -34,-9 - 7574: -35,-9 - 7575: -36,-9 - 7576: -37,-9 - 7577: -38,-9 - 7578: -39,-9 + 7166: -39,-14 + 7167: -38,-14 + 7168: -37,-14 + 7169: -36,-14 + 7170: -35,-14 + 7171: -34,-14 + 7172: -34,-13 + 7173: -35,-13 + 7174: -36,-13 + 7175: -37,-13 + 7176: -38,-13 + 7177: -39,-13 + 7178: -39,-12 + 7179: -38,-12 + 7180: -37,-12 + 7181: -36,-12 + 7182: -35,-12 + 7183: -34,-12 + 7184: -34,-11 + 7185: -35,-11 + 7186: -36,-11 + 7187: -37,-11 + 7188: -38,-11 + 7189: -39,-11 + 7190: -39,-10 + 7191: -38,-10 + 7192: -37,-10 + 7193: -36,-10 + 7194: -35,-10 + 7195: -34,-10 + 7196: -34,-9 + 7197: -35,-9 + 7198: -36,-9 + 7199: -37,-9 + 7200: -38,-9 + 7201: -39,-9 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 168: -1,35 - 169: 0,35 - 1067: -2,35 - 1298: 38,36 - 1299: 39,36 - 1300: 40,36 - 2344: -38,-29 - 2345: -37,-29 - 2346: -36,-29 - 2347: -36,-25 - 2348: -37,-25 - 2349: -38,-25 - 2364: -34,-29 - 2365: -33,-29 - 2366: -32,-29 - 2367: -32,-25 - 2368: -33,-25 - 2369: -34,-25 - 2378: -29,-24 - 2379: -30,-24 - 2401: -40,-25 - 2405: -41,-25 - 2501: -39,-25 - 2502: -35,-25 - 2503: -35,-29 - 2508: -19,-17 - 2509: 11,-4 - 2510: 12,-4 - 2759: 13,-4 - 2825: 78,-34 - 2826: 79,-34 - 2827: 80,-34 - 2835: 78,-57 - 2836: 79,-57 - 2837: 80,-57 - 3030: -30,-8 - 3031: -29,-8 - 3032: -28,-8 - 3033: -27,-8 - 3196: -2,43 - 3197: -1,43 - 3198: 0,43 - 3223: 27,41 - 3385: 0,47 - 3386: -1,47 - 3387: -2,47 - 3893: -6,68 - 3894: -4,68 - 3895: -2,68 - 3896: 2,68 - 4339: 9,-37 - 4433: 12,-41 - 4701: -34,41 - 4702: -34,43 - 4708: -34,42 - 5074: 14,-59 - 5190: 49,-30 - 5191: 49,-35 - 7841: 35,-13 - 7889: 64,-30 + 140: -1,35 + 141: 0,35 + 1000: -2,35 + 1227: 38,36 + 1228: 39,36 + 1229: 40,36 + 2197: -38,-29 + 2198: -37,-29 + 2199: -36,-29 + 2200: -36,-25 + 2201: -37,-25 + 2202: -38,-25 + 2217: -34,-29 + 2218: -33,-29 + 2219: -32,-29 + 2220: -32,-25 + 2221: -33,-25 + 2222: -34,-25 + 2231: -29,-24 + 2232: -30,-24 + 2254: -40,-25 + 2258: -41,-25 + 2351: -39,-25 + 2352: -35,-25 + 2353: -35,-29 + 2358: -19,-17 + 2359: 11,-4 + 2360: 12,-4 + 2575: 13,-4 + 2641: 78,-34 + 2642: 79,-34 + 2643: 80,-34 + 2651: 78,-57 + 2652: 79,-57 + 2653: 80,-57 + 2846: -30,-8 + 2847: -29,-8 + 2848: -28,-8 + 2849: -27,-8 + 3002: -2,43 + 3003: -1,43 + 3004: 0,43 + 3026: 27,41 + 3187: 0,47 + 3188: -1,47 + 3189: -2,47 + 3683: -6,68 + 3684: -4,68 + 3685: -2,68 + 3686: 2,68 + 4093: 9,-37 + 4184: 12,-41 + 4431: -34,41 + 4432: -34,43 + 4435: -34,42 + 4793: 14,-59 + 4891: 49,-30 + 4892: 49,-35 + 7464: 35,-13 + 7512: 64,-30 + 7687: 38,4 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineW decals: - 1333: 33,66 - 1343: 32,66 - 1347: 34,66 + 1262: 33,66 + 1272: 32,66 + 1276: 34,66 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 2566: -14,32 - 3564: -18,-36 - 3577: -28,-36 - 3648: -34,-32 - 5162: -18,30 - 6362: -5,47 - 6363: -5,43 - 6385: -5,33 - 6400: -4,34 - 6472: -10,43 - 6643: 60,5 - 6647: 17,19 - 6867: -17,19 - 6884: -16,16 - 7653: 28,-24 + 3356: -18,-36 + 3369: -28,-36 + 3440: -34,-32 + 6018: -5,47 + 6019: -5,43 + 6041: -5,33 + 6056: -4,34 + 6128: -10,43 + 6297: 60,5 + 6301: 17,19 + 6521: -17,19 + 6538: -16,16 + 7276: 28,-24 + 7881: -19,32 + 7889: -16,32 + 7926: -14,27 + 7931: -16,27 + 7938: -17,44 + 7951: -18,30 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 2661: -23,32 - 2678: -19,41 - 3559: -23,-36 - 3580: -32,-36 - 3643: -39,-32 - 4212: -35,53 - 4587: -19,33 - 5172: -22,30 - 6360: -9,47 - 6361: -9,43 - 6384: -7,33 - 6396: -8,34 - 6481: -12,32 - 6636: 56,5 - 6649: 13,19 - 6866: -19,19 - 6879: -19,16 - 7652: 24,-24 + 2479: -23,32 + 3351: -23,-36 + 3372: -32,-36 + 3435: -39,-32 + 3975: -35,53 + 6016: -9,47 + 6017: -9,43 + 6040: -7,33 + 6052: -8,34 + 6137: -12,32 + 6290: 56,5 + 6303: 13,19 + 6520: -19,19 + 6533: -19,16 + 7275: 24,-24 + 7888: -17,32 + 7932: -15,27 + 7939: -19,44 + 7950: -22,30 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 3370: -28,-39 + 3422: -36,-37 + 3427: -37,-39 + 3441: -34,-36 + 6020: -5,45 + 6021: -5,41 + 6042: -5,30 + 6057: -4,29 + 6298: 60,4 + 6302: 17,18 + 6528: -17,17 + 6537: -16,15 + 7277: 28,-25 + 7880: -14,25 + 7919: -14,29 + 7935: -16,26 + 7936: -17,25 + 7943: -17,41 + 7952: -18,27 - node: + zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 3578: -28,-39 - 3630: -36,-37 - 3635: -37,-39 - 3649: -34,-36 - 4214: -33,49 - 5165: -18,27 - 6364: -5,45 - 6365: -5,41 - 6386: -5,30 - 6401: -4,29 - 6644: 60,4 - 6648: 17,18 - 6874: -17,17 - 6883: -16,15 - 7654: 28,-25 + 9360: -33,49 + 9361: -33,51 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 2668: -23,25 - 3579: -32,-39 - 3636: -38,-39 - 3637: -39,-38 - 4213: -35,49 - 5169: -22,27 - 6366: -9,41 - 6367: -9,45 - 6387: -7,30 - 6402: -8,29 - 6482: -12,31 - 6635: 56,4 - 6650: 13,18 - 6880: -19,15 - 7655: 24,-25 + 2485: -23,25 + 3371: -32,-39 + 3428: -38,-39 + 3429: -39,-38 + 6022: -9,41 + 6023: -9,45 + 6043: -7,30 + 6058: -8,29 + 6138: -12,31 + 6289: 56,4 + 6304: 13,18 + 6534: -19,15 + 7278: 24,-25 + 7934: -15,25 + 7947: -19,41 + 7953: -22,27 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 1373: 22,34 + 1302: 22,34 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 9363: -35,51 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE decals: - 5178: -18,32 - 6440: -4,35 - 6480: -5,39 + 6096: -4,35 + 6136: -5,39 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 4012: -25,60 - 4013: -20,60 - 6651: 14,20 - 7647: 27,-23 + 3800: -25,60 + 3801: -20,60 + 6305: 14,20 + 7270: 27,-23 + 7887: -14,32 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 6640: 58,3 + 6294: 58,3 - node: color: '#FFFFFFFF' id: WoodTrimThinEndW decals: - 5176: -20,32 - 6465: -12,39 - 6474: -12,43 - 6865: -20,17 - 6872: -20,17 + 6121: -12,39 + 6130: -12,43 + 6519: -20,17 + 6526: -20,17 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 3653: -34,-33 - 3995: -27,55 - 3996: -22,55 - 4021: -20,59 - 4022: -25,59 - 6445: -9,32 - 6446: -8,35 - 6468: -10,39 - 6491: -11,35 - 6653: 14,19 - 6864: -17,16 - 7648: 27,-24 + 3445: -34,-33 + 3783: -27,55 + 3784: -22,55 + 3809: -20,59 + 3810: -25,59 + 6101: -9,32 + 6102: -8,35 + 6124: -10,39 + 6147: -11,35 + 6307: 14,19 + 6518: -17,16 + 7271: 27,-24 + 7885: -16,31 + 7925: -17,27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 2604: -19,32 - 3655: -39,-35 - 4005: -18,55 - 4006: -23,55 - 4020: -25,59 - 4023: -20,59 - 6411: -8,32 - 6419: -10,32 - 6447: -8,35 - 6467: -10,39 - 6652: 14,19 - 6871: -19,17 - 7649: 27,-24 + 3447: -39,-35 + 3793: -18,55 + 3794: -23,55 + 3808: -25,59 + 3811: -20,59 + 6067: -8,32 + 6075: -10,32 + 6103: -8,35 + 6123: -10,39 + 6306: 14,19 + 6525: -19,17 + 7272: 27,-24 + 7882: -17,31 + 7886: -14,31 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 3631: -37,-37 - 3632: -36,-36 - 3652: -34,-33 - 4000: -22,59 - 4001: -27,59 - 6414: -11,31 - 6431: -9,35 - 6454: -11,39 - 6455: -8,39 - 6642: 58,4 + 3423: -37,-37 + 3424: -36,-36 + 3444: -34,-33 + 3788: -22,59 + 3789: -27,59 + 6070: -11,31 + 6087: -9,35 + 6110: -11,39 + 6111: -8,39 + 6296: 58,4 + 7924: -17,29 + 7937: -17,26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3638: -38,-38 - 3654: -39,-35 - 4002: -23,59 - 4003: -18,59 - 6410: -8,31 - 6422: -10,35 - 6428: -11,39 - 6456: -8,39 - 6476: -10,43 - 6483: -11,31 - 6641: 58,4 + 3430: -38,-38 + 3446: -39,-35 + 3790: -23,59 + 3791: -18,59 + 6066: -8,31 + 6078: -10,35 + 6084: -11,39 + 6112: -8,39 + 6132: -10,43 + 6139: -11,31 + 6295: 58,4 + - node: + angle: -0.4014257279586958 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 7860: 28.756136,-40.880943 + 7861: 24.578323,-37.576954 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 2408: -14,26 + 2409: -14,30 + 2410: -14,31 + 3379: -28,-38 + 3380: -28,-37 + 3425: -37,-38 + 3442: -34,-35 + 3443: -34,-34 + 3780: -27,58 + 3781: -27,57 + 3782: -27,56 + 3785: -22,58 + 3786: -22,57 + 3787: -22,56 + 3983: -33,52 + 6030: -5,46 + 6031: -5,42 + 6044: -5,31 + 6045: -5,32 + 6062: -4,30 + 6063: -4,31 + 6064: -4,32 + 6065: -4,33 + 6071: -11,30 + 6072: -11,29 + 6073: -11,28 + 6085: -9,33 + 6086: -9,34 + 6088: -11,38 + 6089: -11,37 + 6090: -11,36 + 6104: -8,36 + 6105: -8,37 + 6106: -8,38 + 6125: -10,40 + 6126: -10,41 + 6127: -10,42 + 6143: -9,32 + 6144: -9,31 + 6516: -17,17 + 6540: -17,18 + 7923: -17,28 + 7941: -17,43 + 7942: -17,42 + 7954: -18,28 + 7955: -18,29 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 9359: -33,50 - node: + angle: 1.117010721276371 rad color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2561: -14,26 - 2562: -14,27 - 2563: -14,28 - 2564: -14,30 - 2565: -14,31 - 2603: -14,33 - 3490: -48,-1 - 3491: -48,0 - 3492: -48,1 - 3493: -37,-1 - 3494: -37,0 - 3495: -37,1 - 3587: -28,-38 - 3588: -28,-37 - 3633: -37,-38 - 3650: -34,-35 - 3651: -34,-34 - 3992: -27,58 - 3993: -27,57 - 3994: -27,56 - 3997: -22,58 - 3998: -22,57 - 3999: -22,56 - 4218: -33,50 - 4219: -33,51 - 4220: -33,52 - 4725: -14,37 - 4726: -14,38 - 5163: -18,29 - 5164: -18,28 - 6374: -5,46 - 6375: -5,42 - 6388: -5,31 - 6389: -5,32 - 6406: -4,30 - 6407: -4,31 - 6408: -4,32 - 6409: -4,33 - 6415: -11,30 - 6416: -11,29 - 6417: -11,28 - 6429: -9,33 - 6430: -9,34 - 6432: -11,38 - 6433: -11,37 - 6434: -11,36 - 6448: -8,36 - 6449: -8,37 - 6450: -8,38 - 6469: -10,40 - 6470: -10,41 - 6471: -10,42 - 6487: -9,32 - 6488: -9,31 - 6862: -17,17 - 6886: -17,18 + 7859: 28.83426,-41.11532 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2567: -15,32 - 2568: -16,32 - 2569: -17,32 - 2570: -18,32 - 2600: -19,32 - 2659: -21,32 - 2660: -22,32 - 2684: -18,41 - 2686: -17,41 - 3560: -22,-36 - 3561: -21,-36 - 3562: -20,-36 - 3563: -19,-36 - 3581: -31,-36 - 3582: -30,-36 - 3583: -29,-36 - 3644: -38,-32 - 3645: -37,-32 - 3646: -36,-32 - 3647: -35,-32 - 3980: -26,55 - 3981: -25,55 - 3982: -24,55 - 3983: -21,55 - 3984: -20,55 - 3985: -19,55 - 4010: -27,59 - 4011: -26,59 - 4014: -24,59 - 4015: -23,59 - 4016: -22,59 - 4017: -21,59 - 4018: -19,59 - 4019: -18,59 - 4217: -34,53 - 4588: -18,33 - 4589: -17,33 - 4590: -16,33 - 5173: -21,30 - 5174: -20,30 - 5175: -19,30 - 5177: -19,32 - 6368: -8,47 - 6369: -7,47 - 6370: -6,47 - 6371: -8,43 - 6372: -7,43 - 6373: -6,43 - 6390: -6,33 - 6397: -7,34 - 6398: -6,34 - 6399: -5,34 - 6418: -11,32 - 6435: -10,35 - 6436: -9,35 - 6437: -7,35 - 6438: -6,35 - 6439: -5,35 - 6461: -9,39 - 6462: -8,39 - 6463: -7,39 - 6464: -6,39 - 6466: -11,39 - 6473: -11,43 - 6637: 57,5 - 6638: 58,5 - 6645: 59,5 - 6654: 16,19 - 6655: 15,19 - 6863: -16,16 - 6868: -18,19 - 6875: -19,16 - 6876: -18,16 - 6877: -17,16 - 6878: -16,16 - 6885: -17,16 - 7650: 26,-24 - 7651: 25,-24 + 2477: -21,32 + 2478: -22,32 + 2500: -18,41 + 2502: -17,41 + 3352: -22,-36 + 3353: -21,-36 + 3354: -20,-36 + 3355: -19,-36 + 3373: -31,-36 + 3374: -30,-36 + 3375: -29,-36 + 3436: -38,-32 + 3437: -37,-32 + 3438: -36,-32 + 3439: -35,-32 + 3768: -26,55 + 3769: -25,55 + 3770: -24,55 + 3771: -21,55 + 3772: -20,55 + 3773: -19,55 + 3798: -27,59 + 3799: -26,59 + 3802: -24,59 + 3803: -23,59 + 3804: -22,59 + 3805: -21,59 + 3806: -19,59 + 3807: -18,59 + 3980: -34,53 + 6024: -8,47 + 6025: -7,47 + 6026: -6,47 + 6027: -8,43 + 6028: -7,43 + 6029: -6,43 + 6046: -6,33 + 6053: -7,34 + 6054: -6,34 + 6055: -5,34 + 6074: -11,32 + 6091: -10,35 + 6092: -9,35 + 6093: -7,35 + 6094: -6,35 + 6095: -5,35 + 6117: -9,39 + 6118: -8,39 + 6119: -7,39 + 6120: -6,39 + 6122: -11,39 + 6129: -11,43 + 6291: 57,5 + 6292: 58,5 + 6299: 59,5 + 6308: 16,19 + 6309: 15,19 + 6517: -16,16 + 6522: -18,19 + 6529: -19,16 + 6530: -18,16 + 6531: -17,16 + 6532: -16,16 + 6539: -17,16 + 7273: 26,-24 + 7274: 25,-24 + 7883: -18,31 + 7884: -15,31 + 7940: -18,44 + 7956: -19,30 + 7957: -20,30 + 7958: -21,30 + - node: + angle: -0.8901179185171081 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 7862: 27.394608,-38.75558 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 2558: -18,25 - 2559: -17,25 - 2560: -16,25 - 2573: -19,25 - 2669: -22,25 - 2670: -21,25 - 2671: -20,25 - 3584: -31,-39 - 3585: -30,-39 - 3586: -29,-39 - 3634: -35,-36 - 3972: -19,59 - 3973: -20,59 - 3974: -21,59 - 3975: -26,59 - 3976: -25,59 - 3977: -24,59 - 4024: -21,66 - 5166: -19,27 - 5167: -20,27 - 5168: -21,27 - 5179: -19,32 - 6376: -6,45 - 6377: -7,45 - 6378: -8,45 - 6379: -6,41 - 6380: -7,41 - 6381: -8,41 - 6393: -6,30 - 6403: -7,29 - 6404: -6,29 - 6405: -5,29 - 6412: -9,31 - 6413: -10,31 - 6423: -11,35 - 6441: -5,35 - 6442: -6,35 - 6443: -7,35 - 6444: -8,35 - 6457: -10,39 - 6458: -9,39 - 6459: -7,39 - 6460: -6,39 - 6475: -11,43 - 6639: 57,4 - 6646: 59,4 - 6656: 14,18 - 6657: 15,18 - 6658: 16,18 - 6870: -19,17 - 6873: -18,17 - 6881: -18,15 - 6882: -17,15 - 7656: 25,-25 - 7657: 26,-25 - 7658: 27,-25 + 2406: -18,25 + 2407: -16,25 + 2413: -19,25 + 2486: -22,25 + 2487: -21,25 + 2488: -20,25 + 3376: -31,-39 + 3377: -30,-39 + 3378: -29,-39 + 3426: -35,-36 + 3760: -19,59 + 3761: -20,59 + 3762: -21,59 + 3763: -26,59 + 3764: -25,59 + 3765: -24,59 + 3812: -21,66 + 6032: -6,45 + 6033: -7,45 + 6034: -8,45 + 6035: -6,41 + 6036: -7,41 + 6037: -8,41 + 6049: -6,30 + 6059: -7,29 + 6060: -6,29 + 6061: -5,29 + 6068: -9,31 + 6069: -10,31 + 6079: -11,35 + 6097: -5,35 + 6098: -6,35 + 6099: -7,35 + 6100: -8,35 + 6113: -10,39 + 6114: -9,39 + 6115: -7,39 + 6116: -6,39 + 6131: -11,43 + 6293: 57,4 + 6300: 59,4 + 6310: 14,18 + 6311: 15,18 + 6312: 16,18 + 6524: -19,17 + 6527: -18,17 + 6535: -18,15 + 6536: -17,15 + 7279: 25,-25 + 7280: 26,-25 + 7281: 27,-25 + 7921: -15,29 + 7922: -16,29 + 7944: -18,41 + 7959: -21,27 + 7960: -20,27 + 7961: -19,27 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1369: 23,34 - 1370: 24,34 + 1298: 23,34 + 1299: 24,34 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 9362: -34,51 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 2662: -23,31 - 2663: -23,30 - 2664: -23,29 - 2665: -23,28 - 2666: -23,27 - 2667: -23,26 - 2682: -19,40 - 3487: -47,0 - 3488: -47,1 - 3489: -47,-1 - 3496: -36,0 - 3557: -23,-37 - 3558: -23,-38 - 3589: -32,-38 - 3590: -32,-37 - 3639: -39,-37 - 3640: -39,-36 - 3641: -39,-34 - 3642: -39,-33 - 3986: -18,58 - 3987: -18,57 - 3988: -18,56 - 3989: -23,58 - 3990: -23,57 - 3991: -23,56 - 4215: -35,50 - 4216: -35,51 - 4592: -15,34 - 5170: -22,28 - 5171: -22,29 - 5874: -36,1 - 5927: -36,-1 - 6382: -9,42 - 6383: -9,46 - 6391: -7,31 - 6392: -7,32 - 6394: -8,33 - 6395: -8,30 - 6420: -10,33 - 6421: -10,34 - 6424: -11,35 - 6425: -11,36 - 6426: -11,37 - 6427: -11,38 - 6451: -8,36 - 6452: -8,37 - 6453: -8,38 - 6477: -10,42 - 6478: -10,41 - 6479: -10,40 - 6484: -11,30 - 6485: -11,29 - 6486: -11,28 - 6489: -8,31 - 6490: -8,32 - 6869: -19,18 + 2480: -23,31 + 2481: -23,29 + 2482: -23,28 + 2483: -23,27 + 2484: -23,26 + 2498: -19,40 + 3349: -23,-37 + 3350: -23,-38 + 3381: -32,-38 + 3382: -32,-37 + 3431: -39,-37 + 3432: -39,-36 + 3433: -39,-34 + 3434: -39,-33 + 3774: -18,58 + 3775: -18,57 + 3776: -18,56 + 3777: -23,58 + 3778: -23,57 + 3779: -23,56 + 6038: -9,42 + 6039: -9,46 + 6047: -7,31 + 6048: -7,32 + 6050: -8,33 + 6051: -8,30 + 6076: -10,33 + 6077: -10,34 + 6080: -11,35 + 6081: -11,36 + 6082: -11,37 + 6083: -11,38 + 6107: -8,36 + 6108: -8,37 + 6109: -8,38 + 6133: -10,42 + 6134: -10,41 + 6135: -10,40 + 6140: -11,30 + 6141: -11,29 + 6142: -11,28 + 6145: -8,31 + 6146: -8,32 + 6523: -19,18 + 7933: -15,26 + 7945: -19,43 + 7946: -19,42 + 7948: -23,30 + 7962: -22,28 + 7963: -22,29 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 1371: 22,36 - 1372: 22,35 + 1300: 22,36 + 1301: 22,35 - node: color: '#FFFFFFFF' id: amyjon decals: - 7829: 44.811615,-12.059439 + 7452: 44.811615,-12.059439 - node: color: '#FFFFFFFF' id: body decals: - 2373: -39.332672,42.061283 - 4732: 76,3 - 4747: 61,-53 + 2226: -39.332672,42.061283 + 4455: 76,3 + 4470: 61,-53 + 7863: 26.560556,-41.22584 - node: color: '#FFFFFFFF' id: bushsnowa1 decals: - 4595: -32.995613,38.966377 + 4341: -32.995613,38.966377 - node: color: '#FFFFFFFF' id: corgi decals: - 4186: -48.14972,51.089493 + 3949: -48.14972,51.089493 - node: color: '#FFFFFFFF' id: engie decals: - 639: 25.998928,-35.624195 + 582: 25.998928,-35.624195 - node: color: '#FFFFFFFF' id: f decals: - 3497: -17,-20 + 3289: -17,-20 - node: color: '#FF0000FF' id: fireaxe decals: - 4188: -47.71468,51.388058 + 3951: -47.71468,51.388058 - node: color: '#FFFFFFFF' id: fireaxe decals: - 4187: -47.761555,51.325493 + 3950: -47.761555,51.325493 - node: color: '#D4D4D428' id: footprint decals: - 4195: -46.16273,45.8169 - 4196: -45.850227,46.046303 - 4197: -46.259953,46.40779 - 4198: -45.357174,46.254856 - 4199: -45.023838,46.108868 - 4200: -45.405785,45.809948 - 4201: -46.02373,48.20737 - 4202: -45.107063,48.68704 - 4203: -46.093174,49.22232 - 4204: -45.48901,48.700943 - 4205: -45.2945,50.296448 - 4206: -45.2945,50.296448 - 4207: -45.301445,50.296448 - 4208: -45.301445,50.296448 - 4209: -44.884453,50.303364 - 4210: -44.884453,50.303364 - 4211: -44.8914,50.303364 + 3958: -46.16273,45.8169 + 3959: -45.850227,46.046303 + 3960: -46.259953,46.40779 + 3961: -45.357174,46.254856 + 3962: -45.023838,46.108868 + 3963: -45.405785,45.809948 + 3964: -46.02373,48.20737 + 3965: -45.107063,48.68704 + 3966: -46.093174,49.22232 + 3967: -45.48901,48.700943 + 3968: -45.2945,50.296448 + 3969: -45.2945,50.296448 + 3970: -45.301445,50.296448 + 3971: -45.301445,50.296448 + 3972: -44.884453,50.303364 + 3973: -44.884453,50.303364 + 3974: -44.8914,50.303364 - node: color: '#446326FF' id: grasssnow decals: - 4791: 3.4298096,-18.018404 - 4792: 4.0391846,-17.455904 - 4793: 4.6798096,-17.862154 - 4794: 5.3516846,-18.268404 - 4795: 5.992309,-18.659029 - 4796: 2.9610596,-16.034029 - 4797: 3.8360596,-16.018406 - 4798: 4.1016846,-16.643406 - 4799: 4.9298096,-17.174656 - 4800: 5.757934,-17.674654 - 4801: 5.9298096,-16.549656 - 4802: 5.3360596,-16.34653 - 4803: 4.7266846,-16.06528 - 4804: 5.695434,-15.909029 - 4805: 5.664184,-17.190279 - 4806: 6.3360596,-17.81528 - 4807: 2.5079346,-15.90903 - 4808: 4.6954346,-17.00278 - 4809: 6.367309,-15.737154 - 4810: 6.726684,-16.549656 - 4811: 5.1798096,-15.40903 - 4812: 3.586059,-15.50278 - 4817: 3.231491,-16.828842 - 4818: 3.5283608,-17.226116 + 4514: 3.4298096,-18.018404 + 4515: 4.0391846,-17.455904 + 4516: 4.6798096,-17.862154 + 4517: 5.3516846,-18.268404 + 4518: 5.992309,-18.659029 + 4519: 2.9610596,-16.034029 + 4520: 3.8360596,-16.018406 + 4521: 4.1016846,-16.643406 + 4522: 4.9298096,-17.174656 + 4523: 5.757934,-17.674654 + 4524: 5.9298096,-16.549656 + 4525: 5.3360596,-16.34653 + 4526: 4.7266846,-16.06528 + 4527: 5.695434,-15.909029 + 4528: 5.664184,-17.190279 + 4529: 6.3360596,-17.81528 + 4530: 2.5079346,-15.90903 + 4531: 4.6954346,-17.00278 + 4532: 6.367309,-15.737154 + 4533: 6.726684,-16.549656 + 4534: 5.1798096,-15.40903 + 4535: 3.586059,-15.50278 + 4540: 3.231491,-16.828842 + 4541: 3.5283608,-17.226116 - node: color: '#FFFFFFFF' id: grasssnow decals: - 4939: -7.9828167,19.415468 - 4940: -7.2796926,19.290468 - 4941: -6.3109417,18.790468 - 4942: -5.560942,18.384218 - 4943: -5.154692,17.696718 - 4944: -4.4984426,17.087343 - 4945: -5.498442,16.962343 - 4946: -6.029692,17.602968 - 4947: -8.201567,18.587345 - 4948: -7.857817,17.727968 - 4949: -6.295317,16.91547 - 4950: -7.264067,17.087343 - 4951: -8.264067,17.696718 - 4952: -8.185942,16.884218 - 4953: -7.4046793,18.351564 - 4954: -6.9046793,17.99219 + 4662: -7.9828167,19.415468 + 4663: -7.2796926,19.290468 + 4664: -6.3109417,18.790468 + 4665: -5.560942,18.384218 + 4666: -5.154692,17.696718 + 4667: -4.4984426,17.087343 + 4668: -5.498442,16.962343 + 4669: -6.029692,17.602968 + 4670: -8.201567,18.587345 + 4671: -7.857817,17.727968 + 4672: -6.295317,16.91547 + 4673: -7.264067,17.087343 + 4674: -8.264067,17.696718 + 4675: -8.185942,16.884218 + 4676: -7.4046793,18.351564 + 4677: -6.9046793,17.99219 - node: angle: 1.5707963267948966 rad color: '#4A9C6F93' id: grasssnow02 decals: - 5254: 33.047424,-31.185015 + 4955: 33.047424,-31.185015 - node: angle: 1.5707963267948966 rad color: '#4A9C6F93' id: grasssnow03 decals: - 5255: 41.313053,-32.794388 + 4956: 41.313053,-32.794388 - node: angle: 1.5707963267948966 rad color: '#4A9C6F93' id: grasssnow05 decals: - 5253: 39.17243,-29.935015 + 4954: 39.17243,-29.935015 - node: color: '#69D71F65' id: grasssnow05 decals: - 1144: 32,-26 - 1145: 32,-27 - 1146: 40,-28 - 1147: 41,-25 - 1148: 33,-25 - 1149: 39,-28 - 1150: 36,-27 + 1077: 32,-26 + 1078: 32,-27 + 1079: 40,-28 + 1080: 41,-25 + 1081: 33,-25 + 1082: 39,-28 + 1083: 36,-27 - node: angle: 1.5707963267948966 rad color: '#85C71F93' id: grasssnow05 decals: - 1172: 41,-28 - 1173: 42,-26 + 1104: 41,-28 + 1105: 42,-26 - node: angle: 1.5707963267948966 rad color: '#4A9C6F93' id: grasssnow07 decals: - 5256: 37.500553,-31.07564 + 4957: 37.500553,-31.07564 - node: color: '#FFFFFFFF' id: grasssnow09 decals: - 4770: 72,-35 + 4493: 72,-35 - node: color: '#EFB34196' id: guy decals: - 3592: -20.97501,-34.140553 + 3384: -20.97501,-34.140553 - node: color: '#760000B7' id: line decals: - 3065: 34.82156,-66.43533 + 2881: 34.82156,-66.43533 - node: color: '#760000FF' id: n decals: - 3063: 35.09548,-65.45207 + 2879: 35.09548,-65.45207 - node: color: '#760000FF' id: o decals: - 3064: 35.486103,-65.530205 + 2880: 35.486103,-65.530205 - node: color: '#FF0000FF' id: p decals: - 3500: -47.60139,-22.82674 + 3292: -47.60139,-22.82674 - node: color: '#FFFFFFFF' id: pawprint decals: - 3485: -87.073845,-20.354267 - 3486: -87.99572,-20.323017 + 3287: -87.073845,-20.354267 + 3288: -87.99572,-20.323017 - node: color: '#FF0000FF' id: r decals: - 3498: -48.210766,-22.88924 + 3290: -48.210766,-22.88924 - node: color: '#52B4E996' id: revolution decals: - 3594: -16.399157,-36.618565 + 3386: -16.399157,-36.618565 - node: color: '#B02E26FF' id: rune1 decals: - 2239: -34,-76 + 2092: -34,-76 - node: color: '#B02E26FF' id: rune3 decals: - 2244: -32,-76 + 2097: -32,-76 - node: color: '#B02E26FF' id: rune5 decals: - 2238: -34,-78 + 2091: -34,-78 - node: color: '#B02E26FF' id: rune6 decals: - 2245: -32,-78 + 2098: -32,-78 - node: color: '#FF0F09FF' id: s decals: - 4182: -99.96925,-20.03051 + 3945: -99.96925,-20.03051 - node: cleanable: True color: '#FFFFFFFF' id: safe decals: - 5283: 13.004302,-69.61527 + 4984: 13.004302,-69.61527 - node: color: '#FF0F09FF' id: scroll decals: - 4181: -100.000496,-19.96801 + 3944: -100.000496,-19.96801 - node: color: '#FF0000FF' id: shortline decals: - 3499: -47.835766,-22.88924 + 3291: -47.835766,-22.88924 - node: color: '#2E0000FF' id: skull decals: - 2229: -30.992306,49.94457 + 2082: -30.992306,49.94457 - node: cleanable: True color: '#FFFFFFFF' id: skull decals: - 5280: 13,-69 + 4981: 13,-69 - node: color: '#7600008B' id: slash decals: - 3066: 35.235664,-66.309746 + 2882: 35.235664,-66.309746 - node: color: '#5F0000FF' id: smallbrush decals: - 3725: 99.633415,52.75865 - 3726: 99.727165,52.779507 - 3727: 99.83133,52.92549 - 3728: 99.84175,53.092335 - 3729: 99.820915,53.102757 - 3730: 99.748,53.09233 - 3731: 99.695915,53.165325 - 3732: 99.70633,53.248745 - 3733: 99.95633,53.290455 - 3734: 99.98759,53.259174 - 3735: 99.945915,52.93592 - 3736: 99.873,52.852497 - 3737: 99.758415,52.758648 - 3738: 99.820915,52.685658 - 3739: 99.92508,52.675232 - 3740: 100.008415,52.737797 - 3741: 100.05008,52.8525 - 3742: 100.14383,53.238316 - 3743: 100.258415,53.28003 - 3744: 100.26883,53.28003 - 3745: 99.883415,53.269604 - 3746: 99.727165,53.290455 - 3747: 99.62299,53.290455 - 3748: 99.68549,52.696087 - 3749: 99.570915,52.518818 - 3750: 99.61259,52.706512 - 3751: 100.21675,52.998486 - 3752: 100.36259,53.040195 - 3753: 100.477165,53.10276 - 3754: 100.49799,53.207035 - 3755: 100.51883,53.28003 - 3756: 99.727165,52.487537 - 3757: 99.695915,52.39369 - 3758: 99.67509,52.237278 - 3759: 99.664665,52.15386 - 3760: 99.664665,52.11215 - 3761: 99.664665,52.080868 - 3762: 99.64383,51.955738 - 3763: 99.64383,51.94531 - 3764: 100.758415,53.311314 - 3765: 100.883415,53.32174 - 3766: 100.883415,53.32174 - 3767: 100.92508,53.32174 + 3517: 99.633415,52.75865 + 3518: 99.727165,52.779507 + 3519: 99.83133,52.92549 + 3520: 99.84175,53.092335 + 3521: 99.820915,53.102757 + 3522: 99.748,53.09233 + 3523: 99.695915,53.165325 + 3524: 99.70633,53.248745 + 3525: 99.95633,53.290455 + 3526: 99.98759,53.259174 + 3527: 99.945915,52.93592 + 3528: 99.873,52.852497 + 3529: 99.758415,52.758648 + 3530: 99.820915,52.685658 + 3531: 99.92508,52.675232 + 3532: 100.008415,52.737797 + 3533: 100.05008,52.8525 + 3534: 100.14383,53.238316 + 3535: 100.258415,53.28003 + 3536: 100.26883,53.28003 + 3537: 99.883415,53.269604 + 3538: 99.727165,53.290455 + 3539: 99.62299,53.290455 + 3540: 99.68549,52.696087 + 3541: 99.570915,52.518818 + 3542: 99.61259,52.706512 + 3543: 100.21675,52.998486 + 3544: 100.36259,53.040195 + 3545: 100.477165,53.10276 + 3546: 100.49799,53.207035 + 3547: 100.51883,53.28003 + 3548: 99.727165,52.487537 + 3549: 99.695915,52.39369 + 3550: 99.67509,52.237278 + 3551: 99.664665,52.15386 + 3552: 99.664665,52.11215 + 3553: 99.664665,52.080868 + 3554: 99.64383,51.955738 + 3555: 99.64383,51.94531 + 3556: 100.758415,53.311314 + 3557: 100.883415,53.32174 + 3558: 100.883415,53.32174 + 3559: 100.92508,53.32174 - node: color: '#7F0000FF' id: smallbrush decals: - 3718: 99.6855,52.612667 - 3719: 99.9355,52.612667 - 3720: 100.01883,52.643948 - 3721: 100.09174,52.779507 - 3722: 100.11259,53.00891 - 3723: 100.070915,53.134045 - 3724: 99.945915,53.14447 + 3510: 99.6855,52.612667 + 3511: 99.9355,52.612667 + 3512: 100.01883,52.643948 + 3513: 100.09174,52.779507 + 3514: 100.11259,53.00891 + 3515: 100.070915,53.134045 + 3516: 99.945915,53.14447 + - node: + cleanable: True + color: '#DE3A3A2D' + id: smallbrush + decals: + 7767: -33.077763,-75.61801 + 7768: -32.984013,-75.69622 + 7769: -32.874638,-75.74314 + 7770: -32.718388,-75.57109 + 7771: -32.56214,-75.43032 + 7772: -32.265266,-75.32083 + 7773: -32.077766,-75.21135 + 7774: -32.077766,-75.08622 + 7775: -32.12464,-74.86723 + 7776: -32.234016,-74.773384 + 7777: -33.015266,-74.67954 + 7778: -33.296513,-74.789024 + 7779: -33.546513,-74.99236 + 7780: -33.640266,-75.18006 + 7781: -33.515263,-75.33647 + 7782: -33.374638,-75.43032 + 7783: -33.234013,-75.63366 - node: color: '#FF0000FF' id: smallbrush decals: - 4189: -48.136555,50.77805 - 4190: -48.30843,50.637276 - 4191: -47.79281,50.62163 - 4192: -48.105305,51.05959 + 3952: -48.136555,50.77805 + 3953: -48.30843,50.637276 + 3954: -47.79281,50.62163 + 3955: -48.105305,51.05959 - node: color: '#E2F000DB' id: space decals: - 4736: 73,-17 - 4737: 73,-15 - 4738: 73,5 - 4739: 73,3 + 4459: 73,-17 + 4460: 73,-15 + 4461: 73,5 + 4462: 73,3 - node: color: '#663C0DFF' id: splatter decals: - 4961: -8.271859,-27.063335 - 4962: -7.8910747,-26.907143 - 4963: -7.922324,-27.297768 + 4684: -8.271859,-27.063335 + 4685: -7.8910747,-26.907143 + 4686: -7.922324,-27.297768 + - node: + cleanable: True + color: '#69A5BF25' + id: splatter + decals: + 7683: 37.974743,2.6137083 + 7684: 37.974743,2.3168335 + 7685: 37.990368,3.0043333 - node: color: '#760000BD' id: splatter decals: - 3067: 34.313694,-65.55157 + 2883: 34.313694,-65.55157 - node: + cleanable: True + color: '#7613125E' + id: splatter + decals: + 8288: -32.729805,29.678759 + 8289: -33.167305,26.881884 + 8290: -32.823555,26.788136 + 8291: -32.96418,30.069384 + - node: + color: '#79150096' + id: splatter + decals: + 60: -23.775028,-59.21109 + 61: -18.453623,-60.774677 + 62: -25.537062,-68.65403 + 63: -33.897926,-68.04944 + 64: -20.60971,-65.46775 + 65: -16.64931,-60.426437 + 66: -20.341938,-59.372047 + 67: -24.145056,-59.666508 + 68: -23.22839,-60.010498 + 69: -16.341309,-63.83809 + - node: + cleanable: True color: '#79150096' id: splatter decals: - 65: -23.775028,-59.21109 - 66: -18.453623,-60.774677 - 67: -25.537062,-68.65403 - 68: -33.897926,-68.04944 - 69: -20.60971,-65.46775 - 70: -16.64931,-60.426437 - 71: -20.341938,-59.372047 - 72: -24.145056,-59.666508 - 73: -23.22839,-60.010498 - 74: -16.341309,-63.83809 + 7748: -32.671513,-75.00801 + 7749: -32.87464,-75.25826 + 7750: -33.140266,-75.24263 + 7751: -33.234013,-75.008 + 7752: -33.109013,-74.929794 + 7753: -32.718388,-75.10185 + 7754: -32.640263,-75.14877 + 7755: -32.452766,-75.14878 + - node: + cleanable: True + color: '#7F13139B' + id: splatter + decals: + 7681: 38.068493,2.6449583 + 7682: 37.693493,2.5043333 - node: cleanable: True color: '#951710B7' id: splatter decals: - 3127: 43,-68 + 2943: 43,-68 + - node: + cleanable: True + color: '#96DAFF28' + id: splatter + decals: + 7949: -14.363578,37.78473 - node: color: '#98030093' id: splatter decals: - 2374: -39.0983,41.20191 - 2375: -39.535797,42.530033 + 2227: -39.0983,41.20191 + 2228: -39.535797,42.530033 - node: color: '#9FED586A' id: splatter decals: - 4771: 62,-52 + 4494: 62,-52 + - node: + zIndex: 1 + color: '#A30000FF' + id: splatter + decals: + 7890: 26,-47 + 7891: 25.227493,-47.805183 + 7892: 25.008162,-48.163082 + 7893: 25.723875,-47.354923 + 7894: 25.412195,-47.26256 - node: color: '#A70600FF' id: splatter decals: - 57: 36.73477,-26.539776 - 58: 33.52572,-25.868069 + 52: 36.73477,-26.539776 + 53: 33.52572,-25.868069 - node: color: '#B02E26FF' id: splatter decals: - 2140: -43.468628,-55.096706 + 1993: -43.468628,-55.096706 - node: color: '#B32828FF' id: splatter decals: - 6593: 71.980576,-34.11477 - 6594: 72.40245,-33.849144 + 6247: 71.980576,-34.11477 + 6248: 72.40245,-33.849144 + - node: + cleanable: True + color: '#DE3A3A2D' + id: splatter + decals: + 7760: -33.030888,-75.14878 + 7761: -33.03089,-75.36776 + 7762: -32.874638,-75.28954 + 7763: -32.49964,-75.10185 + 7764: -32.234016,-75.07057 + 7765: -32.15589,-75.05493 + 7766: -32.390266,-74.99236 - node: color: '#DE3A3A2E' id: splatter decals: - 7642: -43.00264,-9.645187 - 7643: -43.22139,-9.707686 + 7265: -43.00264,-9.645187 + 7266: -43.22139,-9.707686 - node: color: '#DE3A3A50' id: splatter decals: - 7641: -43.25264,-9.473311 + 7264: -43.25264,-9.473311 + - node: + cleanable: True + color: '#DE3A3A96' + id: splatter + decals: + 7756: -32.90589,-75.22699 + 7757: -32.65589,-74.96108 + 7758: -32.546516,-74.96108 + 7759: -33.249638,-75.13314 - node: color: '#FFFFFFFF' id: splatter decals: - 616: 47,-13 - 617: 49,-13 - 618: 48,-14 + 559: 47,-13 + 560: 49,-13 + 561: 48,-14 - node: color: '#D381C996' id: stickman decals: - 3593: -28.673244,-37.649933 + 3385: -28.673244,-37.649933 + - node: + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#A30000FF' + id: thinline + decals: + 7895: 24.684937,-46.904667 + 7896: 23.749887,-46.858482 + 7897: 23.218872,-46.927757 + 7898: 23.09189,-47.2972 + 7899: 23.957676,-47.274105 + 7900: 24.604128,-47.354923 - node: color: '#FFFFFFFF' id: toilet decals: - 3591: -25.64341,-36.26569 + 3383: -25.64341,-36.26569 - node: cleanable: True color: '#FFFFFFFF' id: toolbox decals: - 5281: 12.191802,-68.84885 - 5282: 13.644927,-68.80192 + 4982: 12.191802,-68.84885 + 4983: 13.644927,-68.80192 - node: color: '#FFFFFFFF' id: u decals: - 3482: -88.05822,-19.916767 - 3483: -87.105095,-19.948017 + 3284: -88.05822,-19.916767 + 3285: -87.105095,-19.948017 - node: color: '#FFFFFFFF' id: w decals: - 3484: -87.636345,-19.99489 + 3286: -87.636345,-19.99489 - type: GridAtmosphere version: 2 data: @@ -13046,7 +14647,8 @@ entities: 6,3: 0: 65535 7,0: - 0: 65535 + 0: 61439 + 1: 4096 7,1: 0: 65535 7,2: @@ -13058,7 +14660,8 @@ entities: 8,1: 0: 65535 8,2: - 0: 65535 + 0: 57343 + 2: 8192 8,3: 0: 65535 9,0: @@ -13222,7 +14825,8 @@ entities: -8,-4: 0: 65535 -8,-3: - 0: 65535 + 0: 65471 + 3: 64 -7,-4: 0: 65535 -7,-3: @@ -13240,7 +14844,9 @@ entities: -5,-4: 0: 65535 -5,-3: - 0: 65535 + 0: 48127 + 1: 1024 + 4: 16384 -5,-2: 0: 65535 -5,-1: @@ -13356,7 +14962,8 @@ entities: 7,-5: 0: 65535 -8,-7: - 0: 65535 + 0: 65531 + 5: 4 -8,-6: 0: 65535 -8,-5: @@ -13364,7 +14971,9 @@ entities: -7,-7: 0: 65535 -7,-6: - 0: 65535 + 4: 1 + 0: 65532 + 1: 2 -7,-5: 0: 65535 -6,-7: @@ -13712,7 +15321,8 @@ entities: -11,-4: 0: 65535 -11,-3: - 0: 65535 + 0: 65533 + 2: 2 -11,-2: 0: 65535 -11,-1: @@ -13840,7 +15450,8 @@ entities: 5,-15: 0: 65535 5,-14: - 0: 65535 + 0: 65023 + 1: 512 5,-13: 0: 65535 6,-16: @@ -14115,10 +15726,10 @@ entities: 0: 65535 -8,6: 0: 61439 - 1: 4096 + 6: 4096 -8,7: 0: 65262 - 1: 273 + 6: 273 -7,4: 0: 65535 -7,5: @@ -14144,7 +15755,8 @@ entities: -5,7: 0: 65535 -8,8: - 0: 65535 + 0: 65471 + 1: 64 -8,9: 0: 65535 -7,8: @@ -14188,13 +15800,13 @@ entities: 13,7: 0: 65535 14,4: - 2: 1799 + 7: 1799 0: 63736 14,5: - 2: 1799 + 7: 1799 0: 63736 14,6: - 2: 1911 + 7: 1911 0: 63624 14,7: 0: 19711 @@ -14223,9 +15835,11 @@ entities: 14,8: 0: 65524 14,9: - 0: 65535 + 0: 65471 + 1: 64 14,10: - 0: 65535 + 0: 65531 + 1: 4 14,11: 0: 65535 15,8: @@ -14300,9 +15914,9 @@ entities: 0: 65535 -9,6: 0: 4095 - 1: 61440 + 6: 61440 -9,7: - 1: 4095 + 6: 4095 0: 61440 -10,8: 0: 65535 @@ -14751,7 +16365,8 @@ entities: -10,12: 0: 65535 -10,13: - 0: 65535 + 2: 1 + 0: 65534 -10,14: 0: 61439 -9,12: @@ -14826,7 +16441,7 @@ entities: 0: 65535 14,3: 0: 63743 - 2: 1792 + 7: 1792 15,3: 0: 65535 13,-4: @@ -14943,15 +16558,15 @@ entities: 0: 65471 15,15: 0: 32767 - 3: 32768 + 8: 32768 16,13: 0: 32767 - 3: 32768 + 8: 32768 16,14: 0: 65535 16,15: 0: 65503 - 3: 32 + 8: 32 10,16: 0: 65535 11,16: @@ -15091,7 +16706,8 @@ entities: -5,14: 0: 65535 2,14: - 0: 65535 + 0: 63487 + 1: 2048 3,14: 0: 65535 -4,14: @@ -15810,7 +17426,7 @@ entities: 0: 65535 17,14: 0: 65471 - 3: 64 + 8: 64 24,8: 0: 65535 24,9: @@ -15849,7 +17465,7 @@ entities: 0: 65535 23,9: 0: 65399 - 3: 136 + 8: 136 23,10: 0: 65535 23,11: @@ -15868,7 +17484,7 @@ entities: 0: 65535 24,12: 0: 57267 - 3: 8268 + 8: 8268 24,13: 0: 65535 24,5: @@ -15907,7 +17523,7 @@ entities: 0: 65535 25,10: 0: 65407 - 3: 128 + 8: 128 25,11: 0: 65535 26,9: @@ -15982,11 +17598,11 @@ entities: 0: 65523 20,14: 0: 30579 - 3: 34956 + 8: 34956 20,15: 0: 65535 21,14: - 3: 263 + 8: 263 0: 65272 21,15: 0: 65535 @@ -16000,12 +17616,12 @@ entities: 0: 65535 24,14: 0: 55807 - 3: 9728 + 8: 9728 24,15: 0: 5119 25,12: 0: 65407 - 3: 128 + 8: 128 25,13: 0: 65535 25,14: @@ -16014,10 +17630,10 @@ entities: 0: 9 26,12: 0: 32767 - 3: 32768 + 8: 32768 26,13: 0: 49151 - 3: 16384 + 8: 16384 26,14: 0: 8191 27,12: @@ -16396,6 +18012,81 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.710548 + - 89.19683 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824873 + - 82.1031 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -16456,8 +18147,8 @@ entities: localAnchorB: 2.5,-3 localAnchorA: 33.5,-67 referenceAngle: 3.1421463 - damping: 536.25226 - stiffness: 4813.3896 + damping: 536.2525 + stiffness: 4813.3916 docking703850: !type:WeldJoint bodyB: 35803 bodyA: 2 @@ -16465,8 +18156,8 @@ entities: localAnchorB: 0.49999997,-3 localAnchorA: 35.5,-67 referenceAngle: 3.1421463 - damping: 536.25226 - stiffness: 4813.3896 + damping: 536.2525 + stiffness: 4813.3916 docking563600: !type:WeldJoint bodyB: 44868 bodyA: 2 @@ -16474,8 +18165,8 @@ entities: localAnchorB: 1.5,-10 localAnchorA: -51,-44.5 referenceAngle: 1.5713501 - damping: 1533.7821 - stiffness: 13767.197 + damping: 1533.7836 + stiffness: 13767.21 docking565026: !type:WeldJoint bodyB: 32764 bodyA: 2 @@ -16483,8 +18174,8 @@ entities: localAnchorB: 0.49999997,-5 localAnchorA: -53,-30.5 referenceAngle: 1.5713501 - damping: 520.4867 - stiffness: 4671.878 + damping: 520.4869 + stiffness: 4671.8794 docking922625: !type:WeldJoint bodyB: 2 bodyA: 56108 @@ -16492,8 +18183,8 @@ entities: localAnchorB: 82,-1.5 localAnchorA: -0.5,-5 referenceAngle: 1.5702425 - damping: 951.0455 - stiffness: 8536.565 + damping: 951.0461 + stiffness: 8536.569 docking922623: !type:WeldJoint bodyB: 2 bodyA: 56108 @@ -16501,9 +18192,24 @@ entities: localAnchorB: 82,-3.5 localAnchorA: 1.5,-5 referenceAngle: 1.5702425 - damping: 951.0455 - stiffness: 8536.565 + damping: 951.0461 + stiffness: 8536.569 - type: NavMap + - uid: 19633 + components: + - type: MetaData + - type: Transform + parent: 19556 + - type: Solution + solution: + maxVol: 1 + name: food + reagents: + - ReagentId: Fiber + Quantity: 1 + - type: ContainedSolution + containerName: food + container: 19556 - uid: 21272 components: - type: MetaData @@ -16606,6 +18312,21 @@ entities: - type: ContainedSolution containerName: food container: 21467 + - uid: 32523 + components: + - type: MetaData + - type: Transform + parent: 32522 + - type: Solution + solution: + maxVol: 1 + name: food + reagents: + - ReagentId: Fiber + Quantity: 1 + - type: ContainedSolution + containerName: food + container: 32522 - uid: 32764 components: - type: MetaData @@ -16700,8 +18421,8 @@ entities: localAnchorB: 0.49999997,-5 localAnchorA: -53,-30.5 referenceAngle: 1.5713501 - damping: 520.4867 - stiffness: 4671.878 + damping: 520.4869 + stiffness: 4671.8794 - uid: 33049 components: - type: MetaData @@ -17749,8 +19470,8 @@ entities: localAnchorB: 2.5,-3 localAnchorA: 33.5,-67 referenceAngle: 3.1421463 - damping: 536.25226 - stiffness: 4813.3896 + damping: 536.2525 + stiffness: 4813.3916 docking703850: !type:WeldJoint bodyB: 35803 bodyA: 2 @@ -17758,8 +19479,8 @@ entities: localAnchorB: 0.49999997,-3 localAnchorA: 35.5,-67 referenceAngle: 3.1421463 - damping: 536.25226 - stiffness: 4813.3896 + damping: 536.2525 + stiffness: 4813.3916 - uid: 36861 components: - type: MetaData @@ -19358,8 +21079,8 @@ entities: localAnchorB: 1.5,-10 localAnchorA: -51,-44.5 referenceAngle: 1.5713501 - damping: 1533.7821 - stiffness: 13767.197 + damping: 1533.7836 + stiffness: 13767.21 - uid: 45518 components: - type: MetaData @@ -22755,6 +24476,21 @@ entities: - type: ContainedSolution containerName: beaker container: 52340 + - uid: 53058 + components: + - type: MetaData + - type: Transform + parent: 53057 + - type: Solution + solution: + maxVol: 1 + name: food + reagents: + - ReagentId: Fiber + Quantity: 1 + - type: ContainedSolution + containerName: food + container: 53057 - uid: 56108 components: - type: MetaData @@ -22995,8 +24731,8 @@ entities: localAnchorB: 82,-3.5 localAnchorA: 1.5,-5 referenceAngle: 1.5702425 - damping: 951.0455 - stiffness: 8536.565 + damping: 951.0461 + stiffness: 8536.569 docking922625: !type:WeldJoint bodyB: 2 bodyA: 56108 @@ -23004,8 +24740,8 @@ entities: localAnchorB: 82,-1.5 localAnchorA: -0.5,-5 referenceAngle: 1.5702425 - damping: 951.0455 - stiffness: 8536.565 + damping: 951.0461 + stiffness: 8536.569 - proto: AccessConfigurator entities: - uid: 46588 @@ -23062,14 +24798,208 @@ entities: parent: 2141 - type: InstantAction container: 2141 + - uid: 15233 + components: + - type: Transform + parent: 14573 + - type: InstantAction + container: 14573 - uid: 41315 components: - type: Transform parent: 41078 - type: InstantAction container: 41078 +- proto: ActionToggleJetpack + entities: + - uid: 14574 + components: + - type: Transform + parent: 14573 + - type: InstantAction + container: 14573 - proto: ActionToggleLight entities: + - uid: 11221 + components: + - type: Transform + parent: 11220 + - type: InstantAction + container: 11220 + - uid: 27677 + components: + - type: Transform + parent: 35982 + - type: InstantAction + container: 35982 + - uid: 27679 + components: + - type: Transform + parent: 35977 + - type: InstantAction + container: 35977 + - uid: 27682 + components: + - type: Transform + parent: 35993 + - type: InstantAction + container: 35993 + - uid: 27684 + components: + - type: Transform + parent: 35997 + - type: InstantAction + container: 35997 + - uid: 27685 + components: + - type: Transform + parent: 35986 + - type: InstantAction + container: 35986 + - uid: 27686 + components: + - type: Transform + parent: 35975 + - type: InstantAction + container: 35975 + - uid: 27687 + components: + - type: Transform + parent: 35989 + - type: InstantAction + container: 35989 + - uid: 27688 + components: + - type: Transform + parent: 35994 + - type: InstantAction + container: 35994 + - uid: 27689 + components: + - type: Transform + parent: 35981 + - type: InstantAction + container: 35981 + - uid: 27690 + components: + - type: Transform + parent: 35998 + - type: InstantAction + container: 35998 + - uid: 27691 + components: + - type: Transform + parent: 35988 + - type: InstantAction + container: 35988 + - uid: 27693 + components: + - type: Transform + parent: 35999 + - type: InstantAction + container: 35999 + - uid: 27758 + components: + - type: Transform + parent: 35983 + - type: InstantAction + container: 35983 + - uid: 28234 + components: + - type: Transform + parent: 35992 + - type: InstantAction + container: 35992 + - uid: 29069 + components: + - type: Transform + parent: 35987 + - type: InstantAction + container: 35987 + - uid: 29190 + components: + - type: Transform + parent: 35978 + - type: InstantAction + container: 35978 + - uid: 30187 + components: + - type: Transform + parent: 35991 + - type: InstantAction + container: 35991 + - uid: 31408 + components: + - type: Transform + parent: 35996 + - type: InstantAction + container: 35996 + - uid: 31413 + components: + - type: Transform + parent: 35995 + - type: InstantAction + container: 35995 + - uid: 31414 + components: + - type: Transform + parent: 35976 + - type: InstantAction + container: 35976 + - uid: 31958 + components: + - type: Transform + parent: 35985 + - type: InstantAction + container: 35985 + - uid: 31988 + components: + - type: Transform + parent: 35980 + - type: InstantAction + container: 35980 + - uid: 32130 + components: + - type: Transform + parent: 28632 + - type: InstantAction + container: 28632 + - uid: 32131 + components: + - type: Transform + parent: 24566 + - type: InstantAction + container: 24566 + - uid: 32132 + components: + - type: Transform + parent: 25578 + - type: InstantAction + container: 25578 + - uid: 32181 + components: + - type: Transform + parent: 35984 + - type: InstantAction + container: 35984 + - uid: 32182 + components: + - type: Transform + parent: 35979 + - type: InstantAction + container: 35979 + - uid: 32238 + components: + - type: Transform + parent: 35990 + - type: InstantAction + container: 35990 + - uid: 32345 + components: + - type: Transform + parent: 24719 + - type: InstantAction + container: 24719 - uid: 43185 components: - type: Transform @@ -23097,14 +25027,11 @@ entities: - 14995 - 14992 - 14878 - - 1259 - - 1251 - - 1252 - 4008 - 4009 - 4002 - - type: AtmosDevice - joinedGrid: 2 + - 11223 + - 11222 - uid: 8 components: - type: Transform @@ -23119,8 +25046,6 @@ entities: - 15146 - 15148 - 15147 - - type: AtmosDevice - joinedGrid: 2 - uid: 10 components: - type: Transform @@ -23137,8 +25062,6 @@ entities: - 8777 - 8774 - 8775 - - type: AtmosDevice - joinedGrid: 2 - uid: 11 components: - type: Transform @@ -23151,8 +25074,6 @@ entities: - 4649 - 4641 - 4645 - - type: AtmosDevice - joinedGrid: 2 - uid: 12 components: - type: Transform @@ -23165,8 +25086,6 @@ entities: - 8149 - 8009 - 8155 - - type: AtmosDevice - joinedGrid: 2 - uid: 13 components: - type: Transform @@ -23176,8 +25095,6 @@ entities: devices: - 14896 - 14667 - - type: AtmosDevice - joinedGrid: 2 - uid: 14 components: - type: Transform @@ -23186,17 +25103,15 @@ entities: parent: 2 - type: DeviceList devices: - - 15031 - - 14753 - - 14752 - - 14568 - - 14567 - - 15035 + - 473 + - 325 + - 472 + - 51906 + - 51950 + - 43119 - 4388 - 4389 - 4387 - - type: AtmosDevice - joinedGrid: 2 - uid: 17 components: - type: Transform @@ -23210,11 +25125,11 @@ entities: - 15061 - 15062 - 15063 - - 14571 + - 51320 - 14735 - - 14572 - - 14573 - - 14574 + - 23337 + - 1784 + - 47720 - 14811 - 14754 - 14748 @@ -23234,8 +25149,6 @@ entities: - 8569 - 8566 - 8570 - - type: AtmosDevice - joinedGrid: 2 - uid: 19 components: - type: Transform @@ -23247,16 +25160,14 @@ entities: - 14700 - 14725 - 14707 - - 14567 - - 14568 + - 51906 + - 51950 - 14868 - 14744 - 14745 - 4019 - 4010 - 4011 - - type: AtmosDevice - joinedGrid: 2 - uid: 23 components: - type: Transform @@ -23271,8 +25182,6 @@ entities: - 14453 - 5484 - 233 - - type: AtmosDevice - joinedGrid: 2 - uid: 24 components: - type: Transform @@ -23280,9 +25189,6 @@ entities: parent: 2 - type: DeviceList devices: - - 1252 - - 1251 - - 1259 - 14879 - 14880 - 14881 @@ -23290,7 +25196,6 @@ entities: - 14883 - 14884 - 15101 - - 15100 - 15099 - 4968 - 11778 @@ -23301,44 +25206,8 @@ entities: - 4972 - 4969 - 4970 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25 - components: - - type: Transform - pos: 37.5,2.5 - parent: 2 - - type: DeviceList - devices: - - 14786 - - 14784 - - 14785 - - 14558 - - 14557 - - 14662 - - 14556 - - 14555 - - 14894 - - 14554 - - 14553 - - 14895 - - 14552 - - 14551 - - 14851 - - 27458 - - 26069 - - 27463 - - 27470 - - 495 - - 9358 - - 9362 - - 9360 - - 9365 - - 9363 - - 9364 - - 34937 - - type: AtmosDevice - joinedGrid: 2 + - 11223 + - 11222 - uid: 26 components: - type: Transform @@ -23354,8 +25223,6 @@ entities: - 22 - 9469 - 9474 - - type: AtmosDevice - joinedGrid: 2 - uid: 28 components: - type: Transform @@ -23374,8 +25241,6 @@ entities: - 3329 - 3330 - 3326 - - type: AtmosDevice - joinedGrid: 2 - uid: 30 components: - type: Transform @@ -23387,8 +25252,6 @@ entities: - 9079 - 9080 - 9081 - - type: AtmosDevice - joinedGrid: 2 - uid: 31 components: - type: Transform @@ -23409,8 +25272,6 @@ entities: - 4457 - 4430 - 4458 - - type: AtmosDevice - joinedGrid: 2 - uid: 32 components: - type: Transform @@ -23424,8 +25285,6 @@ entities: - 3322 - 3321 - 3323 - - type: AtmosDevice - joinedGrid: 2 - uid: 35 components: - type: Transform @@ -23436,8 +25295,6 @@ entities: devices: - 44512 - 14658 - - type: AtmosDevice - joinedGrid: 2 - uid: 39 components: - type: Transform @@ -23453,8 +25310,6 @@ entities: - 9407 - 9406 - 9408 - - type: AtmosDevice - joinedGrid: 2 - uid: 41 components: - type: Transform @@ -23468,8 +25323,6 @@ entities: - 8839 - 8838 - 14859 - - type: AtmosDevice - joinedGrid: 2 - uid: 44 components: - type: Transform @@ -23493,8 +25346,6 @@ entities: - 9165 - 9167 - 9163 - - type: AtmosDevice - joinedGrid: 2 - uid: 45 components: - type: Transform @@ -23519,8 +25370,6 @@ entities: - 4793 - 2660 - 1940 - - type: AtmosDevice - joinedGrid: 2 - uid: 46 components: - type: Transform @@ -23541,8 +25390,6 @@ entities: - 14798 - 14795 - 14794 - - type: AtmosDevice - joinedGrid: 2 - uid: 47 components: - type: Transform @@ -23556,8 +25403,6 @@ entities: - 8678 - 8679 - 8680 - - type: AtmosDevice - joinedGrid: 2 - uid: 48 components: - type: Transform @@ -23577,25 +25422,6 @@ entities: - 14850 - 2649 - 2648 - - type: AtmosDevice - joinedGrid: 2 - - uid: 49 - components: - - type: Transform - pos: -0.5,2.5 - parent: 2 - - type: DeviceList - devices: - - 14822 - - 14696 - - 15029 - - 14823 - - 14801 - - 14690 - - 14711 - - 14800 - - type: AtmosDevice - joinedGrid: 2 - uid: 50 components: - type: Transform @@ -23619,8 +25445,6 @@ entities: - 8793 - 8799 - 8798 - - type: AtmosDevice - joinedGrid: 2 - uid: 52 components: - type: Transform @@ -23645,8 +25469,6 @@ entities: - 4003 - 3972 - 3748 - - type: AtmosDevice - joinedGrid: 2 - uid: 55 components: - type: Transform @@ -23659,8 +25481,6 @@ entities: - 3244 - 3246 - 3245 - - type: AtmosDevice - joinedGrid: 2 - uid: 56 components: - type: Transform @@ -23673,8 +25493,6 @@ entities: - 3769 - 3760 - 3609 - - type: AtmosDevice - joinedGrid: 2 - uid: 58 components: - type: Transform @@ -23689,8 +25507,6 @@ entities: - 8939 - 8941 - 8940 - - type: AtmosDevice - joinedGrid: 2 - uid: 59 components: - type: Transform @@ -23705,8 +25521,6 @@ entities: - 14992 - 3901 - 4512 - - type: AtmosDevice - joinedGrid: 2 - uid: 60 components: - type: Transform @@ -23726,8 +25540,6 @@ entities: - 8254 - 8253 - 8247 - - type: AtmosDevice - joinedGrid: 2 - uid: 62 components: - type: Transform @@ -23745,8 +25557,6 @@ entities: - 14765 - 14682 - 14766 - - type: AtmosDevice - joinedGrid: 2 - uid: 63 components: - type: Transform @@ -23760,8 +25570,6 @@ entities: - 14919 - 5329 - 5328 - - type: AtmosDevice - joinedGrid: 2 - uid: 65 components: - type: Transform @@ -23780,8 +25588,6 @@ entities: - 35467 - 2745 - 878 - - type: AtmosDevice - joinedGrid: 2 - uid: 67 components: - type: Transform @@ -23795,8 +25601,6 @@ entities: - 3213 - 3219 - 3214 - - type: AtmosDevice - joinedGrid: 2 - uid: 69 components: - type: Transform @@ -23806,7 +25610,7 @@ entities: - type: DeviceList devices: - 14669 - - 14753 + - 325 - 4413 - 14955 - 14843 @@ -23818,8 +25622,6 @@ entities: - 4363 - 4418 - 4415 - - type: AtmosDevice - joinedGrid: 2 - uid: 70 components: - type: Transform @@ -23841,8 +25643,6 @@ entities: - 4690 - 4691 - 4549 - - type: AtmosDevice - joinedGrid: 2 - uid: 71 components: - type: Transform @@ -23855,8 +25655,6 @@ entities: - 15051 - 3393 - 3392 - - type: AtmosDevice - joinedGrid: 2 - uid: 72 components: - type: Transform @@ -23882,8 +25680,6 @@ entities: - 4006 - 3729 - 3730 - - type: AtmosDevice - joinedGrid: 2 - uid: 73 components: - type: Transform @@ -23910,8 +25706,6 @@ entities: - 9499 - 9500 - 9501 - - type: AtmosDevice - joinedGrid: 2 - uid: 74 components: - type: Transform @@ -23932,8 +25726,6 @@ entities: - 4547 - 4658 - 4660 - - type: AtmosDevice - joinedGrid: 2 - uid: 78 components: - type: Transform @@ -23952,8 +25744,6 @@ entities: - 14760 - 14845 - 14570 - - type: AtmosDevice - joinedGrid: 2 - uid: 79 components: - type: Transform @@ -23975,8 +25765,6 @@ entities: - 14757 - 5275 - 5274 - - type: AtmosDevice - joinedGrid: 2 - uid: 80 components: - type: Transform @@ -23990,8 +25778,6 @@ entities: - 9171 - 9169 - 9170 - - type: AtmosDevice - joinedGrid: 2 - uid: 81 components: - type: Transform @@ -24005,8 +25791,6 @@ entities: - 9451 - 9453 - 9452 - - type: AtmosDevice - joinedGrid: 2 - uid: 82 components: - type: Transform @@ -24020,8 +25804,6 @@ entities: - 8796 - 8794 - 8795 - - type: AtmosDevice - joinedGrid: 2 - uid: 83 components: - type: Transform @@ -24037,8 +25819,6 @@ entities: - 8904 - 8905 - 8906 - - type: AtmosDevice - joinedGrid: 2 - uid: 85 components: - type: Transform @@ -24053,8 +25833,6 @@ entities: - 5288 - 5287 - 577 - - type: AtmosDevice - joinedGrid: 2 - uid: 86 components: - type: Transform @@ -24072,8 +25850,6 @@ entities: - 9019 - 9024 - 9028 - - type: AtmosDevice - joinedGrid: 2 - uid: 87 components: - type: Transform @@ -24090,8 +25866,6 @@ entities: - 9030 - 9026 - 9021 - - type: AtmosDevice - joinedGrid: 2 - uid: 88 components: - type: Transform @@ -24108,8 +25882,6 @@ entities: - 9022 - 9027 - 9031 - - type: AtmosDevice - joinedGrid: 2 - uid: 90 components: - type: Transform @@ -24130,8 +25902,6 @@ entities: - 9291 - 9292 - 9290 - - type: AtmosDevice - joinedGrid: 2 - uid: 92 components: - type: Transform @@ -24149,8 +25919,6 @@ entities: - 5410 - 5408 - 577 - - type: AtmosDevice - joinedGrid: 2 - uid: 94 components: - type: Transform @@ -24170,8 +25938,6 @@ entities: - 5400 - 5398 - 34936 - - type: AtmosDevice - joinedGrid: 2 - uid: 95 components: - type: Transform @@ -24186,8 +25952,6 @@ entities: - 5445 - 5446 - 580 - - type: AtmosDevice - joinedGrid: 2 - uid: 96 components: - type: Transform @@ -24200,8 +25964,6 @@ entities: - 14799 - 4743 - 4742 - - type: AtmosDevice - joinedGrid: 2 - uid: 97 components: - type: Transform @@ -24212,8 +25974,6 @@ entities: - 14668 - 14677 - 14893 - - type: AtmosDevice - joinedGrid: 2 - uid: 101 components: - type: Transform @@ -24228,8 +25988,6 @@ entities: - 2584 - 2585 - 2588 - - type: AtmosDevice - joinedGrid: 2 - uid: 103 components: - type: Transform @@ -24245,8 +26003,6 @@ entities: - 2587 - 2586 - 2583 - - type: AtmosDevice - joinedGrid: 2 - uid: 106 components: - type: Transform @@ -24263,8 +26019,6 @@ entities: - 14504 - 2149 - 2216 - - type: AtmosDevice - joinedGrid: 2 - uid: 109 components: - type: Transform @@ -24280,8 +26034,6 @@ entities: - 14581 - 2672 - 2684 - - type: AtmosDevice - joinedGrid: 2 - uid: 111 components: - type: Transform @@ -24302,8 +26054,6 @@ entities: - 2594 - 2603 - 2593 - - type: AtmosDevice - joinedGrid: 2 - uid: 112 components: - type: Transform @@ -24325,8 +26075,6 @@ entities: - 4648 - 4650 - 4647 - - type: AtmosDevice - joinedGrid: 2 - uid: 113 components: - type: Transform @@ -24358,8 +26106,6 @@ entities: - 3400 - 3401 - 3402 - - type: AtmosDevice - joinedGrid: 2 - uid: 118 components: - type: Transform @@ -24373,8 +26119,6 @@ entities: - 15045 - 5361 - 5353 - - type: AtmosDevice - joinedGrid: 2 - uid: 119 components: - type: Transform @@ -24389,8 +26133,6 @@ entities: - 8901 - 8903 - 8902 - - type: AtmosDevice - joinedGrid: 2 - uid: 120 components: - type: Transform @@ -24406,16 +26148,12 @@ entities: - 9239 - 9242 - 9241 - - type: AtmosDevice - joinedGrid: 2 - uid: 121 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 122 components: - type: Transform @@ -24426,8 +26164,6 @@ entities: devices: - 14924 - 14923 - - type: AtmosDevice - joinedGrid: 2 - uid: 124 components: - type: Transform @@ -24450,8 +26186,6 @@ entities: - 14610 - 2718 - 2715 - - type: AtmosDevice - joinedGrid: 2 - uid: 125 components: - type: Transform @@ -24466,8 +26200,6 @@ entities: - 4808 - 724 - 4836 - - type: AtmosDevice - joinedGrid: 2 - uid: 126 components: - type: Transform @@ -24480,8 +26212,6 @@ entities: - 15068 - 3532 - 3531 - - type: AtmosDevice - joinedGrid: 2 - uid: 127 components: - type: Transform @@ -24495,8 +26225,6 @@ entities: - 14848 - 3559 - 3558 - - type: AtmosDevice - joinedGrid: 2 - uid: 131 components: - type: Transform @@ -24523,8 +26251,6 @@ entities: - 4071 - 4069 - 4073 - - type: AtmosDevice - joinedGrid: 2 - uid: 132 components: - type: Transform @@ -24550,8 +26276,6 @@ entities: - 4333 - 4391 - 4350 - - type: AtmosDevice - joinedGrid: 2 - uid: 133 components: - type: Transform @@ -24563,8 +26287,6 @@ entities: - 15070 - 15071 - 15072 - - type: AtmosDevice - joinedGrid: 2 - uid: 134 components: - type: Transform @@ -24582,8 +26304,6 @@ entities: - 4086 - 4376 - 4339 - - type: AtmosDevice - joinedGrid: 2 - uid: 135 components: - type: Transform @@ -24602,8 +26322,6 @@ entities: - 3968 - 3967 - 3965 - - type: AtmosDevice - joinedGrid: 2 - uid: 136 components: - type: Transform @@ -24625,8 +26343,6 @@ entities: - 3904 - 3905 - 3908 - - type: AtmosDevice - joinedGrid: 2 - uid: 137 components: - type: Transform @@ -24646,8 +26362,6 @@ entities: - 3884 - 3896 - 3902 - - type: AtmosDevice - joinedGrid: 2 - uid: 138 components: - type: Transform @@ -24669,8 +26383,6 @@ entities: - 4332 - 4349 - 4364 - - type: AtmosDevice - joinedGrid: 2 - uid: 139 components: - type: Transform @@ -24689,8 +26401,6 @@ entities: - 4361 - 4362 - 4367 - - type: AtmosDevice - joinedGrid: 2 - uid: 140 components: - type: Transform @@ -24714,8 +26424,6 @@ entities: - 4337 - 4392 - 4359 - - type: AtmosDevice - joinedGrid: 2 - uid: 143 components: - type: Transform @@ -24731,8 +26439,6 @@ entities: - 8353 - 8360 - 8359 - - type: AtmosDevice - joinedGrid: 2 - uid: 144 components: - type: Transform @@ -24745,8 +26451,6 @@ entities: - 8327 - 8328 - 8323 - - type: AtmosDevice - joinedGrid: 2 - uid: 146 components: - type: Transform @@ -24757,7 +26461,6 @@ entities: devices: - 15104 - 15101 - - 15100 - 15099 - 14622 - 14623 @@ -24776,8 +26479,6 @@ entities: - 5054 - 5053 - 5055 - - type: AtmosDevice - joinedGrid: 2 - uid: 147 components: - type: Transform @@ -24792,8 +26493,6 @@ entities: - 15106 - 5265 - 5223 - - type: AtmosDevice - joinedGrid: 2 - uid: 148 components: - type: Transform @@ -24806,8 +26505,6 @@ entities: - 15141 - 5011 - 840 - - type: AtmosDevice - joinedGrid: 2 - uid: 149 components: - type: Transform @@ -24820,8 +26517,6 @@ entities: - 5030 - 4772 - 4976 - - type: AtmosDevice - joinedGrid: 2 - uid: 150 components: - type: Transform @@ -24834,8 +26529,6 @@ entities: - 4977 - 5026 - 4992 - - type: AtmosDevice - joinedGrid: 2 - uid: 151 components: - type: Transform @@ -24846,8 +26539,6 @@ entities: - 15103 - 15111 - 15110 - - type: AtmosDevice - joinedGrid: 2 - uid: 152 components: - type: Transform @@ -24861,8 +26552,6 @@ entities: - 14635 - 14634 - 14633 - - type: AtmosDevice - joinedGrid: 2 - uid: 153 components: - type: Transform @@ -24876,8 +26565,6 @@ entities: - 14636 - 14637 - 14638 - - type: AtmosDevice - joinedGrid: 2 - uid: 154 components: - type: Transform @@ -24892,8 +26579,6 @@ entities: - 14639 - 14640 - 14641 - - type: AtmosDevice - joinedGrid: 2 - uid: 155 components: - type: Transform @@ -24908,8 +26593,6 @@ entities: - 14632 - 14631 - 14630 - - type: AtmosDevice - joinedGrid: 2 - uid: 156 components: - type: Transform @@ -24919,8 +26602,6 @@ entities: - type: DeviceList devices: - 15112 - - type: AtmosDevice - joinedGrid: 2 - uid: 158 components: - type: Transform @@ -24932,8 +26613,6 @@ entities: - 8609 - 8610 - 8642 - - type: AtmosDevice - joinedGrid: 2 - uid: 159 components: - type: Transform @@ -24945,8 +26624,6 @@ entities: - 8643 - 8640 - 8641 - - type: AtmosDevice - joinedGrid: 2 - uid: 160 components: - type: Transform @@ -24960,8 +26637,6 @@ entities: - 8167 - 8168 - 8166 - - type: AtmosDevice - joinedGrid: 2 - uid: 161 components: - type: Transform @@ -24974,8 +26649,6 @@ entities: - 8649 - 8653 - 8648 - - type: AtmosDevice - joinedGrid: 2 - uid: 163 components: - type: Transform @@ -24989,8 +26662,6 @@ entities: - 8437 - 8436 - 8435 - - type: AtmosDevice - joinedGrid: 2 - uid: 164 components: - type: Transform @@ -25006,8 +26677,6 @@ entities: - 8450 - 8451 - 8449 - - type: AtmosDevice - joinedGrid: 2 - uid: 165 components: - type: Transform @@ -25021,8 +26690,6 @@ entities: - 8529 - 8530 - 8528 - - type: AtmosDevice - joinedGrid: 2 - uid: 166 components: - type: Transform @@ -25031,8 +26698,6 @@ entities: - type: DeviceList devices: - 15122 - - type: AtmosDevice - joinedGrid: 2 - uid: 170 components: - type: Transform @@ -25045,8 +26710,6 @@ entities: - 2051 - 2053 - 2052 - - type: AtmosDevice - joinedGrid: 2 - uid: 172 components: - type: Transform @@ -25063,8 +26726,6 @@ entities: - 8333 - 8334 - 8332 - - type: AtmosDevice - joinedGrid: 2 - uid: 174 components: - type: Transform @@ -25080,8 +26741,6 @@ entities: - 8336 - 8337 - 8335 - - type: AtmosDevice - joinedGrid: 2 - uid: 177 components: - type: Transform @@ -25094,8 +26753,6 @@ entities: - 8331 - 8324 - 8320 - - type: AtmosDevice - joinedGrid: 2 - uid: 178 components: - type: Transform @@ -25108,15 +26765,11 @@ entities: - 5485 - 1964 - 644 - - type: AtmosDevice - joinedGrid: 2 - uid: 181 components: - type: Transform pos: 45.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 184 components: - type: Transform @@ -25126,8 +26779,6 @@ entities: devices: - 15147 - 15132 - - type: AtmosDevice - joinedGrid: 2 - uid: 185 components: - type: Transform @@ -25143,8 +26794,6 @@ entities: - 5272 - 5269 - 5270 - - type: AtmosDevice - joinedGrid: 2 - uid: 186 components: - type: Transform @@ -25158,8 +26807,6 @@ entities: - 15143 - 15144 - 15149 - - type: AtmosDevice - joinedGrid: 2 - uid: 187 components: - type: Transform @@ -25169,8 +26816,6 @@ entities: devices: - 15121 - 15132 - - type: AtmosDevice - joinedGrid: 2 - uid: 188 components: - type: Transform @@ -25183,8 +26828,6 @@ entities: - 14826 - 5427 - 5365 - - type: AtmosDevice - joinedGrid: 2 - uid: 192 components: - type: Transform @@ -25199,8 +26842,6 @@ entities: - 44457 - 5515 - 5534 - - type: AtmosDevice - joinedGrid: 2 - uid: 193 components: - type: Transform @@ -25213,8 +26854,6 @@ entities: - 9069 - 9064 - 9067 - - type: AtmosDevice - joinedGrid: 2 - uid: 194 components: - type: Transform @@ -25228,15 +26867,34 @@ entities: - 9065 - 9063 - 9068 - - type: AtmosDevice - joinedGrid: 2 - uid: 196 components: - type: Transform pos: 33.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - uid: 496 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 14786 + - 14784 + - 14785 + - 27458 + - 26069 + - 27463 + - 27470 + - 495 + - 9358 + - 9362 + - 9360 + - 9365 + - 9363 + - 9364 + - 34937 + - 51493 - uid: 528 components: - type: Transform @@ -25252,8 +26910,6 @@ entities: - 41113 - 2949 - 2941 - - type: AtmosDevice - joinedGrid: 2 - uid: 716 components: - type: Transform @@ -25267,8 +26923,6 @@ entities: - 4701 - 4700 - 710 - - type: AtmosDevice - joinedGrid: 2 - uid: 774 components: - type: Transform @@ -25286,8 +26940,6 @@ entities: - 8202 - 8203 - 8212 - - type: AtmosDevice - joinedGrid: 2 - uid: 879 components: - type: Transform @@ -25299,8 +26951,6 @@ entities: - 2181 - 2217 - 14504 - - type: AtmosDevice - joinedGrid: 2 - uid: 1314 components: - type: Transform @@ -25325,8 +26975,6 @@ entities: - 5031 - 5024 - 5023 - - type: AtmosDevice - joinedGrid: 2 - uid: 1326 components: - type: Transform @@ -25335,16 +26983,13 @@ entities: - type: DeviceList devices: - 14559 - - 14908 - - 14968 + - 53246 - 14949 - 14977 - 14931 - 5809 - 24472 - 22900 - - type: AtmosDevice - joinedGrid: 2 - uid: 1386 components: - type: Transform @@ -25357,8 +27002,6 @@ entities: - 703 - 1982 - 14734 - - type: AtmosDevice - joinedGrid: 2 - uid: 1580 components: - type: Transform @@ -25371,8 +27014,6 @@ entities: - 31329 - 1822 - 1879 - - type: AtmosDevice - joinedGrid: 2 - uid: 1582 components: - type: Transform @@ -25384,8 +27025,6 @@ entities: - 1890 - 1704 - 1852 - - type: AtmosDevice - joinedGrid: 2 - uid: 1601 components: - type: Transform @@ -25397,8 +27036,6 @@ entities: - 803 - 1871 - 1873 - - type: AtmosDevice - joinedGrid: 2 - uid: 2126 components: - type: Transform @@ -25416,8 +27053,6 @@ entities: - 2189 - 9593 - 9591 - - type: AtmosDevice - joinedGrid: 2 - uid: 2127 components: - type: Transform @@ -25432,8 +27067,6 @@ entities: - 2049 - 2125 - 2184 - - type: AtmosDevice - joinedGrid: 2 - uid: 2218 components: - type: Transform @@ -25447,8 +27080,6 @@ entities: - 2212 - 14957 - 14926 - - type: AtmosDevice - joinedGrid: 2 - uid: 2351 components: - type: Transform @@ -25462,8 +27093,6 @@ entities: - 2297 - 2362 - 2360 - - type: AtmosDevice - joinedGrid: 2 - uid: 2352 components: - type: Transform @@ -25475,8 +27104,6 @@ entities: - 2288 - 2346 - 2298 - - type: AtmosDevice - joinedGrid: 2 - uid: 2353 components: - type: Transform @@ -25489,8 +27116,6 @@ entities: - 2345 - 2289 - 2296 - - type: AtmosDevice - joinedGrid: 2 - uid: 2354 components: - type: Transform @@ -25503,8 +27128,6 @@ entities: - 2292 - 2348 - 2370 - - type: AtmosDevice - joinedGrid: 2 - uid: 2355 components: - type: Transform @@ -25517,8 +27140,6 @@ entities: - 2349 - 2295 - 2371 - - type: AtmosDevice - joinedGrid: 2 - uid: 2356 components: - type: Transform @@ -25534,8 +27155,6 @@ entities: - 2373 - 2374 - 2375 - - type: AtmosDevice - joinedGrid: 2 - uid: 2357 components: - type: Transform @@ -25552,8 +27171,6 @@ entities: - 2360 - 2362 - 2367 - - type: AtmosDevice - joinedGrid: 2 - uid: 2358 components: - type: Transform @@ -25570,8 +27187,6 @@ entities: - 2372 - 2373 - 2371 - - type: AtmosDevice - joinedGrid: 2 - uid: 2398 components: - type: Transform @@ -25585,8 +27200,6 @@ entities: - 2395 - 15010 - 15011 - - type: AtmosDevice - joinedGrid: 2 - uid: 2481 components: - type: Transform @@ -25599,8 +27212,6 @@ entities: - 2480 - 2476 - 15009 - - type: AtmosDevice - joinedGrid: 2 - uid: 2511 components: - type: Transform @@ -25613,8 +27224,6 @@ entities: - 2510 - 2508 - 15008 - - type: AtmosDevice - joinedGrid: 2 - uid: 2967 components: - type: Transform @@ -25626,8 +27235,6 @@ entities: - 874 - 2966 - 2968 - - type: AtmosDevice - joinedGrid: 2 - uid: 3216 components: - type: Transform @@ -25644,16 +27251,9 @@ entities: - 14909 - 14874 - 14948 - - 15136 - - 14946 - - 14913 - - 14956 - - 14916 - 3153 - 3215 - 3142 - - type: AtmosDevice - joinedGrid: 2 - uid: 3220 components: - type: Transform @@ -25662,17 +27262,10 @@ entities: parent: 2 - type: DeviceList devices: - - 14956 - - 14913 - - 14946 - - 15136 - - 14916 - 21067 - 3171 - 3218 - 3173 - - type: AtmosDevice - joinedGrid: 2 - uid: 3253 components: - type: Transform @@ -25687,13 +27280,9 @@ entities: - 14906 - 14909 - 15051 - - 14968 - - 14908 - 3251 - 3252 - 3250 - - type: AtmosDevice - joinedGrid: 2 - uid: 3530 components: - type: Transform @@ -25709,21 +27298,6 @@ entities: - 14856 - 3529 - 3527 - - type: AtmosDevice - joinedGrid: 2 - - uid: 3721 - components: - - type: Transform - pos: -54.5,30.5 - parent: 2 - - type: DeviceList - devices: - - 3719 - - 3720 - - 3717 - - 43547 - - type: AtmosDevice - joinedGrid: 2 - uid: 3776 components: - type: Transform @@ -25757,8 +27331,6 @@ entities: - 3747 - 3746 - 3745 - - type: AtmosDevice - joinedGrid: 2 - uid: 3785 components: - type: Transform @@ -25771,8 +27343,6 @@ entities: - 3780 - 3783 - 31153 - - type: AtmosDevice - joinedGrid: 2 - uid: 4168 components: - type: Transform @@ -25797,8 +27367,6 @@ entities: - 3571 - 3568 - 3570 - - type: AtmosDevice - joinedGrid: 2 - uid: 4692 components: - type: Transform @@ -25810,10 +27378,6 @@ entities: - 4668 - 4686 - 4679 - - 14690 - - 14711 - - type: AtmosDevice - joinedGrid: 2 - uid: 4974 components: - type: Transform @@ -25825,8 +27389,6 @@ entities: - 4973 - 1028 - 11778 - - type: AtmosDevice - joinedGrid: 2 - uid: 5169 components: - type: Transform @@ -25850,8 +27412,6 @@ entities: - 14780 - 14776 - 14815 - - type: AtmosDevice - joinedGrid: 2 - uid: 5362 components: - type: Transform @@ -25865,8 +27425,6 @@ entities: - 5343 - 51719 - 14783 - - type: AtmosDevice - joinedGrid: 2 - uid: 5593 components: - type: Transform @@ -25878,8 +27436,6 @@ entities: - 8261 - 8262 - 16 - - type: AtmosDevice - joinedGrid: 2 - uid: 5638 components: - type: Transform @@ -25893,8 +27449,6 @@ entities: - 8187 - 8211 - 8186 - - type: AtmosDevice - joinedGrid: 2 - uid: 6071 components: - type: Transform @@ -25913,8 +27467,6 @@ entities: - 14513 - 5167 - 128 - - type: AtmosDevice - joinedGrid: 2 - uid: 7631 components: - type: Transform @@ -25923,8 +27475,6 @@ entities: - type: DeviceList devices: - 47640 - - type: AtmosDevice - joinedGrid: 2 - uid: 7767 components: - type: Transform @@ -25943,8 +27493,6 @@ entities: - 9545 - 9547 - 9546 - - type: AtmosDevice - joinedGrid: 2 - uid: 8260 components: - type: Transform @@ -25961,8 +27509,6 @@ entities: - 14684 - 14712 - 14566 - - type: AtmosDevice - joinedGrid: 2 - uid: 8522 components: - type: Transform @@ -25975,8 +27521,6 @@ entities: - 8537 - 8536 - 51729 - - type: AtmosDevice - joinedGrid: 2 - uid: 9193 components: - type: Transform @@ -25990,8 +27534,6 @@ entities: - 9190 - 15028 - 14907 - - type: AtmosDevice - joinedGrid: 2 - uid: 9596 components: - type: Transform @@ -26003,8 +27545,20 @@ entities: - 9595 - 9594 - 26586 - - type: AtmosDevice - joinedGrid: 2 + - uid: 9995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 14822 + - 14696 + - 15029 + - 14823 + - 14801 + - 14800 - uid: 11607 components: - type: Transform @@ -26022,8 +27576,6 @@ entities: - 7826 - 8042 - 11990 - - type: AtmosDevice - joinedGrid: 2 - uid: 11629 components: - type: Transform @@ -26037,8 +27589,6 @@ entities: - 9247 - 9248 - 9246 - - type: AtmosDevice - joinedGrid: 2 - uid: 11989 components: - type: Transform @@ -26050,8 +27600,6 @@ entities: - 22259 - 3294 - 3293 - - type: AtmosDevice - joinedGrid: 2 - uid: 13042 components: - type: Transform @@ -26063,16 +27611,12 @@ entities: - 8330 - 8325 - 8321 - - type: AtmosDevice - joinedGrid: 2 - uid: 15784 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 18157 components: - type: Transform @@ -26085,8 +27629,6 @@ entities: - 34475 - 5320 - 5191 - - type: AtmosDevice - joinedGrid: 2 - uid: 21442 components: - type: Transform @@ -26100,8 +27642,6 @@ entities: - 8326 - 8322 - 8329 - - type: AtmosDevice - joinedGrid: 2 - uid: 21706 components: - type: Transform @@ -26118,8 +27658,6 @@ entities: - 37254 - 47768 - 47767 - - type: AtmosDevice - joinedGrid: 2 - uid: 21939 components: - type: Transform @@ -26138,8 +27676,6 @@ entities: - 9217 - 9227 - 9218 - - type: AtmosDevice - joinedGrid: 2 - uid: 22436 components: - type: Transform @@ -26173,8 +27709,6 @@ entities: - 8864 - 8866 - 8868 - - type: AtmosDevice - joinedGrid: 2 - uid: 23018 components: - type: Transform @@ -26189,8 +27723,6 @@ entities: - 12738 - 3370 - 3374 - - type: AtmosDevice - joinedGrid: 2 - uid: 23033 components: - type: Transform @@ -26206,8 +27738,6 @@ entities: - 4509 - 4511 - 4510 - - type: AtmosDevice - joinedGrid: 2 - uid: 23803 components: - type: Transform @@ -26222,8 +27752,6 @@ entities: - 9431 - 9424 - 9430 - - type: AtmosDevice - joinedGrid: 2 - uid: 24425 components: - type: Transform @@ -26233,8 +27761,6 @@ entities: - type: DeviceList devices: - 34475 - - type: AtmosDevice - joinedGrid: 2 - uid: 24441 components: - type: Transform @@ -26250,8 +27776,6 @@ entities: - 1400 - 1908 - 1437 - - type: AtmosDevice - joinedGrid: 2 - uid: 25930 components: - type: Transform @@ -26269,8 +27793,6 @@ entities: - 3418 - 3461 - 3460 - - type: AtmosDevice - joinedGrid: 2 - uid: 27106 components: - type: Transform @@ -26290,8 +27812,6 @@ entities: - 28319 - 2742 - 2740 - - type: AtmosDevice - joinedGrid: 2 - uid: 28267 components: - type: Transform @@ -26313,15 +27833,11 @@ entities: - 3465 - 3403 - 11990 - - type: AtmosDevice - joinedGrid: 2 - uid: 28535 components: - type: Transform pos: 37.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28804 components: - type: Transform @@ -26335,8 +27851,6 @@ entities: - 2712 - 2714 - 2968 - - type: AtmosDevice - joinedGrid: 2 - uid: 28915 components: - type: Transform @@ -26349,8 +27863,6 @@ entities: - 8210 - 8209 - 8213 - - type: AtmosDevice - joinedGrid: 2 - uid: 30609 components: - type: Transform @@ -26364,8 +27876,6 @@ entities: - 66 - 36628 - 22775 - - type: AtmosDevice - joinedGrid: 2 - uid: 30669 components: - type: Transform @@ -26379,8 +27889,6 @@ entities: - 5186 - 5214 - 5211 - - type: AtmosDevice - joinedGrid: 2 - uid: 30707 components: - type: Transform @@ -26394,8 +27902,6 @@ entities: - 9289 - 9293 - 9288 - - type: AtmosDevice - joinedGrid: 2 - uid: 30783 components: - type: Transform @@ -26411,8 +27917,6 @@ entities: - 42069 - 43978 - 41675 - - type: AtmosDevice - joinedGrid: 2 - uid: 31152 components: - type: Transform @@ -26425,8 +27929,6 @@ entities: - 15023 - 15050 - 14722 - - type: AtmosDevice - joinedGrid: 2 - uid: 32715 components: - type: Transform @@ -26439,8 +27941,6 @@ entities: - 5091 - 20946 - 35065 - - type: AtmosDevice - joinedGrid: 2 - uid: 32931 components: - type: Transform @@ -26455,8 +27955,6 @@ entities: - 47359 - 47362 - 47360 - - type: AtmosDevice - joinedGrid: 32764 - uid: 33790 components: - type: Transform @@ -26469,8 +27967,6 @@ entities: - 35705 - 18572 - 34936 - - type: AtmosDevice - joinedGrid: 2 - uid: 35669 components: - type: Transform @@ -26485,8 +27981,6 @@ entities: - 9403 - 9404 - 9405 - - type: AtmosDevice - joinedGrid: 2 - uid: 35723 components: - type: Transform @@ -26499,8 +27993,6 @@ entities: - 2464 - 2466 - 2465 - - type: AtmosDevice - joinedGrid: 2 - uid: 35737 components: - type: Transform @@ -26513,8 +28005,6 @@ entities: - 4760 - 4762 - 4761 - - type: AtmosDevice - joinedGrid: 2 - uid: 35779 components: - type: Transform @@ -26528,8 +28018,6 @@ entities: - 8432 - 8434 - 8433 - - type: AtmosDevice - joinedGrid: 2 - uid: 35780 components: - type: Transform @@ -26543,8 +28031,6 @@ entities: - 8422 - 8421 - 8420 - - type: AtmosDevice - joinedGrid: 2 - uid: 35781 components: - type: Transform @@ -26556,8 +28042,6 @@ entities: - 8429 - 8430 - 8431 - - type: AtmosDevice - joinedGrid: 2 - uid: 35940 components: - type: Transform @@ -26570,8 +28054,6 @@ entities: - 5495 - 534 - 1420 - - type: AtmosDevice - joinedGrid: 2 - uid: 36603 components: - type: Transform @@ -26589,8 +28071,6 @@ entities: - 9217 - 9218 - 9227 - - type: AtmosDevice - joinedGrid: 2 - uid: 36862 components: - type: Transform @@ -26600,8 +28080,9 @@ entities: - type: DeviceList devices: - 37359 - - type: AtmosDevice - joinedGrid: 36861 + - 51169 + - 51133 + - 50769 - uid: 36863 components: - type: Transform @@ -26610,9 +28091,10 @@ entities: parent: 36861 - type: DeviceList devices: + - 50768 + - 51132 + - 51168 - 37361 - - type: AtmosDevice - joinedGrid: 36861 - uid: 36864 components: - type: Transform @@ -26622,8 +28104,9 @@ entities: - type: DeviceList devices: - 37360 - - type: AtmosDevice - joinedGrid: 36861 + - 50808 + - 50897 + - 50896 - uid: 36865 components: - type: Transform @@ -26633,8 +28116,9 @@ entities: devices: - 37363 - 37362 - - type: AtmosDevice - joinedGrid: 36861 + - 50809 + - 51166 + - 51165 - uid: 36866 components: - type: Transform @@ -26647,8 +28131,9 @@ entities: - 37359 - 37363 - 37351 - - type: AtmosDevice - joinedGrid: 36861 + - 50810 + - 51164 + - 51167 - uid: 36867 components: - type: Transform @@ -26663,8 +28148,9 @@ entities: - 37354 - 37353 - 37358 - - type: AtmosDevice - joinedGrid: 36861 + - 51313 + - 50811 + - 51314 - uid: 36868 components: - type: Transform @@ -26676,8 +28162,6 @@ entities: - 37358 - 37362 - 37360 - - type: AtmosDevice - joinedGrid: 36861 - uid: 36869 components: - type: Transform @@ -26687,8 +28171,9 @@ entities: - type: DeviceList devices: - 37366 - - type: AtmosDevice - joinedGrid: 36861 + - 50819 + - 50883 + - 50874 - uid: 36870 components: - type: Transform @@ -26701,16 +28186,22 @@ entities: - 37370 - 37371 - 37369 - - type: AtmosDevice - joinedGrid: 36861 + - 50833 + - 50885 + - 50884 - uid: 36871 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,12.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 + - type: DeviceList + devices: + - 50875 + - 50842 + - 50886 + - 37369 + - 37373 - uid: 36872 components: - type: Transform @@ -26720,8 +28211,9 @@ entities: - type: DeviceList devices: - 37373 - - type: AtmosDevice - joinedGrid: 36861 + - 50882 + - 50841 + - 50887 - uid: 36873 components: - type: Transform @@ -26732,8 +28224,12 @@ entities: devices: - 37372 - 37371 - - type: AtmosDevice - joinedGrid: 36861 + - 50832 + - 50852 + - 50851 + - 50849 + - 50831 + - 50850 - uid: 36874 components: - type: Transform @@ -26743,8 +28239,9 @@ entities: - type: DeviceList devices: - 37353 - - type: AtmosDevice - joinedGrid: 36861 + - 50747 + - 51312 + - 51319 - uid: 36875 components: - type: Transform @@ -26754,8 +28251,9 @@ entities: - type: DeviceList devices: - 37354 - - type: AtmosDevice - joinedGrid: 36861 + - 50746 + - 51311 + - 51318 - uid: 36876 components: - type: Transform @@ -26765,8 +28263,9 @@ entities: - type: DeviceList devices: - 37355 - - type: AtmosDevice - joinedGrid: 36861 + - 50745 + - 51310 + - 51317 - uid: 36877 components: - type: Transform @@ -26776,8 +28275,9 @@ entities: - type: DeviceList devices: - 37356 - - type: AtmosDevice - joinedGrid: 36861 + - 50744 + - 51309 + - 51315 - uid: 36878 components: - type: Transform @@ -26787,8 +28287,9 @@ entities: - type: DeviceList devices: - 37357 - - type: AtmosDevice - joinedGrid: 36861 + - 50743 + - 51308 + - 51316 - uid: 41058 components: - type: Transform @@ -26806,8 +28307,6 @@ entities: - 3104 - 3066 - 3067 - - type: AtmosDevice - joinedGrid: 2 - uid: 41059 components: - type: Transform @@ -26820,8 +28319,6 @@ entities: - 439 - 3102 - 3076 - - type: AtmosDevice - joinedGrid: 2 - uid: 41856 components: - type: Transform @@ -26836,7 +28333,6 @@ entities: - 369 - 35462 - 35467 - - 28854 - 20324 - 22184 - 2878 @@ -26853,8 +28349,7 @@ entities: - 2899 - 2900 - 2901 - - type: AtmosDevice - joinedGrid: 2 + - 23472 - uid: 41862 components: - type: Transform @@ -26871,8 +28366,6 @@ entities: - 35703 - 2944 - 1797 - - type: AtmosDevice - joinedGrid: 2 - uid: 41863 components: - type: Transform @@ -26889,8 +28382,6 @@ entities: - 32229 - 2897 - 2898 - - type: AtmosDevice - joinedGrid: 2 - uid: 43546 components: - type: Transform @@ -26907,8 +28398,6 @@ entities: - 3715 - 3714 - 3716 - - type: AtmosDevice - joinedGrid: 2 - uid: 44869 components: - type: Transform @@ -26921,8 +28410,6 @@ entities: - 47447 - 47481 - 47485 - - type: AtmosDevice - joinedGrid: 44868 - uid: 44870 components: - type: Transform @@ -26939,8 +28426,6 @@ entities: - 47452 - 47477 - 47484 - - type: AtmosDevice - joinedGrid: 44868 - uid: 44871 components: - type: Transform @@ -26953,8 +28438,6 @@ entities: - 47482 - 47475 - 47433 - - type: AtmosDevice - joinedGrid: 44868 - uid: 44872 components: - type: Transform @@ -26967,8 +28450,6 @@ entities: - 47476 - 47487 - 47431 - - type: AtmosDevice - joinedGrid: 44868 - uid: 45292 components: - type: Transform @@ -26993,16 +28474,24 @@ entities: - 3396 - 3398 - 3394 - - type: AtmosDevice - joinedGrid: 2 + - uid: 47658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 3719 + - 3720 + - 3717 + - 43547 - uid: 47678 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 51651 components: - type: Transform @@ -27021,8 +28510,6 @@ entities: - 2187 - 2185 - 2186 - - type: AtmosDevice - joinedGrid: 2 - uid: 51728 components: - type: Transform @@ -27036,8 +28523,6 @@ entities: - 8532 - 8533 - 8531 - - type: AtmosDevice - joinedGrid: 2 - uid: 51734 components: - type: Transform @@ -27063,8 +28548,6 @@ entities: - 8779 - 8780 - 8778 - - type: AtmosDevice - joinedGrid: 2 - uid: 52151 components: - type: Transform @@ -27077,8 +28560,6 @@ entities: - 9356 - 9359 - 9357 - - type: AtmosDevice - joinedGrid: 2 - uid: 56109 components: - type: Transform @@ -27091,8 +28572,6 @@ entities: - 47547 - 47543 - 47550 - - type: AtmosDevice - joinedGrid: 56108 - uid: 56110 components: - type: Transform @@ -27111,8 +28590,6 @@ entities: - 47548 - 47551 - 47546 - - type: AtmosDevice - joinedGrid: 56108 - proto: AirAlarmAssembly entities: - uid: 3754 @@ -27150,120 +28627,86 @@ entities: - type: Transform pos: 45.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 203 components: - type: Transform pos: -53.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 205 components: - type: Transform pos: -14.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 208 components: - type: Transform pos: 55.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4416 components: - type: Transform pos: -72.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4417 components: - type: Transform pos: -72.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6176 components: - type: Transform pos: 56.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 8511 components: - type: Transform pos: -1.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11760 components: - type: Transform pos: 4.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 13044 components: - type: Transform pos: 63.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28294 components: - type: Transform pos: 76.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28343 components: - type: Transform pos: 17.5,62.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 32809 components: - type: Transform pos: -0.5,-2.5 parent: 32764 - - type: AtmosDevice - joinedGrid: 32764 - uid: 36879 components: - type: Transform pos: 51.5,-5.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 - uid: 44873 components: - type: Transform pos: 2.5,-5.5 parent: 44868 - - type: AtmosDevice - joinedGrid: 44868 - uid: 45712 components: - type: Transform pos: -26.5,25.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 56111 components: - type: Transform pos: 3.5,-2.5 parent: 56108 - - type: AtmosDevice - joinedGrid: 56108 - proto: Airlock entities: - uid: 167 @@ -27424,6 +28867,26 @@ entities: - type: Transform pos: -16.5,48.5 parent: 2 + - uid: 438 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 - uid: 4422 components: - type: Transform @@ -27564,7 +29027,7 @@ entities: - uid: 242 components: - type: Transform - pos: 24.5,-35.5 + pos: 25.5,-35.5 parent: 2 - uid: 243 components: @@ -27700,20 +29163,22 @@ entities: parent: 2 - proto: AirlockBarLocked entities: - - uid: 248 + - uid: 643 components: - type: Transform - pos: -13.5,35.5 + pos: -15.5,41.5 parent: 2 - - uid: 643 + - uid: 14418 components: - type: Transform - pos: -15.5,41.5 + rot: 1.5707963267948966 rad + pos: -13.5,35.5 parent: 2 - - uid: 27582 + - uid: 22854 components: - type: Transform - pos: 30.5,-41.5 + rot: -1.5707963267948966 rad + pos: 30.5,-40.5 parent: 2 - proto: AirlockBrigGlassLocked entities: @@ -28056,25 +29521,11 @@ entities: - uid: 293 components: - type: MetaData - desc: 10 человек за окном обсуждают ПЦК - name: конференц зал + desc: Райское место для райского наслаждения. + name: комната отдыха - type: Transform pos: -3.5,-1.5 parent: 2 - - uid: 294 - components: - - type: MetaData - name: мостик - - type: Transform - pos: -1.5,2.5 - parent: 2 - - uid: 295 - components: - - type: MetaData - name: мостик - - type: Transform - pos: 0.5,2.5 - parent: 2 - uid: 296 components: - type: Transform @@ -28200,11 +29651,6 @@ entities: - type: Transform pos: 32.5,-37.5 parent: 2 - - uid: 325 - components: - - type: Transform - pos: -15.5,-11.5 - parent: 2 - uid: 327 components: - type: Transform @@ -28297,6 +29743,11 @@ entities: - type: Transform pos: 26.5,-64.5 parent: 2 + - uid: 51951 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 - proto: AirlockExternal entities: - uid: 332 @@ -28733,6 +30184,10 @@ entities: - type: Transform pos: 27.5,41.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 32516 - type: DeviceLinkSource linkedPorts: 32516: @@ -28745,6 +30200,10 @@ entities: - type: DeviceLinkSink links: - 25364 + - type: DeviceLinkSource + linkedPorts: + 25364: + - DoorStatus: DoorBolt - uid: 32517 components: - type: Transform @@ -29214,11 +30673,32 @@ entities: - DoorStatus: DoorBolt - proto: AirlockFreezer entities: - - uid: 32899 + - uid: 436 components: - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,28.5 + parent: 2 + - uid: 52952 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: -30.5,28.5 parent: 2 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 32250 + components: + - type: Transform + pos: 22.5,-48.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 14916 + components: + - type: Transform + pos: 24.5,-46.5 + parent: 2 - proto: AirlockGlass entities: - uid: 428 @@ -29267,18 +30747,6 @@ entities: - type: Transform pos: -36.5,20.5 parent: 2 - - uid: 436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,33.5 - parent: 2 - - uid: 438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,33.5 - parent: 2 - uid: 441 components: - type: MetaData @@ -29299,16 +30767,6 @@ entities: - type: DeviceLinkSink links: - 31951 - - uid: 443 - components: - - type: Transform - pos: -22.5,24.5 - parent: 2 - - uid: 444 - components: - - type: Transform - pos: -20.5,24.5 - parent: 2 - uid: 445 components: - type: Transform @@ -29336,6 +30794,11 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,27.5 parent: 2 + - uid: 682 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 - uid: 1408 components: - type: Transform @@ -29380,6 +30843,11 @@ entities: rot: 3.141592653589793 rad pos: -22.5,54.5 parent: 2 + - uid: 11217 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 - uid: 11593 components: - type: Transform @@ -29415,6 +30883,21 @@ entities: - type: Transform pos: -50.5,2.5 parent: 2 + - uid: 23380 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 23381 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 23639 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 - uid: 25097 components: - type: Transform @@ -29481,6 +30964,81 @@ entities: - type: Transform pos: 12.5,4.5 parent: 45711 + - uid: 53874 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - uid: 53875 + components: + - type: Transform + pos: -43.5,22.5 + parent: 2 + - uid: 53876 + components: + - type: Transform + pos: -43.5,23.5 + parent: 2 + - uid: 53893 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 53981 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 + - uid: 53994 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 54169 + components: + - type: Transform + pos: -59.5,24.5 + parent: 2 + - uid: 54170 + components: + - type: Transform + pos: -58.5,24.5 + parent: 2 + - uid: 54171 + components: + - type: Transform + pos: -57.5,24.5 + parent: 2 + - uid: 54172 + components: + - type: Transform + pos: -77.5,24.5 + parent: 2 + - uid: 54175 + components: + - type: Transform + pos: -76.5,24.5 + parent: 2 + - uid: 54176 + components: + - type: Transform + pos: -75.5,24.5 + parent: 2 + - uid: 54215 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 + - uid: 54216 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 54217 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 - proto: AirlockGlassShuttle entities: - uid: 423 @@ -29698,21 +31256,19 @@ entities: parent: 45711 - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 472 + - uid: 15035 components: - type: MetaData - desc: 101 форма на все случаи жизни - name: кабинет гп + name: спальня ГП - type: Transform - pos: -11.5,-5.5 + pos: -15.5,-8.5 parent: 2 - - uid: 473 + - uid: 32783 components: - type: MetaData - desc: Запасной карты ГП тут нет. - name: спальня ГП + name: кабинет ГП - type: Transform - pos: -15.5,-7.5 + pos: -11.5,-6.5 parent: 2 - proto: AirlockHeadOfSecurityLocked entities: @@ -29725,11 +31281,6 @@ entities: parent: 2 - proto: AirlockHydroGlassLocked entities: - - uid: 475 - components: - - type: Transform - pos: 20.5,-49.5 - parent: 2 - uid: 476 components: - type: MetaData @@ -29737,6 +31288,11 @@ entities: - type: Transform pos: -25.5,47.5 parent: 2 + - uid: 13779 + components: + - type: Transform + pos: 20.5,-50.5 + parent: 2 - proto: AirlockHydroponicsLocked entities: - uid: 31266 @@ -29765,18 +31321,17 @@ entities: parent: 45711 - proto: AirlockKitchenGlassLocked entities: - - uid: 479 + - uid: 30932 components: - - type: MetaData - name: кухня - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,34.5 + pos: 21.5,-42.5 parent: 2 - - uid: 480 + - uid: 53248 components: - type: Transform - pos: 20.5,-43.5 + rot: 1.5707963267948966 rad + pos: -28.5,34.5 parent: 2 - proto: AirlockKitchenLocked entities: @@ -29820,19 +31375,20 @@ entities: - 51793 - proto: AirlockMaintBarLocked entities: - - uid: 21081 + - uid: 21082 components: - type: Transform - pos: -15.5,44.5 + pos: 32.5,-42.5 parent: 2 - - uid: 21082 + - uid: 51630 components: - type: Transform - pos: 32.5,-42.5 + rot: -1.5707963267948966 rad + pos: -15.5,44.5 parent: 2 - proto: AirlockMaintCaptainLocked entities: - - uid: 1811 + - uid: 26027 components: - type: Transform pos: -0.5,-5.5 @@ -29930,10 +31486,10 @@ entities: parent: 2 - proto: AirlockMaintHOPLocked entities: - - uid: 503 + - uid: 12335 components: - type: Transform - pos: -14.5,-9.5 + pos: -14.5,-10.5 parent: 2 - proto: AirlockMaintHydroLocked entities: @@ -29971,11 +31527,6 @@ entities: parent: 2 - proto: AirlockMaintKitchenLocked entities: - - uid: 506 - components: - - type: Transform - pos: -36.5,28.5 - parent: 2 - uid: 507 components: - type: Transform @@ -29989,20 +31540,10 @@ entities: - type: Transform pos: 41.5,6.5 parent: 2 - - uid: 494 - components: - - type: Transform - pos: 31.5,5.5 - parent: 2 - - uid: 496 - components: - - type: Transform - pos: 39.5,5.5 - parent: 2 - uid: 497 components: - type: Transform - pos: 35.5,5.5 + pos: 27.5,5.5 parent: 2 - uid: 508 components: @@ -30207,12 +31748,22 @@ entities: - type: Transform pos: -36.5,5.5 parent: 2 + - uid: 11824 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 - uid: 12654 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,42.5 parent: 2 + - uid: 13982 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 - uid: 15444 components: - type: Transform @@ -30336,11 +31887,6 @@ entities: - type: Transform pos: 39.5,8.5 parent: 2 - - uid: 51598 - components: - - type: Transform - pos: 27.5,5.5 - parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 566 @@ -31190,6 +32736,22 @@ entities: - type: Transform pos: 8.5,-22.5 parent: 2 + - uid: 1782 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23341 + - uid: 1783 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23438 - uid: 15478 components: - type: MetaData @@ -31197,6 +32759,14 @@ entities: - type: Transform pos: 52.5,-5.5 parent: 2 + - uid: 23744 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 32162 - uid: 26811 components: - type: MetaData @@ -31223,6 +32793,14 @@ entities: rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 32764 + - uid: 32856 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1781 - uid: 32876 components: - type: Transform @@ -31444,12 +33022,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,35.5 parent: 2 - - uid: 682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-38.5 - parent: 2 - proto: AirlockServiceLocked entities: - uid: 1100 @@ -32315,8 +33887,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - uid: 2901 components: - type: Transform @@ -32612,7 +34182,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 3721 + - 47658 - uid: 3730 components: - type: Transform @@ -32746,6 +34316,7 @@ entities: - type: DeviceNetwork deviceLists: - 7 + - 43770 - uid: 4019 components: - type: Transform @@ -32755,6 +34326,7 @@ entities: - type: DeviceNetwork deviceLists: - 19 + - 43754 - uid: 4068 components: - type: Transform @@ -32822,7 +34394,7 @@ entities: - type: DeviceNetwork deviceLists: - 14 - - 123 + - 45308 - uid: 4390 components: - type: Transform @@ -33024,6 +34596,7 @@ entities: - type: DeviceNetwork deviceLists: - 24 + - 51695 - uid: 4973 components: - type: Transform @@ -33513,6 +35086,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 + - 51731 - uid: 8672 components: - type: Transform @@ -33521,6 +35095,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 + - 51731 - uid: 8680 components: - type: Transform @@ -33805,8 +35380,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 25 - 14522 + - 496 - uid: 9363 components: - type: Transform @@ -33814,8 +35389,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 25 - 14522 + - 496 - uid: 9405 components: - type: Transform @@ -34018,6 +35593,152 @@ entities: deviceLists: - 21706 - 35493 + - uid: 50850 + components: + - type: Transform + pos: 1.5,19.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36873 + - uid: 50852 + components: + - type: Transform + pos: 5.5,18.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36873 + - uid: 50883 + components: + - type: Transform + pos: 1.5,12.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36869 + - uid: 50885 + components: + - type: Transform + pos: 5.5,12.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37346 + - 36870 + - uid: 50886 + components: + - type: Transform + pos: 9.5,15.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36871 + - uid: 50887 + components: + - type: Transform + pos: 8.5,19.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36872 + - uid: 50897 + components: + - type: Transform + pos: -0.5,7.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36864 + - uid: 50899 + components: + - type: Transform + pos: 5.5,7.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37347 + - uid: 51166 + components: + - type: Transform + pos: 3.5,2.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36865 + - uid: 51167 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36866 + - uid: 51168 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36863 + - uid: 51169 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36862 + - uid: 51314 + components: + - type: Transform + pos: 11.5,3.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36867 + - 37348 + - uid: 51315 + components: + - type: Transform + pos: 15.5,4.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36877 + - uid: 51316 + components: + - type: Transform + pos: 15.5,7.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36878 + - uid: 51317 + components: + - type: Transform + pos: 15.5,1.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36876 + - uid: 51318 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36875 + - uid: 51319 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36874 - proto: AltarConvertMaint entities: - uid: 43268 @@ -34053,6 +35774,14 @@ entities: - type: Transform pos: -15.5,5.5 parent: 34641 +- proto: AlwaysPoweredlightRed + entities: + - uid: 11098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-76.5 + parent: 2 - proto: AlwaysPoweredLightSodium entities: - uid: 34650 @@ -34174,7 +35903,7 @@ entities: - uid: 318 components: - type: MetaData - name: Технические помещения рынка + name: Технические помещения ларька - type: Transform pos: 29.5,7.5 parent: 2 @@ -34277,7 +36006,7 @@ entities: - uid: 938 components: - type: MetaData - name: Коридор мостика + name: Мостик - type: Transform pos: 2.5,2.5 parent: 2 @@ -34303,14 +36032,6 @@ entities: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 944 - components: - - type: MetaData - name: Кабинет ГП - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 2 - uid: 945 components: - type: MetaData @@ -34676,14 +36397,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,14.5 parent: 2 - - uid: 1029 - components: - - type: MetaData - name: Мостик - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 2 - uid: 1030 components: - type: MetaData @@ -34838,23 +36551,15 @@ entities: - uid: 1053 components: - type: MetaData - name: Шаттл прибытия 2/3 + name: Шаттл прибытия 2/2 - type: Transform rot: -1.5707963267948966 rad pos: -75.5,5.5 parent: 2 - - uid: 1054 - components: - - type: MetaData - name: Шаттл прибытия 3/3 - - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,0.5 - parent: 2 - uid: 1055 components: - type: MetaData - name: Шаттл прибытия 1/3 + name: Шаттл прибытия 1/2 - type: Transform pos: -81.5,9.5 parent: 2 @@ -35408,28 +37113,38 @@ entities: parent: 36861 - uid: 36928 components: + - type: MetaData + name: Кухня - type: Transform pos: 2.5,21.5 parent: 36861 - uid: 36929 components: + - type: MetaData + name: Пост охраны - type: Transform pos: 1.5,3.5 parent: 36861 - uid: 36930 components: + - type: MetaData + name: Приёмная каторги - type: Transform rot: 1.5707963267948966 rad pos: -3.5,7.5 parent: 36861 - uid: 36931 components: + - type: MetaData + name: Камеры каторжников - type: Transform rot: 1.5707963267948966 rad pos: 8.5,6.5 parent: 36861 - uid: 36932 components: + - type: MetaData + name: Склад ригов - type: Transform rot: -1.5707963267948966 rad pos: 13.5,19.5 @@ -35463,6 +37178,14 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,50.5 parent: 2 + - uid: 43098 + components: + - type: MetaData + name: Кабинет ГП + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 2 - uid: 43222 components: - type: MetaData @@ -35921,26 +37644,21 @@ entities: - type: Transform pos: 32.50007,-2.291557 parent: 2 - - uid: 32018 + - uid: 30732 components: - type: Transform - pos: -36.304794,-34.44753 + pos: -15.748423,35.63832 parent: 2 - - uid: 36036 + - uid: 32018 components: - type: Transform - pos: -18.265724,28.54384 + pos: -36.304794,-34.44753 parent: 2 - uid: 36037 components: - type: Transform pos: -24.328213,26.40128 parent: 2 - - uid: 36038 - components: - - type: Transform - pos: -15.375087,35.448154 - parent: 2 - uid: 53112 components: - type: Transform @@ -53712,6 +55430,26 @@ entities: - type: Transform pos: -31.5,30.5 parent: 2 + - uid: 14553 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 2 + - uid: 15136 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 26263 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 2 + - uid: 26339 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 2 - uid: 45999 components: - type: Transform @@ -54412,6 +56150,11 @@ entities: - type: Transform pos: 11.204256,24.344208 parent: 45711 + - uid: 51888 + components: + - type: Transform + pos: -54.57235,-4.530295 + parent: 2 - proto: Barricade entities: - uid: 1275 @@ -54963,6 +56706,12 @@ entities: - type: Transform pos: 25.5,-52.5 parent: 2 + - uid: 22869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-40.5 + parent: 2 - uid: 23076 components: - type: Transform @@ -55064,11 +56813,6 @@ entities: - type: Transform pos: 32.5,-42.5 parent: 2 - - uid: 41669 - components: - - type: Transform - pos: 30.5,-41.5 - parent: 2 - uid: 42301 components: - type: Transform @@ -55752,6 +57496,11 @@ entities: parent: 2 - proto: BarSignMaidCafe entities: + - uid: 24649 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 - uid: 42050 components: - type: Transform @@ -55850,6 +57599,12 @@ entities: - type: Transform pos: -46.5,46.5 parent: 45711 + - uid: 54219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 2 - uid: 54278 components: - type: Transform @@ -55875,8 +57630,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: BaseMedicalPDA entities: - uid: 43177 @@ -55969,15 +57722,16 @@ entities: - type: Transform pos: -71.30222,-13.5083885 parent: 2 - - uid: 1373 + - uid: 1374 components: - type: Transform - pos: -28.737297,25.658907 + pos: 56.55115,-62.302055 parent: 2 - - uid: 1374 + - uid: 10005 components: - type: Transform - pos: 56.55115,-62.302055 + rot: 0.000553772842977196 rad + pos: -26.755318,31.801714 parent: 2 - uid: 15333 components: @@ -56087,11 +57841,6 @@ entities: - type: Transform pos: -32.5,-58.5 parent: 2 - - uid: 1385 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 2 - uid: 1387 components: - type: Transform @@ -56257,6 +58006,11 @@ entities: - type: Transform pos: -24.5,17.5 parent: 2 + - uid: 22372 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 - uid: 24597 components: - type: Transform @@ -56520,10 +58274,10 @@ entities: parent: 36861 - proto: BedsheetHOP entities: - - uid: 1449 + - uid: 1385 components: - type: Transform - pos: -16.5,-8.5 + pos: -16.5,-9.5 parent: 2 - proto: BedsheetHOS entities: @@ -56534,10 +58288,10 @@ entities: parent: 2 - proto: BedsheetIan entities: - - uid: 1452 + - uid: 43127 components: - type: Transform - pos: -12.5,-7.5 + pos: -12.5,-8.5 parent: 2 - proto: BedsheetMedical entities: @@ -56769,6 +58523,11 @@ entities: - type: Transform pos: -7.5,47.5 parent: 2 + - uid: 32400 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 - uid: 33333 components: - type: Transform @@ -56863,6 +58622,44 @@ entities: parent: 2 - proto: BenchColorfulComfy entities: + - uid: 494 + components: + - type: Transform + pos: -1.5,51.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,66.5 + parent: 2 + - uid: 11822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,66.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,66.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + pos: -2.5,51.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 - uid: 20284 components: - type: Transform @@ -56878,6 +58675,32 @@ entities: - type: Transform pos: 48.5,-20.5 parent: 2 + - uid: 22237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,66.5 + parent: 2 + - uid: 22295 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 23192 + components: + - type: Transform + pos: -0.5,51.5 + parent: 2 + - uid: 24717 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 26675 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 - uid: 28539 components: - type: Transform @@ -56885,6 +58708,26 @@ entities: parent: 2 - proto: BenchComfy entities: + - uid: 18629 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 18631 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 21397 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 23702 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 - uid: 46926 components: - type: Transform @@ -56899,6 +58742,30 @@ entities: parent: 45711 - proto: BenchRedComfy entities: + - uid: 25708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 2 + - uid: 25768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,24.5 + parent: 2 + - uid: 26095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 + - uid: 26097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 - uid: 34639 components: - type: Transform @@ -57035,10 +58902,10 @@ entities: - type: Transform pos: 45.56276,-53.524742 parent: 2 - - uid: 14206 + - uid: 43064 components: - type: Transform - pos: -11.796713,-10.47926 + pos: -11.800321,-11.452964 parent: 2 - proto: BikeHorn entities: @@ -58235,7 +60102,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 17492 + - 12262 - 24898 - uid: 7450 components: @@ -58244,7 +60111,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 17492 + - 12262 - 24898 - uid: 7872 components: @@ -58298,7 +60165,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 21116 + - 53060 - 24898 - uid: 14363 components: @@ -58307,7 +60174,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 17492 + - 12262 - 24898 - uid: 21210 components: @@ -58324,7 +60191,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 21116 + - 53060 - 24898 - uid: 32751 components: @@ -58333,7 +60200,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 21116 + - 53060 - 24898 - uid: 42651 components: @@ -58358,23 +60225,68 @@ entities: - type: Transform pos: 47.5,11.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 1563 components: - type: Transform pos: -57.5,-11.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False + - uid: 20242 + components: + - type: Transform + pos: -21.5,32.5 + parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 42426 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-1.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 42485 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,2.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False + - uid: 44043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,17.5 + parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False + - uid: 44045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,19.5 + parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - proto: BlockGameArcadeComputerCircuitboard entities: - uid: 52079 @@ -58460,11 +60372,16 @@ entities: - type: Transform pos: -24.580832,-37.43327 parent: 2 + - uid: 19439 + components: + - type: Transform + rot: 0.698685473640709 rad + pos: -6.4893885,-3.1361966 + parent: 2 - uid: 44981 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.48381,35.60974 + pos: -18.586958,39.66874 parent: 2 - proto: BookBase entities: @@ -58568,11 +60485,48 @@ entities: - type: Transform pos: 6.45869,30.41227 parent: 2 - - uid: 43539 + - uid: 51370 components: + - type: MetaData + name: Барменское пособие - type: Transform - pos: -33.55589,53.154343 + pos: -18.336958,39.496864 parent: 2 + - type: Paper + content: >2+ + [head=2]Пособие по качественному + обслуживанию в баре[/head] + + [bullet][bold]Автор: Майя Линхариева + + [bullet]Соавтор: Даррен Стейнфорт[/bold] + + + [italic]"Алкоголь это искусство, а бармен - творец"[/italic] + + + Это руководство написано как для начинающих барменов, так и для уже опытных "вершителей судеб". Вы можете интерпретировать некоторые моменты по-своему, либо же действовать иначе, всё описанное в данной книге является субъективным и основано на 9-летнем опыте работы в баре. + + + [bullet][head=3]Пункт 1: Общение[/head] + + Вы — бармен, само воплощение вежливости и пример для подражания. Потому, вам стоит воздержаться от использования мата и быдловатой манеры общения. Даже если посетитель относится к вам неуважительно - не нужно уподобляться ему. Старайтесь общаться с клиентами, поддерживать их, узнавать что-то из их жизни. Так вы покажете свою открытость и сделаете пребывание в баре в разы комфортнее. + + + [bulltet][head=3]Пункт 2: Клиенты[/head] + + Иногда в Бар люди приходят не в самом лучшем настроении, а иногда, увы, посетители просто не умеют общаться. Ваша задача - обслуживать их, но, при этом, не давать им переступать грань дозволенного. Помните, вы - тоже личность, которая может не терпеть подобного отношения к себе. Не брезгуйте использовать ружьё на особо буйной клиентуре, при необходимости. + + + [bullet][head=3]Пункт 3: Напитки[/head] + + Старайтесь меньше пользоваться раздатчиками. Бесспорно, они даны вам для удобства и ими проще всего готовить напитки. Однако, у вас имееься полный алкомат добра, шейкеры, бутылки, но при этом вы их не используете. Намного лучше подойти и лично налить клиенту напиток прямо за стойкой, используя всё те же ингредиенты. Слишком много нужно смешать? Используйте шейкер! Демонстрируя посетителям свои навыки, вы лишь утвердите себя как эксперта в своём деле. + + + [bullet][head=3]Пункт 4: На выдачу[/head] + + В АлкоМате есть различные сосуды для напитков. В первую очередь, настоятельно не рекомендуется выдавать с собой шейкеры. Шейкер — инструмент бармена для смешивания напитков, а не фляга XXL. Также, для выноса за пределы бара стоит выдавать исключительно фляги и термосы, ибо те как раз для этого и нужны. А вот стаканы, бокалы и стопки ни в коем случае не надо выдавать. Они созданы для использования в пределах бара и нигде более. + - proto: BookBusido entities: - uid: 54005 @@ -58903,22 +60857,16 @@ entities: parent: 2 - proto: BoozeDispenser entities: - - uid: 1630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-41.5 - parent: 2 - - uid: 1631 + - uid: 11466 components: - type: Transform - pos: -55.5,5.5 + rot: 1.5707963267948966 rad + pos: -18.5,38.5 parent: 2 - - uid: 20460 + - uid: 21116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,38.5 + pos: -5.5,-2.5 parent: 2 - uid: 43308 components: @@ -59027,16 +60975,76 @@ entities: - uid: 35988 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27691 + - type: UnpoweredFlashlight + toggleActionEntity: 27691 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - uid: 35998 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27690 + - type: UnpoweredFlashlight + toggleActionEntity: 27690 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: BoxBeaker entities: @@ -59069,20 +61077,20 @@ entities: - type: InsideEntityStorage - proto: BoxBeanbag entities: - - uid: 1971 + - uid: 21625 components: - type: Transform - pos: -32.463406,-23.273176 + pos: -31.439508,-29.409428 parent: 2 - - uid: 26981 + - uid: 21637 components: - type: Transform - pos: -32.479675,-23.276205 + pos: -31.439508,-29.409428 parent: 2 - - uid: 35962 + - uid: 22402 components: - type: Transform - pos: -32.479675,-23.276205 + pos: -31.439508,-29.409428 parent: 2 - proto: BoxBodyBag entities: @@ -59125,6 +61133,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: BoxCandle + entities: + - uid: 51626 + components: + - type: Transform + pos: -24.505955,37.56835 + parent: 2 +- proto: BoxCandleSmall + entities: + - uid: 51627 + components: + - type: Transform + pos: -24.505955,38.02148 + parent: 2 - proto: BoxCardboard entities: - uid: 21261 @@ -59229,16 +61251,76 @@ entities: - uid: 35996 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 31408 + - type: UnpoweredFlashlight + toggleActionEntity: 31408 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - uid: 35999 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27693 + - type: UnpoweredFlashlight + toggleActionEntity: 27693 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: BoxEvidenceMarkers entities: @@ -59263,31 +61345,14 @@ entities: - type: Transform pos: 8.298793,50.653736 parent: 2 - - uid: 1656 - components: - - type: Transform - pos: 1.7414315,5.973263 - parent: 2 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 1657 - - uid: 1658 + - uid: 14181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.299773,-5.4476886 + rot: 0.000553772842977196 rad + pos: 1.7197558,6.527133 parent: 2 - proto: BoxFolderBlack entities: - - uid: 1661 - components: - - type: Transform - pos: -5.674773,-5.4789386 - parent: 2 - uid: 1662 components: - type: Transform @@ -59378,6 +61443,12 @@ entities: rot: 1.5707963267948966 rad pos: 1.3996735,75.24213 parent: 45711 + - uid: 53247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.40999594,4.4883184 + parent: 2 - proto: BoxFolderBlue entities: - uid: 1672 @@ -59391,14 +61462,6 @@ entities: - type: Transform pos: -37.451157,-55.65921 parent: 2 - - uid: 1676 - components: - - type: MetaData - desc: Мечта любого бюрократа. - name: одобренные заявления - - type: Transform - pos: -12.694079,-3.3002028 - parent: 2 - uid: 1677 components: - type: Transform @@ -59418,12 +61481,6 @@ entities: - 1679 - 1680 - 1681 - - uid: 1683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.252898,-4.6664386 - parent: 2 - uid: 1685 components: - type: Transform @@ -59446,12 +61503,24 @@ entities: - type: Transform pos: 2.7032602,26.575167 parent: 2 + - uid: 22606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.404805,-4.6090045 + parent: 2 - uid: 28220 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.498905,-19.477797 parent: 2 + - uid: 53245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.33187103,4.613319 + parent: 2 - uid: 53539 components: - type: Transform @@ -59509,6 +61578,12 @@ entities: rot: 3.141592653589793 rad pos: 52.500416,-22.431923 parent: 2 + - uid: 54218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.49807,1.6736109 + parent: 2 - proto: BoxFolderRed entities: - uid: 1223 @@ -59516,19 +61591,6 @@ entities: - type: Transform pos: 2.3282604,25.575169 parent: 2 - - uid: 1692 - components: - - type: Transform - pos: -5.2737913,-3.4244683 - parent: 2 - - uid: 1693 - components: - - type: MetaData - desc: Исчадие ада. - name: отказанные заявления - - type: Transform - pos: -12.287829,-3.3002028 - parent: 2 - uid: 1695 components: - type: Transform @@ -59588,6 +61650,12 @@ entities: - type: Transform pos: 8.705043,50.70061 parent: 2 + - uid: 25178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.38918,-4.3746295 + parent: 2 - uid: 32316 components: - type: Transform @@ -59607,11 +61675,6 @@ entities: parent: 45711 - proto: BoxFolderWhite entities: - - uid: 1703 - components: - - type: Transform - pos: -5.002898,-5.5258136 - parent: 2 - uid: 6924 components: - type: Transform @@ -59667,12 +61730,6 @@ entities: - 1710 - 1711 - 1712 - - uid: 1716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.362273,-3.3070638 - parent: 2 - uid: 1717 components: - type: Transform @@ -59725,7 +61782,8 @@ entities: - uid: 1722 components: - type: Transform - pos: -29.516525,-10.226322 + rot: 0.000553772842977196 rad + pos: -29.532965,-10.272663 parent: 2 - uid: 1725 components: @@ -59760,20 +61818,20 @@ entities: parent: 2 - proto: BoxLethalshot entities: - - uid: 47693 + - uid: 1760 components: - type: Transform - pos: -31.533436,-27.534105 + pos: -32.423836,-29.412706 parent: 2 - - uid: 47695 + - uid: 1761 components: - type: Transform - pos: -31.533436,-27.534105 + pos: -32.423836,-29.412706 parent: 2 - - uid: 47696 + - uid: 1971 components: - type: Transform - pos: -31.533436,-27.534105 + pos: -32.423836,-29.412706 parent: 2 - proto: BoxLightbulb entities: @@ -59801,6 +61859,12 @@ entities: - type: Transform pos: -28.596264,6.551634 parent: 2 + - uid: 26627 + components: + - type: Transform + rot: 0.000553772842977196 rad + pos: -43.381172,30.510303 + parent: 2 - uid: 32718 components: - type: Transform @@ -60190,22 +62254,22 @@ entities: - type: InsideEntityStorage - proto: BoxShellTranquilizer entities: - - uid: 35961 + - uid: 1973 components: - type: Transform - pos: -32.479675,-23.38558 + pos: -31.440086,-29.563362 parent: 2 - - uid: 47705 + - uid: 22412 components: - type: Transform - pos: -32.479675,-23.38558 + pos: -31.440086,-29.563362 parent: 2 - proto: BoxShotgunIncendiary entities: - - uid: 1973 + - uid: 1927 components: - type: Transform - pos: -31.51781,-27.534105 + pos: -33.436867,-29.553228 parent: 2 - proto: BoxShotgunPractice entities: @@ -60216,10 +62280,15 @@ entities: parent: 2 - proto: BoxShotgunSlug entities: - - uid: 1760 + - uid: 1054 + components: + - type: Transform + pos: -32.436867,-29.584478 + parent: 2 + - uid: 22027 components: - type: Transform - pos: -31.540213,-27.526463 + pos: -32.436867,-29.584478 parent: 2 - uid: 35584 components: @@ -60231,11 +62300,6 @@ entities: - type: Transform pos: 9.365967,-4.4568787 parent: 36861 - - uid: 47707 - components: - - type: Transform - pos: -31.540213,-27.526463 - parent: 2 - proto: BoxSterileMask entities: - uid: 1766 @@ -60320,10 +62384,15 @@ entities: parent: 2 - proto: BrbSign entities: - - uid: 1777 + - uid: 27022 + components: + - type: Transform + pos: -13.471632,-3.5381248 + parent: 2 + - uid: 51521 components: - type: Transform - pos: -13.48435,-2.4402626 + pos: 31.626032,4.809731 parent: 2 - proto: BriefcaseBrown entities: @@ -60431,15 +62500,15 @@ entities: - type: Transform pos: -14.497005,-47.09634 parent: 2 - - uid: 43064 + - uid: 43113 components: - type: Transform - pos: -15.494861,-3.5372753 + pos: -15.52621,-4.380173 parent: 2 - - uid: 43084 + - uid: 43118 components: - type: Transform - pos: -15.494861,-3.297692 + pos: -15.52621,-4.645798 parent: 2 - proto: BriefcaseSyndieLobbyingBundleFilled entities: @@ -60453,66 +62522,96 @@ entities: - uid: 35992 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 28234 + - type: UnpoweredFlashlight + toggleActionEntity: 28234 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: BrigTimer entities: - uid: 1781 components: - type: Transform - pos: -15.5,-23.5 + pos: -12.5,-23.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 32158: + 32856: - Start: Close - Timer: AutoClose - Timer: Open - - uid: 1782 + - uid: 10341 components: - type: Transform - pos: -12.5,-23.5 + pos: -10.5,-16.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 32156: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 1783 + - uid: 13829 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 23341 components: - type: Transform pos: -9.5,-23.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 32157: + 1782: - Start: Close - Timer: AutoClose - Timer: Open - - uid: 1784 + - uid: 23438 components: - type: Transform pos: -18.5,-23.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 32162: + 1783: - Start: Close - Timer: AutoClose - Timer: Open - - uid: 10341 - components: - - type: Transform - pos: -10.5,-16.5 - parent: 2 - - uid: 13829 + - uid: 32162 components: - type: Transform - pos: -7.5,-25.5 + pos: -15.5,-23.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23744: + - Start: Close + - Timer: AutoClose + - Timer: Open - uid: 46996 components: - type: MetaData @@ -60710,6 +62809,13 @@ entities: - type: Transform pos: 12.256271,55.4859 parent: 45711 +- proto: ButchCleaver + entities: + - uid: 674 + components: + - type: Transform + pos: 25.537497,-46.45267 + parent: 2 - proto: ButtonFrameCaution entities: - uid: 51739 @@ -61003,6 +63109,16 @@ entities: - type: Transform pos: 52.5,32.5 parent: 2 + - uid: 1599 + components: + - type: Transform + pos: -37.5,47.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 - uid: 1729 components: - type: Transform @@ -61028,6 +63144,11 @@ entities: - type: Transform pos: -35.5,-65.5 parent: 2 + - uid: 1848 + components: + - type: Transform + pos: -17.5,32.5 + parent: 2 - uid: 1860 components: - type: Transform @@ -61088,6 +63209,21 @@ entities: - type: Transform pos: -25.5,49.5 parent: 2 + - uid: 3143 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 - uid: 3463 components: - type: Transform @@ -61098,6 +63234,36 @@ entities: - type: Transform pos: -27.5,48.5 parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 - uid: 4101 components: - type: Transform @@ -62503,6 +64669,11 @@ entities: - type: Transform pos: -21.5,49.5 parent: 45711 + - uid: 6943 + components: + - type: Transform + pos: 18.5,-50.5 + parent: 2 - uid: 6956 components: - type: Transform @@ -65928,11 +68099,6 @@ entities: - type: Transform pos: -28.5,29.5 parent: 2 - - uid: 8106 - components: - - type: Transform - pos: -31.5,28.5 - parent: 2 - uid: 8107 components: - type: Transform @@ -65993,6 +68159,11 @@ entities: - type: Transform pos: -84.5,7.5 parent: 2 + - uid: 10269 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 - uid: 10292 components: - type: Transform @@ -66013,6 +68184,31 @@ entities: - type: Transform pos: 8.5,28.5 parent: 2 + - uid: 10604 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 11047 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 11067 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 11130 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 - uid: 11261 components: - type: Transform @@ -66173,6 +68369,11 @@ entities: - type: Transform pos: -28.5,36.5 parent: 2 + - uid: 11711 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 - uid: 11719 components: - type: Transform @@ -66213,6 +68414,11 @@ entities: - type: Transform pos: -30.5,40.5 parent: 2 + - uid: 11846 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 - uid: 11873 components: - type: Transform @@ -66303,6 +68509,11 @@ entities: - type: Transform pos: -26.5,31.5 parent: 2 + - uid: 12127 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 - uid: 12422 components: - type: Transform @@ -66358,6 +68569,16 @@ entities: - type: Transform pos: -14.5,40.5 parent: 2 + - uid: 12578 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 - uid: 12594 components: - type: Transform @@ -66373,6 +68594,16 @@ entities: - type: Transform pos: -14.5,37.5 parent: 2 + - uid: 13360 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 - uid: 15471 components: - type: Transform @@ -67598,11 +69829,6 @@ entities: - type: Transform pos: -16.5,31.5 parent: 2 - - uid: 16171 - components: - - type: Transform - pos: -16.5,32.5 - parent: 2 - uid: 16172 components: - type: Transform @@ -67653,11 +69879,6 @@ entities: - type: Transform pos: -22.5,27.5 parent: 2 - - uid: 16205 - components: - - type: Transform - pos: -57.5,4.5 - parent: 2 - uid: 16207 components: - type: Transform @@ -67688,16 +69909,6 @@ entities: - type: Transform pos: -17.5,31.5 parent: 2 - - uid: 16213 - components: - - type: Transform - pos: -56.5,4.5 - parent: 2 - - uid: 16214 - components: - - type: Transform - pos: -55.5,4.5 - parent: 2 - uid: 16215 components: - type: Transform @@ -72983,11 +75194,6 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 18624 - components: - - type: Transform - pos: -15.5,-8.5 - parent: 2 - uid: 18625 components: - type: Transform @@ -73008,46 +75214,11 @@ entities: - type: Transform pos: -14.5,-5.5 parent: 2 - - uid: 18629 - components: - - type: Transform - pos: -14.5,-4.5 - parent: 2 - uid: 18630 components: - type: Transform pos: -13.5,-5.5 parent: 2 - - uid: 18631 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 2 - - uid: 18632 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 2 - - uid: 18650 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 2 - - uid: 18651 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 2 - - uid: 18652 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 2 - - uid: 18653 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 2 - uid: 18654 components: - type: Transform @@ -75823,6 +77994,11 @@ entities: - type: Transform pos: -49.5,-51.5 parent: 2 + - uid: 22812 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 - uid: 22825 components: - type: Transform @@ -76728,6 +78904,11 @@ entities: - type: Transform pos: -49.5,-62.5 parent: 2 + - uid: 25276 + components: + - type: Transform + pos: -46.5,-27.5 + parent: 2 - uid: 25301 components: - type: Transform @@ -78148,6 +80329,16 @@ entities: - type: Transform pos: -21.5,18.5 parent: 2 + - uid: 32529 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 32530 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 - uid: 32536 components: - type: Transform @@ -78248,26 +80439,11 @@ entities: - type: Transform pos: -14.5,-9.5 parent: 2 - - uid: 32771 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 2 - - uid: 32772 - components: - - type: Transform - pos: -15.5,-11.5 - parent: 2 - uid: 32773 components: - type: Transform pos: -14.5,-10.5 parent: 2 - - uid: 32774 - components: - - type: Transform - pos: -17.5,-11.5 - parent: 2 - uid: 32779 components: - type: Transform @@ -78723,16 +80899,6 @@ entities: - type: Transform pos: -5.5,-3.5 parent: 2 - - uid: 33433 - components: - - type: Transform - pos: 4.5,2.5 - parent: 2 - - uid: 33434 - components: - - type: Transform - pos: 4.5,3.5 - parent: 2 - uid: 33435 components: - type: Transform @@ -80008,6 +82174,11 @@ entities: - type: Transform pos: 49.5,-21.5 parent: 2 + - uid: 35971 + components: + - type: Transform + pos: 66.5,42.5 + parent: 2 - uid: 36009 components: - type: Transform @@ -80023,6 +82194,21 @@ entities: - type: Transform pos: 46.5,-21.5 parent: 2 + - uid: 36033 + components: + - type: Transform + pos: 63.5,43.5 + parent: 2 + - uid: 36034 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 + - uid: 36035 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 - uid: 36055 components: - type: Transform @@ -81008,11 +83194,6 @@ entities: - type: Transform pos: 28.5,3.5 parent: 2 - - uid: 37427 - components: - - type: Transform - pos: 28.5,2.5 - parent: 2 - uid: 37428 components: - type: Transform @@ -81033,11 +83214,6 @@ entities: - type: Transform pos: 61.5,-17.5 parent: 2 - - uid: 37432 - components: - - type: Transform - pos: 28.5,1.5 - parent: 2 - uid: 37433 components: - type: Transform @@ -81058,11 +83234,6 @@ entities: - type: Transform pos: 32.5,3.5 parent: 2 - - uid: 37437 - components: - - type: Transform - pos: 32.5,2.5 - parent: 2 - uid: 37438 components: - type: Transform @@ -81078,11 +83249,6 @@ entities: - type: Transform pos: 64.5,-19.5 parent: 2 - - uid: 37441 - components: - - type: Transform - pos: 32.5,1.5 - parent: 2 - uid: 37442 components: - type: Transform @@ -81228,16 +83394,6 @@ entities: - type: Transform pos: 36.5,0.5 parent: 2 - - uid: 37471 - components: - - type: Transform - pos: 36.5,1.5 - parent: 2 - - uid: 37472 - components: - - type: Transform - pos: 36.5,2.5 - parent: 2 - uid: 37473 components: - type: Transform @@ -81278,16 +83434,6 @@ entities: - type: Transform pos: 40.5,3.5 parent: 2 - - uid: 37481 - components: - - type: Transform - pos: 40.5,2.5 - parent: 2 - - uid: 37482 - components: - - type: Transform - pos: 40.5,1.5 - parent: 2 - uid: 37483 components: - type: Transform @@ -82443,6 +84589,11 @@ entities: - type: Transform pos: 76.5,-4.5 parent: 2 + - uid: 42695 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 - uid: 42700 components: - type: Transform @@ -82543,6 +84694,11 @@ entities: - type: Transform pos: 11.5,-49.5 parent: 2 + - uid: 43137 + components: + - type: Transform + pos: 66.5,44.5 + parent: 2 - uid: 43179 components: - type: Transform @@ -84323,11 +86479,6 @@ entities: - type: Transform pos: 11.5,-66.5 parent: 2 - - uid: 44166 - components: - - type: Transform - pos: 10.5,-66.5 - parent: 2 - uid: 44167 components: - type: Transform @@ -84338,11 +86489,6 @@ entities: - type: Transform pos: 8.5,-66.5 parent: 2 - - uid: 44169 - components: - - type: Transform - pos: 7.5,-66.5 - parent: 2 - uid: 44170 components: - type: Transform @@ -85483,6 +87629,16 @@ entities: - type: Transform pos: -16.5,-45.5 parent: 2 + - uid: 44522 + components: + - type: Transform + pos: 66.5,45.5 + parent: 2 + - uid: 44540 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 - uid: 44665 components: - type: Transform @@ -85733,6 +87889,11 @@ entities: - type: Transform pos: 26.5,-2.5 parent: 2 + - uid: 44831 + components: + - type: Transform + pos: 66.5,47.5 + parent: 2 - uid: 44881 components: - type: Transform @@ -85913,11 +88074,6 @@ entities: - type: Transform pos: -9.5,-46.5 parent: 2 - - uid: 44918 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 2 - uid: 44919 components: - type: Transform @@ -86443,16 +88599,6 @@ entities: - type: Transform pos: -48.5,-64.5 parent: 2 - - uid: 45307 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 2 - - uid: 45308 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 2 - uid: 45309 components: - type: Transform @@ -86918,21 +89064,6 @@ entities: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 47038 - components: - - type: Transform - pos: -13.5,14.5 - parent: 2 - - uid: 47039 - components: - - type: Transform - pos: -12.5,14.5 - parent: 2 - - uid: 47040 - components: - - type: Transform - pos: -11.5,14.5 - parent: 2 - uid: 47041 components: - type: Transform @@ -87443,11 +89574,6 @@ entities: - type: Transform pos: -35.5,44.5 parent: 2 - - uid: 47148 - components: - - type: Transform - pos: -36.5,48.5 - parent: 2 - uid: 47149 components: - type: Transform @@ -87843,11 +89969,6 @@ entities: - type: Transform pos: -46.5,-26.5 parent: 2 - - uid: 47230 - components: - - type: Transform - pos: -45.5,-26.5 - parent: 2 - uid: 47231 components: - type: Transform @@ -88688,42639 +90809,44981 @@ entities: - type: Transform pos: 62.5,-26.5 parent: 2 -- proto: CableApcStack - entities: - - uid: 15386 + - uid: 48627 components: - type: Transform - pos: 12.454536,-17.45927 - parent: 2 - - uid: 26012 + pos: 1.5,3.5 + parent: 36861 + - uid: 48628 components: - type: Transform - pos: 15.586965,9.401894 - parent: 2 - - uid: 37214 + pos: 1.5,2.5 + parent: 36861 + - uid: 49246 components: - type: Transform - pos: 40.41101,-11.629791 + pos: 1.5,1.5 parent: 36861 - - uid: 43341 + - uid: 49299 components: - type: Transform - pos: 50.55645,75.53959 - parent: 2 - - uid: 47738 + pos: 2.5,1.5 + parent: 36861 + - uid: 49503 components: - type: Transform - pos: 36.587772,-18.492594 - parent: 2 -- proto: CableApcStack1 - entities: - - uid: 1603 + pos: 2.5,0.5 + parent: 36861 + - uid: 49504 components: - type: Transform - pos: 45.572983,-25.0347 - parent: 2 - - uid: 1640 + pos: 2.5,-0.5 + parent: 36861 + - uid: 49520 components: - type: Transform - pos: 43.588608,-24.760485 - parent: 2 - - uid: 1659 + pos: 2.5,-1.5 + parent: 36861 + - uid: 49521 components: - type: Transform - pos: 34.229233,-29.885485 - parent: 2 - - uid: 4733 + pos: 2.5,-2.5 + parent: 36861 + - uid: 49524 components: - type: Transform - pos: -94.772575,32.32265 - parent: 2 - - uid: 4736 + pos: 2.5,-3.5 + parent: 36861 + - uid: 49542 components: - type: Transform - pos: -94.19447,31.119518 - parent: 2 - - uid: 4753 + pos: 2.5,-4.5 + parent: 36861 + - uid: 49554 components: - type: Transform - pos: -95.52964,42.461914 - parent: 2 - - uid: 4757 + pos: 3.5,-3.5 + parent: 36861 + - uid: 49555 components: - type: Transform - pos: -94.52965,40.44629 - parent: 2 - - uid: 6073 + pos: 4.5,-3.5 + parent: 36861 + - uid: 49561 components: - type: Transform - pos: 31.351784,-25.621244 - parent: 2 - - uid: 6074 + pos: 5.5,-3.5 + parent: 36861 + - uid: 49562 components: - type: Transform - pos: 36.25774,-25.636421 - parent: 2 - - uid: 6076 + pos: 6.5,-3.5 + parent: 36861 + - uid: 49563 components: - type: Transform - pos: 50.432137,-58.461723 - parent: 2 - - uid: 6077 + pos: 7.5,-3.5 + parent: 36861 + - uid: 49572 components: - type: Transform - pos: 30.564049,-27.445374 - parent: 2 - - uid: 6079 + pos: 8.5,-3.5 + parent: 36861 + - uid: 49573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.637724,-61.331596 - parent: 2 - - uid: 6081 + pos: 5.5,-4.5 + parent: 36861 + - uid: 49574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.294338,-61.77491 - parent: 2 - - uid: 6083 + pos: 5.5,-5.5 + parent: 36861 + - uid: 49578 components: - type: Transform - pos: -36.756416,38.435074 - parent: 2 - - uid: 6086 + pos: 5.5,-6.5 + parent: 36861 + - uid: 49579 components: - type: Transform - pos: -36.55236,42.49345 - parent: 2 - - uid: 6087 + pos: 5.5,-7.5 + parent: 36861 + - uid: 49580 components: - type: Transform - pos: -36.599236,43.63407 - parent: 2 - - uid: 6088 + pos: 4.5,-7.5 + parent: 36861 + - uid: 49581 components: - type: Transform - rot: -3.5930822761542913E-09 rad - pos: -35.430035,40.520737 - parent: 2 - - uid: 6089 + pos: 1.5,-1.5 + parent: 36861 + - uid: 49582 components: - type: Transform - pos: 53.872986,-56.25301 - parent: 2 - - uid: 6090 + pos: 3.5,-0.5 + parent: 36861 + - uid: 50057 components: - type: Transform - pos: 54.560486,-57.34676 - parent: 2 - - uid: 6091 + pos: -3.5,7.5 + parent: 36861 + - uid: 50060 components: - type: Transform - pos: 54.185486,-57.237385 - parent: 2 - - uid: 6092 + pos: -2.5,7.5 + parent: 36861 + - uid: 50071 components: - type: Transform - pos: 53.810486,-57.299885 - parent: 2 - - uid: 6093 + pos: -1.5,7.5 + parent: 36861 + - uid: 50090 components: - type: Transform - pos: 53.82611,-56.924885 - parent: 2 - - uid: 8936 + pos: -0.5,7.5 + parent: 36861 + - uid: 50113 components: - type: Transform - pos: 40.44776,-30.57617 - parent: 2 - - uid: 9961 + pos: 0.5,7.5 + parent: 36861 + - uid: 50114 components: - type: Transform - pos: 43.354237,-30.604235 - parent: 2 - - uid: 20733 + pos: 1.5,7.5 + parent: 36861 + - uid: 50148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.38823,38.214893 - parent: 2 - - uid: 22235 + pos: -3.5,8.5 + parent: 36861 + - uid: 50149 components: - type: Transform - pos: 36.479233,-33.909695 - parent: 2 - - uid: 22305 + pos: -4.5,8.5 + parent: 36861 + - uid: 50158 components: - type: Transform - pos: 34.416733,-34.1597 - parent: 2 - - uid: 22334 + pos: -3.5,6.5 + parent: 36861 + - uid: 50172 components: - type: Transform - pos: 40.151104,-28.394073 - parent: 2 - - uid: 22337 + pos: -4.5,6.5 + parent: 36861 + - uid: 50175 components: - type: Transform - pos: 41.026108,-33.253445 - parent: 2 - - uid: 31824 + pos: -0.5,8.5 + parent: 36861 + - uid: 50176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.534065,37.32948 - parent: 2 - - uid: 33462 + pos: -0.5,6.5 + parent: 36861 + - uid: 50181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.63356,-11.579286 - parent: 33049 - - uid: 33463 + pos: 8.5,6.5 + parent: 36861 + - uid: 50182 components: - type: Transform - pos: 5.524185,-10.219911 - parent: 33049 - - uid: 34959 + pos: 9.5,6.5 + parent: 36861 + - uid: 50277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.521451,16.698822 - parent: 34641 - - uid: 34960 + pos: 10.5,6.5 + parent: 36861 + - uid: 50465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.490201,15.651947 - parent: 34641 - - uid: 34961 + pos: 11.5,6.5 + parent: 36861 + - uid: 50466 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.646451,15.839447 - parent: 34641 - - uid: 34962 + pos: 11.5,7.5 + parent: 36861 + - uid: 50469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.824254,10.424689 - parent: 34641 - - uid: 34963 + pos: 11.5,8.5 + parent: 36861 + - uid: 50522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.105504,10.909064 - parent: 34641 - - uid: 36221 + pos: 11.5,5.5 + parent: 36861 + - uid: 50523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.391933,47.447025 - parent: 2 - - uid: 36222 + pos: 11.5,4.5 + parent: 36861 + - uid: 50524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.34506,44.431396 - parent: 2 - - uid: 36223 + pos: 11.5,3.5 + parent: 36861 + - uid: 50525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.43881,48.384525 - parent: 2 - - uid: 45372 + pos: 11.5,2.5 + parent: 36861 + - uid: 50526 components: - type: Transform - pos: -0.38714695,-1.2846315 - parent: 43176 - - uid: 45373 + pos: 11.5,1.5 + parent: 36861 + - uid: 50527 components: - type: Transform - pos: -0.15277195,-1.5971315 - parent: 43176 - - uid: 45569 + pos: 11.5,0.5 + parent: 36861 + - uid: 50528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5672201,3.0034144 - parent: 45518 - - uid: 45570 + pos: 11.5,-0.5 + parent: 36861 + - uid: 50529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.8546549,-2.4103065 - parent: 45518 - - uid: 45571 + pos: 11.5,-1.5 + parent: 36861 + - uid: 50530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5359701,-2.2489543 - parent: 45518 - - uid: 45572 + pos: 11.5,-2.5 + parent: 36861 + - uid: 50531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.00472,6.4116583 - parent: 45518 - - uid: 47565 + pos: 11.5,-3.5 + parent: 36861 + - uid: 50532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.943169,28.129593 - parent: 45711 - - uid: 47566 + pos: 11.5,-4.5 + parent: 36861 + - uid: 50533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.833794,27.957718 - parent: 45711 - - uid: 55962 + pos: 12.5,-4.5 + parent: 36861 + - uid: 50534 components: - type: Transform - pos: -32.829285,33.420166 - parent: 45711 - - uid: 55963 + pos: 13.5,-4.5 + parent: 36861 + - uid: 50535 components: - type: Transform - pos: -32.36055,33.060364 - parent: 45711 - - uid: 55964 + pos: 14.5,-4.5 + parent: 36861 + - uid: 50536 components: - type: Transform - pos: -32.36055,33.31067 - parent: 45711 - - uid: 55965 + pos: 14.5,-1.5 + parent: 36861 + - uid: 50537 components: - type: Transform - pos: -32.485535,33.34198 - parent: 45711 - - uid: 55966 + pos: 13.5,-1.5 + parent: 36861 + - uid: 50538 components: - type: Transform - pos: -32.79808,33.20117 - parent: 45711 -- proto: CableApcStack10 - entities: - - uid: 15337 + pos: 12.5,-1.5 + parent: 36861 + - uid: 50539 components: - type: Transform - pos: 80.44533,-44.8744 - parent: 2 - - uid: 15338 + pos: 14.5,1.5 + parent: 36861 + - uid: 50568 components: - type: Transform - pos: 80.64845,-44.952526 - parent: 2 - - uid: 27258 + pos: 13.5,1.5 + parent: 36861 + - uid: 50569 components: - type: Transform - pos: 39.03132,13.394435 - parent: 2 - - uid: 43969 + pos: 12.5,1.5 + parent: 36861 + - uid: 50570 components: - type: Transform - pos: -26.486355,4.5057526 - parent: 2 - - uid: 45573 + pos: 14.5,4.5 + parent: 36861 + - uid: 50572 components: - type: Transform - pos: -0.3702799,0.4252894 - parent: 45518 - - uid: 47567 + pos: 13.5,4.5 + parent: 36861 + - uid: 50573 components: - type: Transform - pos: 37.573006,33.27738 - parent: 45711 - - uid: 47663 + pos: 12.5,4.5 + parent: 36861 + - uid: 50574 components: - type: Transform - pos: 58.61351,-24.224495 - parent: 2 - - uid: 53315 + pos: 14.5,7.5 + parent: 36861 + - uid: 50575 components: - type: Transform - pos: -11.681259,79.25043 - parent: 45711 -- proto: CableHV - entities: - - uid: 302 + pos: 13.5,7.5 + parent: 36861 + - uid: 50578 components: - type: Transform - pos: -48.5,41.5 - parent: 2 - - uid: 1786 + pos: 12.5,7.5 + parent: 36861 + - uid: 50579 components: - type: Transform - pos: 56.5,38.5 - parent: 2 - - uid: 1799 + pos: 2.5,7.5 + parent: 36861 + - uid: 50580 components: - type: Transform - pos: 55.5,38.5 - parent: 2 - - uid: 5481 + pos: 3.5,7.5 + parent: 36861 + - uid: 50581 components: - type: Transform - pos: -58.5,30.5 - parent: 2 - - uid: 5568 + pos: 4.5,7.5 + parent: 36861 + - uid: 50597 components: - type: Transform - pos: -50.5,43.5 - parent: 2 - - uid: 5592 + pos: 5.5,7.5 + parent: 36861 + - uid: 50629 components: - type: Transform - pos: -50.5,44.5 - parent: 2 - - uid: 5595 + pos: 6.5,7.5 + parent: 36861 + - uid: 50634 components: - type: Transform - pos: -50.5,46.5 - parent: 2 - - uid: 5612 + pos: 5.5,6.5 + parent: 36861 + - uid: 50635 components: - type: Transform - pos: -52.5,49.5 - parent: 2 - - uid: 5632 + pos: 5.5,5.5 + parent: 36861 + - uid: 50644 components: - type: Transform - pos: -51.5,46.5 - parent: 2 - - uid: 5646 + pos: 5.5,4.5 + parent: 36861 + - uid: 50647 components: - type: Transform - pos: 47.5,75.5 - parent: 2 - - uid: 5649 + pos: 5.5,8.5 + parent: 36861 + - uid: 50648 components: - type: Transform - pos: -50.5,63.5 - parent: 2 - - uid: 5650 + pos: 2.5,13.5 + parent: 36861 + - uid: 50649 components: - type: Transform - pos: 46.5,87.5 - parent: 2 - - uid: 5651 + pos: 1.5,13.5 + parent: 36861 + - uid: 50650 components: - type: Transform - pos: 47.5,87.5 - parent: 2 - - uid: 5653 + pos: 0.5,13.5 + parent: 36861 + - uid: 50651 components: - type: Transform - pos: 48.5,88.5 - parent: 2 - - uid: 5655 + pos: -0.5,13.5 + parent: 36861 + - uid: 50652 components: - type: Transform - pos: 48.5,89.5 - parent: 2 - - uid: 5660 + pos: 0.5,12.5 + parent: 36861 + - uid: 50653 components: - type: Transform - pos: 48.5,90.5 - parent: 2 - - uid: 5665 + pos: 0.5,11.5 + parent: 36861 + - uid: 50654 components: - type: Transform - pos: 46.5,83.5 - parent: 2 - - uid: 5682 + pos: -0.5,11.5 + parent: 36861 + - uid: 50655 components: - type: Transform - pos: 45.5,5.5 - parent: 2 - - uid: 5683 + pos: -1.5,11.5 + parent: 36861 + - uid: 50656 components: - type: Transform - pos: -54.5,34.5 - parent: 2 - - uid: 6169 + pos: -1.5,13.5 + parent: 36861 + - uid: 50657 components: - type: Transform - pos: -6.5,5.5 - parent: 45711 - - uid: 6170 + pos: 3.5,13.5 + parent: 36861 + - uid: 50658 components: - type: Transform - pos: -6.5,6.5 - parent: 45711 - - uid: 7824 + pos: 4.5,13.5 + parent: 36861 + - uid: 50659 components: - type: Transform - pos: -58.5,59.5 - parent: 2 - - uid: 7832 + pos: 5.5,13.5 + parent: 36861 + - uid: 50660 components: - type: Transform - pos: -49.5,42.5 - parent: 2 - - uid: 7893 + pos: 5.5,12.5 + parent: 36861 + - uid: 50661 components: - type: Transform - pos: 26.5,22.5 - parent: 2 - - uid: 7913 + pos: 5.5,11.5 + parent: 36861 + - uid: 50662 components: - type: Transform - pos: 26.5,15.5 - parent: 2 - - uid: 7937 + pos: 5.5,14.5 + parent: 36861 + - uid: 50663 components: - type: Transform - pos: 13.5,39.5 - parent: 2 - - uid: 7982 + pos: 5.5,15.5 + parent: 36861 + - uid: 50664 components: - type: Transform - pos: 37.5,26.5 - parent: 2 - - uid: 7983 + pos: 5.5,10.5 + parent: 36861 + - uid: 50665 components: - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 8001 + pos: 6.5,11.5 + parent: 36861 + - uid: 50666 components: - type: Transform - pos: -58.5,29.5 - parent: 2 - - uid: 8018 + pos: 7.5,11.5 + parent: 36861 + - uid: 50667 components: - type: Transform - pos: 21.5,0.5 - parent: 2 - - uid: 8092 + pos: 8.5,11.5 + parent: 36861 + - uid: 50668 components: - type: Transform - pos: -49.5,21.5 - parent: 2 - - uid: 8108 + pos: 9.5,11.5 + parent: 36861 + - uid: 50669 components: - type: Transform - pos: -51.5,50.5 - parent: 2 - - uid: 8113 + pos: 10.5,11.5 + parent: 36861 + - uid: 50670 components: - type: Transform - pos: -52.5,50.5 - parent: 2 - - uid: 8115 + pos: 11.5,11.5 + parent: 36861 + - uid: 50671 components: - type: Transform - pos: -51.5,52.5 - parent: 2 - - uid: 8119 + pos: 2.5,21.5 + parent: 36861 + - uid: 50672 components: - type: Transform - pos: -52.5,53.5 - parent: 2 - - uid: 8120 + pos: 2.5,20.5 + parent: 36861 + - uid: 50673 components: - type: Transform - pos: -52.5,52.5 - parent: 2 - - uid: 8121 + pos: 2.5,19.5 + parent: 36861 + - uid: 50674 components: - type: Transform - pos: -51.5,51.5 - parent: 2 - - uid: 8124 + pos: 2.5,18.5 + parent: 36861 + - uid: 50675 components: - type: Transform - pos: 20.5,-0.5 - parent: 2 - - uid: 8133 + pos: 2.5,17.5 + parent: 36861 + - uid: 50676 components: - type: Transform - pos: -51.5,48.5 - parent: 2 - - uid: 8135 + pos: 1.5,19.5 + parent: 36861 + - uid: 50677 components: - type: Transform - pos: -58.5,32.5 - parent: 2 - - uid: 9070 + pos: 3.5,19.5 + parent: 36861 + - uid: 50678 components: - type: Transform - pos: 3.5,22.5 - parent: 2 - - uid: 9548 + pos: 4.5,19.5 + parent: 36861 + - uid: 50679 components: - type: Transform - pos: -24.5,-31.5 - parent: 2 - - uid: 9554 + pos: 5.5,19.5 + parent: 36861 + - uid: 50680 components: - type: Transform - pos: 39.5,20.5 - parent: 2 - - uid: 9555 + pos: 5.5,18.5 + parent: 36861 + - uid: 50681 components: - type: Transform - pos: 39.5,21.5 - parent: 2 - - uid: 9556 + pos: 5.5,17.5 + parent: 36861 + - uid: 50682 components: - type: Transform - pos: 39.5,22.5 - parent: 2 - - uid: 9557 + pos: 13.5,19.5 + parent: 36861 + - uid: 50683 components: - type: Transform - pos: 40.5,21.5 - parent: 2 - - uid: 9558 + pos: 12.5,19.5 + parent: 36861 + - uid: 50684 components: - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 9559 + pos: 11.5,19.5 + parent: 36861 + - uid: 50685 components: - type: Transform - pos: 38.5,21.5 - parent: 2 - - uid: 9560 + pos: 10.5,19.5 + parent: 36861 + - uid: 50686 components: - type: Transform - pos: 38.5,22.5 - parent: 2 - - uid: 9561 + pos: 9.5,19.5 + parent: 36861 + - uid: 50687 components: - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 9562 + pos: 8.5,19.5 + parent: 36861 + - uid: 50688 components: - type: Transform - pos: 36.5,21.5 - parent: 2 - - uid: 9563 + pos: 9.5,18.5 + parent: 36861 + - uid: 50689 components: - type: Transform - pos: 35.5,21.5 - parent: 2 - - uid: 9564 + pos: 9.5,17.5 + parent: 36861 + - uid: 50690 components: - type: Transform - pos: 34.5,21.5 - parent: 2 - - uid: 9565 + pos: 9.5,16.5 + parent: 36861 + - uid: 50691 components: - type: Transform - pos: 33.5,21.5 - parent: 2 - - uid: 9566 + pos: 9.5,15.5 + parent: 36861 + - uid: 50692 components: - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 9567 + pos: 9.5,14.5 + parent: 36861 + - uid: 50693 components: - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 9568 + pos: 10.5,14.5 + parent: 36861 + - uid: 50694 components: - type: Transform - pos: 31.5,22.5 - parent: 2 - - uid: 9569 + pos: 11.5,14.5 + parent: 36861 + - uid: 50695 components: - type: Transform - pos: 31.5,23.5 - parent: 2 - - uid: 9570 + pos: 12.5,14.5 + parent: 36861 + - uid: 50696 components: - type: Transform - pos: 31.5,24.5 - parent: 2 - - uid: 9571 + pos: 13.5,14.5 + parent: 36861 + - uid: 50697 components: - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 9572 + pos: 14.5,14.5 + parent: 36861 + - uid: 50698 components: - type: Transform - pos: 31.5,26.5 - parent: 2 - - uid: 9573 + pos: 15.5,14.5 + parent: 36861 + - uid: 50699 components: - type: Transform - pos: 31.5,27.5 - parent: 2 - - uid: 9574 + pos: 16.5,14.5 + parent: 36861 + - uid: 51049 components: - type: Transform - pos: 31.5,28.5 + pos: 66.5,48.5 parent: 2 - - uid: 9577 + - uid: 51491 components: - type: Transform - pos: 30.5,28.5 + pos: 35.5,4.5 parent: 2 - - uid: 9578 + - uid: 51492 components: - type: Transform - pos: 29.5,28.5 + pos: 38.5,3.5 parent: 2 - - uid: 9581 + - uid: 51954 components: - type: Transform - pos: 28.5,28.5 + pos: 66.5,49.5 parent: 2 - - uid: 9582 + - uid: 51955 components: - type: Transform - pos: 27.5,28.5 + pos: 66.5,50.5 parent: 2 - - uid: 9597 + - uid: 51956 components: - type: Transform - pos: 27.5,27.5 + pos: 66.5,51.5 parent: 2 - - uid: 9598 + - uid: 51957 components: - type: Transform - pos: 27.5,26.5 + pos: 92.5,26.5 parent: 2 - - uid: 9599 + - uid: 51958 components: - type: Transform - pos: 27.5,25.5 + pos: 66.5,41.5 parent: 2 - - uid: 9600 + - uid: 51959 components: - type: Transform - pos: 27.5,24.5 + pos: 66.5,40.5 parent: 2 - - uid: 9601 + - uid: 51960 components: - type: Transform - pos: 27.5,23.5 + pos: 66.5,39.5 parent: 2 - - uid: 9602 + - uid: 51961 components: - type: Transform - pos: 27.5,22.5 + pos: 66.5,38.5 parent: 2 - - uid: 9605 + - uid: 51962 components: - type: Transform - pos: 26.5,16.5 + pos: 66.5,37.5 parent: 2 - - uid: 9606 + - uid: 51963 components: - type: Transform - pos: 26.5,17.5 + pos: 66.5,36.5 parent: 2 - - uid: 9607 + - uid: 51964 components: - type: Transform - pos: 26.5,18.5 + pos: 66.5,35.5 parent: 2 - - uid: 9608 + - uid: 51965 components: - type: Transform - pos: 23.5,15.5 + pos: 66.5,34.5 parent: 2 - - uid: 9609 + - uid: 51966 components: - type: Transform - pos: 23.5,16.5 + pos: 66.5,33.5 parent: 2 - - uid: 9610 + - uid: 51967 components: - type: Transform - pos: 23.5,17.5 + pos: 66.5,32.5 parent: 2 - - uid: 9611 + - uid: 51968 components: - type: Transform - pos: 23.5,18.5 + pos: 66.5,31.5 parent: 2 - - uid: 9612 + - uid: 51969 components: - type: Transform - pos: 23.5,19.5 + pos: 66.5,30.5 parent: 2 - - uid: 9613 + - uid: 51970 components: - type: Transform - pos: 23.5,20.5 + pos: 66.5,29.5 parent: 2 - - uid: 9614 + - uid: 51971 components: - type: Transform - pos: 24.5,20.5 + pos: 66.5,28.5 parent: 2 - - uid: 9615 + - uid: 51972 components: - type: Transform - pos: 25.5,20.5 + pos: 66.5,27.5 parent: 2 - - uid: 9616 + - uid: 51975 components: - type: Transform - pos: 26.5,20.5 + pos: 66.5,26.5 parent: 2 - - uid: 9629 + - uid: 51976 components: - type: Transform - pos: 26.5,19.5 + pos: 66.5,25.5 parent: 2 - - uid: 9632 + - uid: 51980 components: - type: Transform - pos: 26.5,21.5 + pos: 67.5,25.5 parent: 2 - - uid: 9633 + - uid: 51986 components: - type: Transform - pos: 24.5,18.5 + pos: 68.5,25.5 parent: 2 - - uid: 9636 + - uid: 51992 components: - type: Transform - pos: 24.5,17.5 + pos: 69.5,25.5 parent: 2 - - uid: 9637 + - uid: 52004 components: - type: Transform - pos: 24.5,16.5 + pos: 70.5,25.5 parent: 2 - - uid: 9638 + - uid: 52005 components: - type: Transform - pos: 24.5,15.5 + pos: 71.5,25.5 parent: 2 - - uid: 9644 + - uid: 52006 components: - type: Transform - pos: 25.5,18.5 + pos: 72.5,25.5 parent: 2 - - uid: 9645 + - uid: 52007 components: - type: Transform - pos: 25.5,17.5 + pos: 73.5,25.5 parent: 2 - - uid: 9646 + - uid: 52008 components: - type: Transform - pos: 25.5,16.5 + pos: 74.5,25.5 parent: 2 - - uid: 9647 + - uid: 52009 components: - type: Transform - pos: 25.5,15.5 + pos: 75.5,25.5 parent: 2 - - uid: 9648 + - uid: 52010 components: - type: Transform - pos: 24.5,14.5 + pos: 76.5,25.5 parent: 2 - - uid: 9649 + - uid: 52011 components: - type: Transform - pos: 24.5,13.5 + pos: 77.5,25.5 parent: 2 - - uid: 9650 + - uid: 52012 components: - type: Transform - pos: 23.5,13.5 + pos: 78.5,25.5 parent: 2 - - uid: 9651 + - uid: 52013 components: - type: Transform - pos: 22.5,13.5 + pos: 79.5,25.5 parent: 2 - - uid: 9652 + - uid: 52014 components: - type: Transform - pos: 21.5,13.5 + pos: 80.5,25.5 parent: 2 - - uid: 9656 + - uid: 52015 components: - type: Transform - pos: 20.5,13.5 + pos: 81.5,25.5 parent: 2 - - uid: 9659 + - uid: 52016 components: - type: Transform - pos: 20.5,30.5 + pos: 82.5,25.5 parent: 2 - - uid: 9660 + - uid: 52017 components: - type: Transform - pos: 20.5,29.5 + pos: 83.5,25.5 parent: 2 - - uid: 9662 + - uid: 52018 components: - type: Transform - pos: 20.5,28.5 + pos: 84.5,25.5 parent: 2 - - uid: 9663 + - uid: 52019 components: - type: Transform - pos: 20.5,27.5 + pos: 85.5,25.5 parent: 2 - - uid: 9664 + - uid: 52020 components: - type: Transform - pos: 20.5,26.5 + pos: 86.5,25.5 parent: 2 - - uid: 9665 + - uid: 52021 components: - type: Transform - pos: 21.5,26.5 + pos: 87.5,25.5 parent: 2 - - uid: 9666 + - uid: 52022 components: - type: Transform - pos: 22.5,26.5 + pos: 88.5,25.5 parent: 2 - - uid: 9667 + - uid: 52023 components: - type: Transform - pos: 23.5,26.5 + pos: 89.5,25.5 parent: 2 - - uid: 9669 + - uid: 52024 components: - type: Transform - pos: 23.5,27.5 + pos: 90.5,25.5 parent: 2 - - uid: 9670 + - uid: 52025 components: - type: Transform - pos: 23.5,28.5 + pos: 91.5,25.5 parent: 2 - - uid: 9672 + - uid: 52026 components: - type: Transform - pos: 23.5,29.5 + pos: 92.5,25.5 parent: 2 - - uid: 9673 + - uid: 52027 components: - type: Transform - pos: 23.5,30.5 + pos: 92.5,27.5 parent: 2 - - uid: 9674 + - uid: 52028 components: - type: Transform - pos: 22.5,30.5 + pos: 92.5,28.5 parent: 2 - - uid: 9677 + - uid: 52029 components: - type: Transform - pos: 21.5,30.5 + pos: 92.5,29.5 parent: 2 - - uid: 9678 + - uid: 52030 components: - type: Transform - pos: 24.5,28.5 + pos: 92.5,30.5 parent: 2 - - uid: 9679 + - uid: 52031 components: - type: Transform - pos: 25.5,28.5 + pos: 92.5,31.5 parent: 2 - - uid: 9680 + - uid: 52032 components: - type: Transform - pos: 26.5,28.5 + pos: 92.5,32.5 parent: 2 - - uid: 9681 + - uid: 52033 components: - type: Transform - pos: 20.5,14.5 + pos: 92.5,33.5 parent: 2 - - uid: 9683 + - uid: 52034 components: - type: Transform - pos: 20.5,15.5 + pos: 92.5,34.5 parent: 2 - - uid: 9684 + - uid: 52035 components: - type: Transform - pos: 20.5,16.5 + pos: 92.5,35.5 parent: 2 - - uid: 9685 + - uid: 52036 components: - type: Transform - pos: 20.5,17.5 + pos: 92.5,38.5 parent: 2 - - uid: 9686 + - uid: 52037 components: - type: Transform - pos: 20.5,18.5 + pos: 92.5,39.5 parent: 2 - - uid: 9687 + - uid: 52038 components: - type: Transform - pos: 20.5,19.5 + pos: 92.5,40.5 parent: 2 - - uid: 9688 + - uid: 52039 components: - type: Transform - pos: 20.5,20.5 + pos: 92.5,41.5 parent: 2 - - uid: 9689 + - uid: 52040 components: - type: Transform - pos: 20.5,21.5 + pos: 92.5,42.5 parent: 2 - - uid: 9690 + - uid: 52041 components: - type: Transform - pos: 20.5,22.5 + pos: 92.5,43.5 parent: 2 - - uid: 9692 + - uid: 52042 components: - type: Transform - pos: 19.5,22.5 + pos: 92.5,44.5 parent: 2 - - uid: 9693 + - uid: 52043 components: - type: Transform - pos: 18.5,22.5 + pos: 92.5,45.5 parent: 2 - - uid: 9694 + - uid: 52044 components: - type: Transform - pos: 17.5,22.5 + pos: 92.5,46.5 parent: 2 - - uid: 9695 + - uid: 52045 components: - type: Transform - pos: 16.5,22.5 + pos: 92.5,47.5 parent: 2 - - uid: 9699 + - uid: 52046 components: - type: Transform - pos: 15.5,22.5 + pos: 92.5,48.5 parent: 2 - - uid: 9700 + - uid: 52047 components: - type: Transform - pos: 14.5,22.5 + pos: 92.5,51.5 parent: 2 - - uid: 9701 + - uid: 52048 components: - type: Transform - pos: 13.5,22.5 + pos: 91.5,51.5 parent: 2 - - uid: 9702 + - uid: 52049 components: - type: Transform - pos: 12.5,22.5 + pos: 90.5,51.5 parent: 2 - - uid: 9703 + - uid: 52050 components: - type: Transform - pos: 11.5,22.5 + pos: 72.5,31.5 parent: 2 - - uid: 9704 + - uid: 52051 components: - type: Transform - pos: 10.5,22.5 + pos: 77.5,51.5 parent: 2 - - uid: 9705 + - uid: 52052 components: - type: Transform - pos: 9.5,22.5 + pos: 76.5,51.5 parent: 2 - - uid: 9706 + - uid: 52053 components: - type: Transform - pos: 8.5,22.5 + pos: 75.5,51.5 parent: 2 - - uid: 9707 + - uid: 52054 components: - type: Transform - pos: 7.5,22.5 + pos: 74.5,51.5 parent: 2 - - uid: 9708 + - uid: 52055 components: - type: Transform - pos: 6.5,22.5 + pos: 73.5,51.5 parent: 2 - - uid: 9709 + - uid: 52056 components: - type: Transform - pos: 5.5,22.5 + pos: 72.5,51.5 parent: 2 - - uid: 9710 + - uid: 52057 components: - type: Transform - pos: 4.5,22.5 + pos: 71.5,51.5 parent: 2 - - uid: 9711 + - uid: 52058 components: - type: Transform - pos: 20.5,12.5 + pos: 71.5,46.5 parent: 2 - - uid: 9712 + - uid: 52059 components: - type: Transform - pos: 20.5,11.5 + pos: 71.5,45.5 parent: 2 - - uid: 9713 + - uid: 52060 components: - type: Transform - pos: 20.5,10.5 + pos: 71.5,44.5 parent: 2 - - uid: 9714 + - uid: 52061 components: - type: Transform - pos: 20.5,9.5 + pos: 71.5,43.5 parent: 2 - - uid: 9715 + - uid: 52062 components: - type: Transform - pos: 20.5,8.5 + pos: 71.5,42.5 parent: 2 - - uid: 9716 + - uid: 52063 components: - type: Transform - pos: 20.5,7.5 + pos: 71.5,41.5 parent: 2 - - uid: 9717 + - uid: 52064 components: - type: Transform - pos: 20.5,6.5 + pos: 71.5,40.5 parent: 2 - - uid: 9718 + - uid: 52065 components: - type: Transform - pos: 20.5,5.5 + pos: 71.5,39.5 parent: 2 - - uid: 9724 + - uid: 52066 components: - type: Transform - pos: 20.5,4.5 + pos: 71.5,38.5 parent: 2 - - uid: 9725 + - uid: 52067 components: - type: Transform - pos: 20.5,3.5 + pos: 71.5,37.5 parent: 2 - - uid: 9726 + - uid: 52099 components: - type: Transform - pos: 20.5,2.5 + pos: 71.5,36.5 parent: 2 - - uid: 9727 + - uid: 52186 components: - type: Transform - pos: 20.5,1.5 + pos: 71.5,35.5 parent: 2 - - uid: 9728 + - uid: 52187 components: - type: Transform - pos: 20.5,0.5 + pos: 71.5,34.5 parent: 2 - - uid: 9729 + - uid: 52191 components: - type: Transform - pos: 2.5,22.5 + pos: 71.5,33.5 parent: 2 - - uid: 9730 + - uid: 52192 components: - type: Transform - pos: 1.5,22.5 + pos: 71.5,32.5 parent: 2 - - uid: 9733 + - uid: 52193 components: - type: Transform - pos: 0.5,22.5 + pos: 71.5,31.5 parent: 2 - - uid: 9735 + - uid: 52197 components: - type: Transform - pos: -0.5,22.5 + pos: 71.5,30.5 parent: 2 - - uid: 9736 + - uid: 52198 components: - type: Transform - pos: -0.5,23.5 + pos: 72.5,30.5 parent: 2 - - uid: 9737 + - uid: 52199 components: - type: Transform - pos: -0.5,24.5 + pos: 73.5,30.5 parent: 2 - - uid: 9738 + - uid: 52200 components: - type: Transform - pos: -0.5,25.5 + pos: 74.5,30.5 parent: 2 - - uid: 9739 + - uid: 52201 components: - type: Transform - pos: -0.5,26.5 + pos: 75.5,30.5 parent: 2 - - uid: 9740 + - uid: 52202 components: - type: Transform - pos: -0.5,27.5 + pos: 76.5,30.5 parent: 2 - - uid: 9741 + - uid: 52203 components: - type: Transform - pos: -0.5,28.5 + pos: 77.5,30.5 parent: 2 - - uid: 9742 + - uid: 52205 components: - type: Transform - pos: -0.5,29.5 + pos: 78.5,30.5 parent: 2 - - uid: 9743 + - uid: 52206 components: - type: Transform - pos: -0.5,30.5 + pos: 79.5,30.5 parent: 2 - - uid: 9744 + - uid: 52211 components: - type: Transform - pos: -0.5,31.5 + pos: 80.5,30.5 parent: 2 - - uid: 9745 + - uid: 52212 components: - type: Transform - pos: -0.5,32.5 + pos: 81.5,30.5 parent: 2 - - uid: 9746 + - uid: 52213 components: - type: Transform - pos: -0.5,33.5 + pos: 82.5,30.5 parent: 2 - - uid: 9747 + - uid: 52214 components: - type: Transform - pos: -0.5,34.5 + pos: 83.5,30.5 parent: 2 - - uid: 9748 + - uid: 52216 components: - type: Transform - pos: -0.5,35.5 + pos: 84.5,30.5 parent: 2 - - uid: 9749 + - uid: 52311 components: - type: Transform - pos: -0.5,36.5 + pos: 85.5,30.5 parent: 2 - - uid: 9750 + - uid: 52414 components: - type: Transform - pos: -0.5,37.5 + pos: 86.5,30.5 parent: 2 - - uid: 9751 + - uid: 52439 components: - type: Transform - pos: -0.5,38.5 + pos: 87.5,30.5 parent: 2 - - uid: 9752 + - uid: 52451 components: - type: Transform - pos: -0.5,39.5 + pos: 87.5,31.5 parent: 2 - - uid: 9753 + - uid: 52482 components: - type: Transform - pos: -0.5,40.5 + pos: 87.5,32.5 parent: 2 - - uid: 9754 + - uid: 52484 components: - type: Transform - pos: -0.5,41.5 + pos: 87.5,33.5 parent: 2 - - uid: 9755 + - uid: 52486 components: - type: Transform - pos: -0.5,42.5 + pos: 87.5,34.5 parent: 2 - - uid: 9756 + - uid: 52533 components: - type: Transform - pos: -0.5,43.5 + pos: 87.5,35.5 parent: 2 - - uid: 9757 + - uid: 52534 components: - type: Transform - pos: -0.5,44.5 + pos: 87.5,36.5 parent: 2 - - uid: 9758 + - uid: 52535 components: - type: Transform - pos: -0.5,45.5 + pos: 87.5,37.5 parent: 2 - - uid: 9759 + - uid: 52536 components: - type: Transform - pos: -0.5,46.5 + pos: 87.5,38.5 parent: 2 - - uid: 9760 + - uid: 52537 components: - type: Transform - pos: -0.5,47.5 + pos: 87.5,39.5 parent: 2 - - uid: 9761 + - uid: 52568 components: - type: Transform - pos: -0.5,48.5 + pos: 87.5,40.5 parent: 2 - - uid: 9762 + - uid: 52595 components: - type: Transform - pos: -0.5,49.5 + pos: 87.5,41.5 parent: 2 - - uid: 9763 + - uid: 52623 components: - type: Transform - pos: -0.5,50.5 + pos: 87.5,42.5 parent: 2 - - uid: 9764 + - uid: 52624 components: - type: Transform - pos: -1.5,50.5 + pos: 87.5,43.5 parent: 2 - - uid: 9765 + - uid: 52627 components: - type: Transform - pos: -2.5,50.5 + pos: 87.5,44.5 parent: 2 - - uid: 9766 + - uid: 52628 components: - type: Transform - pos: -3.5,50.5 + pos: 87.5,45.5 parent: 2 - - uid: 9767 + - uid: 52629 components: - type: Transform - pos: -4.5,50.5 + pos: 87.5,46.5 parent: 2 - - uid: 9768 + - uid: 52630 components: - type: Transform - pos: -5.5,50.5 + pos: 86.5,46.5 parent: 2 - - uid: 9769 + - uid: 52632 components: - type: Transform - pos: -6.5,50.5 + pos: 85.5,46.5 parent: 2 - - uid: 9770 + - uid: 52633 components: - type: Transform - pos: -7.5,50.5 + pos: 84.5,46.5 parent: 2 - - uid: 9771 + - uid: 52634 components: - type: Transform - pos: -8.5,50.5 + pos: 83.5,46.5 parent: 2 - - uid: 9772 + - uid: 52635 components: - type: Transform - pos: -9.5,50.5 + pos: 82.5,46.5 parent: 2 - - uid: 9773 + - uid: 52636 components: - type: Transform - pos: -10.5,50.5 + pos: 81.5,46.5 parent: 2 - - uid: 9774 + - uid: 52638 components: - type: Transform - pos: -11.5,50.5 + pos: 80.5,46.5 parent: 2 - - uid: 9776 + - uid: 52639 components: - type: Transform - pos: -12.5,50.5 + pos: 79.5,46.5 parent: 2 - - uid: 9777 + - uid: 52640 components: - type: Transform - pos: -13.5,50.5 + pos: 78.5,46.5 parent: 2 - - uid: 9778 + - uid: 52641 components: - type: Transform - pos: -13.5,49.5 + pos: 77.5,46.5 parent: 2 - - uid: 9779 + - uid: 52642 components: - type: Transform - pos: -13.5,48.5 + pos: 76.5,46.5 parent: 2 - - uid: 9780 + - uid: 52649 components: - type: Transform - pos: -13.5,47.5 + pos: 75.5,46.5 parent: 2 - - uid: 9781 + - uid: 52650 components: - type: Transform - pos: -12.5,47.5 + pos: 74.5,46.5 parent: 2 - - uid: 9782 + - uid: 52651 components: - type: Transform - pos: -11.5,47.5 + pos: 73.5,46.5 parent: 2 - - uid: 9783 + - uid: 52652 components: - type: Transform - pos: -11.5,46.5 + pos: 72.5,46.5 parent: 2 - - uid: 9784 + - uid: 52654 components: - type: Transform - pos: -10.5,46.5 + pos: 70.5,42.5 parent: 2 - - uid: 9785 + - uid: 52655 components: - type: Transform - pos: -41.5,30.5 + pos: 69.5,42.5 parent: 2 - - uid: 9786 + - uid: 52656 components: - type: Transform - pos: -1.5,22.5 + pos: 68.5,42.5 parent: 2 - - uid: 9787 + - uid: 52657 components: - type: Transform - pos: -2.5,22.5 + pos: 67.5,42.5 parent: 2 - - uid: 9788 + - uid: 52658 components: - type: Transform - pos: -3.5,22.5 + pos: 72.5,45.5 parent: 2 - - uid: 9789 + - uid: 52659 components: - type: Transform - pos: -4.5,22.5 + pos: 86.5,45.5 parent: 2 - - uid: 9790 + - uid: 52660 components: - type: Transform - pos: -5.5,22.5 + pos: 86.5,31.5 parent: 2 - - uid: 9791 + - uid: 52662 components: - type: Transform - pos: -6.5,22.5 + pos: -31.5,28.5 parent: 2 - - uid: 9792 + - uid: 53376 components: - type: Transform - pos: -7.5,22.5 + pos: -17.5,-0.5 parent: 2 - - uid: 9793 + - uid: 53377 components: - type: Transform - pos: -8.5,22.5 + pos: -13.5,-5.5 parent: 2 - - uid: 9794 + - uid: 53850 components: - type: Transform - pos: -9.5,22.5 + pos: -17.5,-1.5 parent: 2 - - uid: 9795 + - uid: 53851 components: - type: Transform - pos: -10.5,22.5 + pos: -13.5,-0.5 parent: 2 - - uid: 9796 + - uid: 53852 components: - type: Transform - pos: -11.5,22.5 + pos: -13.5,-1.5 parent: 2 - - uid: 9797 + - uid: 53855 components: - type: Transform - pos: -12.5,22.5 + pos: -17.5,-2.5 parent: 2 - - uid: 9798 + - uid: 53856 components: - type: Transform - pos: -13.5,22.5 + pos: -16.5,-2.5 parent: 2 - - uid: 9799 + - uid: 53857 components: - type: Transform - pos: -14.5,22.5 + pos: -15.5,-2.5 parent: 2 - - uid: 9800 + - uid: 53858 components: - type: Transform - pos: -15.5,22.5 + pos: -14.5,-2.5 parent: 2 - - uid: 9801 + - uid: 53859 components: - type: Transform - pos: -16.5,22.5 + pos: -13.5,-2.5 parent: 2 - - uid: 9802 + - uid: 53860 components: - type: Transform - pos: -17.5,22.5 + pos: -15.5,4.5 parent: 2 - - uid: 9803 + - uid: 54168 components: - type: Transform - pos: -18.5,22.5 + pos: 25.5,20.5 parent: 2 - - uid: 9804 +- proto: CableApcStack + entities: + - uid: 15386 components: - type: Transform - pos: -19.5,22.5 + pos: 12.454536,-17.45927 parent: 2 - - uid: 9805 + - uid: 22927 components: - type: Transform - pos: -20.5,22.5 + pos: 59.596058,46.494617 parent: 2 - - uid: 9806 + - uid: 26012 components: - type: Transform - pos: -21.5,22.5 + pos: 15.586965,9.401894 parent: 2 - - uid: 9807 + - uid: 37214 components: - type: Transform - pos: -0.5,21.5 - parent: 2 - - uid: 9808 + pos: 40.41101,-11.629791 + parent: 36861 + - uid: 43341 components: - type: Transform - pos: -0.5,20.5 + pos: 50.55645,75.53959 parent: 2 - - uid: 9809 + - uid: 47738 components: - type: Transform - pos: -0.5,19.5 + pos: 36.587772,-18.492594 parent: 2 - - uid: 9810 +- proto: CableApcStack1 + entities: + - uid: 1603 components: - type: Transform - pos: -0.5,18.5 + pos: 45.572983,-25.0347 parent: 2 - - uid: 9811 + - uid: 1640 components: - type: Transform - pos: -0.5,17.5 + pos: 43.588608,-24.760485 parent: 2 - - uid: 9812 + - uid: 1659 components: - type: Transform - pos: -0.5,16.5 + pos: 34.229233,-29.885485 parent: 2 - - uid: 9813 + - uid: 4733 components: - type: Transform - pos: -0.5,15.5 + pos: -94.772575,32.32265 parent: 2 - - uid: 9814 + - uid: 4736 components: - type: Transform - pos: -0.5,14.5 + pos: -94.19447,31.119518 parent: 2 - - uid: 9815 + - uid: 4753 components: - type: Transform - pos: -0.5,13.5 + pos: -95.52964,42.461914 parent: 2 - - uid: 9819 + - uid: 4757 components: - type: Transform - pos: -0.5,12.5 + pos: -94.52965,40.44629 parent: 2 - - uid: 9822 + - uid: 4911 components: - type: Transform - pos: 0.5,12.5 + rot: -1.5707963267948966 rad + pos: 9.96231,-66.215576 parent: 2 - - uid: 9823 + - uid: 6073 components: - type: Transform - pos: 1.5,12.5 + pos: 31.351784,-25.621244 parent: 2 - - uid: 9826 + - uid: 6074 components: - type: Transform - pos: 2.5,12.5 + pos: 36.25774,-25.636421 parent: 2 - - uid: 9828 + - uid: 6076 components: - type: Transform - pos: 3.5,12.5 + pos: 50.432137,-58.461723 parent: 2 - - uid: 9836 + - uid: 6077 components: - type: Transform - pos: 4.5,12.5 + pos: 30.564049,-27.445374 parent: 2 - - uid: 9837 + - uid: 6079 components: - type: Transform - pos: 5.5,12.5 + rot: -1.5707963267948966 rad + pos: -18.637724,-61.331596 parent: 2 - - uid: 9841 + - uid: 6081 components: - type: Transform - pos: 6.5,12.5 + rot: -1.5707963267948966 rad + pos: -18.294338,-61.77491 parent: 2 - - uid: 9842 + - uid: 6083 components: - type: Transform - pos: 6.5,11.5 + pos: -36.756416,38.435074 parent: 2 - - uid: 9843 + - uid: 6086 components: - type: Transform - pos: 7.5,11.5 + pos: -36.55236,42.49345 parent: 2 - - uid: 9844 + - uid: 6087 components: - type: Transform - pos: 7.5,10.5 + pos: -36.599236,43.63407 parent: 2 - - uid: 9845 + - uid: 6088 components: - type: Transform - pos: 8.5,10.5 + rot: -3.5930822761542913E-09 rad + pos: -35.430035,40.520737 parent: 2 - - uid: 9852 + - uid: 6089 components: - type: Transform - pos: 8.5,9.5 + pos: 53.872986,-56.25301 parent: 2 - - uid: 9860 + - uid: 6090 components: - type: Transform - pos: 8.5,8.5 + pos: 54.560486,-57.34676 parent: 2 - - uid: 9867 + - uid: 6091 components: - type: Transform - pos: 8.5,7.5 + pos: 54.185486,-57.237385 parent: 2 - - uid: 9875 + - uid: 6092 components: - type: Transform - pos: 8.5,6.5 + pos: 53.810486,-57.299885 parent: 2 - - uid: 9876 + - uid: 6093 components: - type: Transform - pos: 8.5,5.5 + pos: 53.82611,-56.924885 parent: 2 - - uid: 9878 + - uid: 8936 components: - type: Transform - pos: 8.5,4.5 + pos: 40.44776,-30.57617 parent: 2 - - uid: 9881 + - uid: 9961 components: - type: Transform - pos: 8.5,3.5 + pos: 43.354237,-30.604235 parent: 2 - - uid: 9882 + - uid: 12996 components: - type: Transform - pos: 8.5,2.5 + rot: -1.5707963267948966 rad + pos: 6.55606,-66.778076 parent: 2 - - uid: 9884 + - uid: 20733 components: - type: Transform - pos: 8.5,1.5 + rot: -1.5707963267948966 rad + pos: -37.38823,38.214893 parent: 2 - - uid: 9886 + - uid: 22235 components: - type: Transform - pos: 8.5,0.5 + pos: 36.479233,-33.909695 parent: 2 - - uid: 9887 + - uid: 22305 components: - type: Transform - pos: 7.5,0.5 + pos: 34.416733,-34.1597 parent: 2 - - uid: 9895 + - uid: 22334 components: - type: Transform - pos: 6.5,0.5 + pos: 40.151104,-28.394073 parent: 2 - - uid: 9898 + - uid: 22337 components: - type: Transform - pos: 5.5,0.5 + pos: 41.026108,-33.253445 parent: 2 - - uid: 9899 + - uid: 31824 components: - type: Transform - pos: 4.5,0.5 + rot: -1.5707963267948966 rad + pos: -37.534065,37.32948 parent: 2 - - uid: 9900 + - uid: 33462 components: - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 9901 + rot: -1.5707963267948966 rad + pos: 6.63356,-11.579286 + parent: 33049 + - uid: 33463 components: - type: Transform - pos: 2.5,0.5 - parent: 2 - - uid: 9902 + pos: 5.524185,-10.219911 + parent: 33049 + - uid: 34959 components: - type: Transform - pos: 1.5,0.5 - parent: 2 - - uid: 9903 + rot: -1.5707963267948966 rad + pos: -7.521451,16.698822 + parent: 34641 + - uid: 34960 components: - type: Transform - pos: 0.5,0.5 - parent: 2 - - uid: 9904 + rot: -1.5707963267948966 rad + pos: -11.490201,15.651947 + parent: 34641 + - uid: 34961 components: - type: Transform - pos: -0.5,0.5 - parent: 2 - - uid: 9905 + rot: 3.141592653589793 rad + pos: -5.646451,15.839447 + parent: 34641 + - uid: 34962 components: - type: Transform - pos: -0.5,-0.5 - parent: 2 - - uid: 9906 + rot: -1.5707963267948966 rad + pos: -3.824254,10.424689 + parent: 34641 + - uid: 34963 components: - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 9907 + rot: 3.141592653589793 rad + pos: -3.105504,10.909064 + parent: 34641 + - uid: 36221 components: - type: Transform - pos: -0.5,-2.5 + rot: -1.5707963267948966 rad + pos: 46.391933,47.447025 parent: 2 - - uid: 9908 + - uid: 36222 components: - type: Transform - pos: -0.5,-3.5 + rot: 3.141592653589793 rad + pos: 47.34506,44.431396 parent: 2 - - uid: 9909 + - uid: 36223 components: - type: Transform - pos: -0.5,-4.5 + rot: 3.141592653589793 rad + pos: 49.43881,48.384525 parent: 2 - - uid: 9910 + - uid: 45372 components: - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 9911 + pos: -0.38714695,-1.2846315 + parent: 43176 + - uid: 45373 components: - type: Transform - pos: -0.5,-6.5 - parent: 2 - - uid: 9912 + pos: -0.15277195,-1.5971315 + parent: 43176 + - uid: 45569 components: - type: Transform - pos: -0.5,-7.5 - parent: 2 - - uid: 9913 + rot: 3.141592653589793 rad + pos: 0.5672201,3.0034144 + parent: 45518 + - uid: 45570 components: - type: Transform - pos: -1.5,-7.5 - parent: 2 - - uid: 9914 + rot: 1.5707963267948966 rad + pos: -0.8546549,-2.4103065 + parent: 45518 + - uid: 45571 components: - type: Transform - pos: -58.5,31.5 - parent: 2 - - uid: 9915 + rot: -1.5707963267948966 rad + pos: 1.5359701,-2.2489543 + parent: 45518 + - uid: 45572 components: - type: Transform - pos: -48.5,40.5 - parent: 2 - - uid: 9916 + rot: 3.141592653589793 rad + pos: 4.00472,6.4116583 + parent: 45518 + - uid: 47565 components: - type: Transform - pos: -48.5,42.5 - parent: 2 - - uid: 9917 + rot: 3.141592653589793 rad + pos: 27.943169,28.129593 + parent: 45711 + - uid: 47566 components: - type: Transform - pos: -50.5,42.5 - parent: 2 - - uid: 9920 + rot: 3.141592653589793 rad + pos: 27.833794,27.957718 + parent: 45711 + - uid: 55962 components: - type: Transform - pos: -50.5,45.5 - parent: 2 - - uid: 9921 + pos: -32.829285,33.420166 + parent: 45711 + - uid: 55963 components: - type: Transform - pos: -52.5,48.5 - parent: 2 - - uid: 9922 + pos: -32.36055,33.060364 + parent: 45711 + - uid: 55964 components: - type: Transform - pos: -51.5,47.5 - parent: 2 - - uid: 9959 + pos: -32.36055,33.31067 + parent: 45711 + - uid: 55965 components: - type: Transform - pos: -41.5,22.5 - parent: 2 - - uid: 9960 + pos: -32.485535,33.34198 + parent: 45711 + - uid: 55966 components: - type: Transform - pos: -40.5,22.5 - parent: 2 - - uid: 9978 + pos: -32.79808,33.20117 + parent: 45711 +- proto: CableApcStack10 + entities: + - uid: 15337 components: - type: Transform - pos: -39.5,22.5 + pos: 80.44533,-44.8744 parent: 2 - - uid: 9980 + - uid: 15338 components: - type: Transform - pos: -38.5,22.5 + pos: 80.64845,-44.952526 parent: 2 - - uid: 10009 + - uid: 27258 components: - type: Transform - pos: -37.5,22.5 + pos: 39.03132,13.394435 parent: 2 - - uid: 10032 + - uid: 43969 components: - type: Transform - pos: -36.5,22.5 + pos: -26.486355,4.5057526 parent: 2 - - uid: 10038 + - uid: 45573 components: - type: Transform - pos: -35.5,22.5 - parent: 2 - - uid: 10044 + pos: -0.3702799,0.4252894 + parent: 45518 + - uid: 47567 components: - type: Transform - pos: -34.5,22.5 - parent: 2 - - uid: 10045 + pos: 37.573006,33.27738 + parent: 45711 + - uid: 47663 components: - type: Transform - pos: -33.5,22.5 + pos: 58.61351,-24.224495 parent: 2 - - uid: 10046 + - uid: 53315 components: - type: Transform - pos: -32.5,22.5 - parent: 2 - - uid: 10047 + pos: -11.681259,79.25043 + parent: 45711 +- proto: CableHV + entities: + - uid: 302 components: - type: Transform - pos: -31.5,22.5 + pos: -48.5,41.5 parent: 2 - - uid: 10048 + - uid: 1786 components: - type: Transform - pos: -30.5,22.5 + pos: 56.5,38.5 parent: 2 - - uid: 10049 + - uid: 1799 components: - type: Transform - pos: -29.5,22.5 + pos: 55.5,38.5 parent: 2 - - uid: 10050 + - uid: 5481 components: - type: Transform - pos: -28.5,22.5 + pos: -58.5,30.5 parent: 2 - - uid: 10051 + - uid: 5568 components: - type: Transform - pos: -27.5,22.5 + pos: -50.5,43.5 parent: 2 - - uid: 10056 + - uid: 5592 components: - type: Transform - pos: -26.5,22.5 + pos: -50.5,44.5 parent: 2 - - uid: 10057 + - uid: 5595 components: - type: Transform - pos: -25.5,22.5 + pos: -50.5,46.5 parent: 2 - - uid: 10058 + - uid: 5612 components: - type: Transform - pos: -24.5,22.5 + pos: -52.5,49.5 parent: 2 - - uid: 10068 + - uid: 5632 components: - type: Transform - pos: -23.5,22.5 + pos: -51.5,46.5 parent: 2 - - uid: 10071 + - uid: 5646 components: - type: Transform - pos: -22.5,22.5 + pos: 47.5,75.5 parent: 2 - - uid: 10085 + - uid: 5649 components: - type: Transform - pos: -21.5,21.5 + pos: -50.5,63.5 parent: 2 - - uid: 10088 + - uid: 5650 components: - type: Transform - pos: -21.5,20.5 + pos: 46.5,87.5 parent: 2 - - uid: 10091 + - uid: 5651 components: - type: Transform - pos: -21.5,19.5 + pos: 47.5,87.5 parent: 2 - - uid: 10095 + - uid: 5653 components: - type: Transform - pos: -21.5,18.5 + pos: 48.5,88.5 parent: 2 - - uid: 10096 + - uid: 5655 components: - type: Transform - pos: -21.5,17.5 + pos: 48.5,89.5 parent: 2 - - uid: 10097 + - uid: 5660 components: - type: Transform - pos: -21.5,16.5 + pos: 48.5,90.5 parent: 2 - - uid: 10098 + - uid: 5665 components: - type: Transform - pos: -21.5,15.5 + pos: 46.5,83.5 parent: 2 - - uid: 10099 + - uid: 5682 components: - type: Transform - pos: -21.5,14.5 + pos: 45.5,5.5 parent: 2 - - uid: 10112 + - uid: 5683 components: - type: Transform - pos: -21.5,13.5 + pos: -54.5,34.5 parent: 2 - - uid: 10118 + - uid: 6169 components: - type: Transform - pos: -21.5,12.5 - parent: 2 - - uid: 10119 + pos: -6.5,5.5 + parent: 45711 + - uid: 6170 components: - type: Transform - pos: -21.5,11.5 - parent: 2 - - uid: 10120 + pos: -6.5,6.5 + parent: 45711 + - uid: 6941 components: - type: Transform - pos: -21.5,10.5 + pos: 25.5,52.5 parent: 2 - - uid: 10121 + - uid: 6942 components: - type: Transform - pos: -21.5,9.5 + pos: 24.5,52.5 parent: 2 - - uid: 10128 + - uid: 7824 components: - type: Transform - pos: -21.5,8.5 + pos: -58.5,59.5 parent: 2 - - uid: 10133 + - uid: 7832 components: - type: Transform - pos: -21.5,7.5 + pos: -49.5,42.5 parent: 2 - - uid: 10141 + - uid: 7893 components: - type: Transform - pos: -21.5,6.5 + pos: 26.5,22.5 parent: 2 - - uid: 10143 + - uid: 7913 components: - type: Transform - pos: -21.5,5.5 + pos: 26.5,15.5 parent: 2 - - uid: 10146 + - uid: 7937 components: - type: Transform - pos: -21.5,4.5 + pos: 13.5,39.5 parent: 2 - - uid: 10159 + - uid: 7982 components: - type: Transform - pos: -21.5,3.5 + pos: 37.5,26.5 parent: 2 - - uid: 10160 + - uid: 7983 components: - type: Transform - pos: -21.5,2.5 + pos: 36.5,25.5 parent: 2 - - uid: 10161 + - uid: 8001 components: - type: Transform - pos: -21.5,1.5 + pos: -58.5,29.5 parent: 2 - - uid: 10169 + - uid: 8018 components: - type: Transform - pos: -21.5,0.5 + pos: 21.5,0.5 parent: 2 - - uid: 10170 + - uid: 8092 components: - type: Transform - pos: -21.5,-0.5 + pos: -49.5,21.5 parent: 2 - - uid: 10179 + - uid: 8108 components: - type: Transform - pos: -21.5,-1.5 + pos: -51.5,50.5 parent: 2 - - uid: 10197 + - uid: 8113 components: - type: Transform - pos: -21.5,-2.5 + pos: -52.5,50.5 parent: 2 - - uid: 10199 + - uid: 8115 components: - type: Transform - pos: -21.5,-3.5 + pos: -51.5,52.5 parent: 2 - - uid: 10202 + - uid: 8119 components: - type: Transform - pos: -21.5,-4.5 + pos: -52.5,53.5 parent: 2 - - uid: 10203 + - uid: 8120 components: - type: Transform - pos: -21.5,-5.5 + pos: -52.5,52.5 parent: 2 - - uid: 10204 + - uid: 8121 components: - type: Transform - pos: -21.5,-6.5 + pos: -51.5,51.5 parent: 2 - - uid: 10205 + - uid: 8124 components: - type: Transform - pos: -21.5,-7.5 + pos: 20.5,-0.5 parent: 2 - - uid: 10208 + - uid: 8133 components: - type: Transform - pos: -21.5,-8.5 + pos: -51.5,48.5 parent: 2 - - uid: 10209 + - uid: 8135 components: - type: Transform - pos: -21.5,-9.5 + pos: -58.5,32.5 parent: 2 - - uid: 10210 + - uid: 9070 components: - type: Transform - pos: -21.5,-10.5 + pos: 3.5,22.5 parent: 2 - - uid: 10211 + - uid: 9548 components: - type: Transform - pos: -21.5,-11.5 + pos: -24.5,-31.5 parent: 2 - - uid: 10212 + - uid: 9554 components: - type: Transform - pos: -21.5,-12.5 + pos: 39.5,20.5 parent: 2 - - uid: 10220 + - uid: 9555 components: - type: Transform - pos: -21.5,-13.5 + pos: 39.5,21.5 parent: 2 - - uid: 10221 + - uid: 9556 components: - type: Transform - pos: -21.5,-14.5 + pos: 39.5,22.5 parent: 2 - - uid: 10222 + - uid: 9557 components: - type: Transform - pos: -21.5,-15.5 + pos: 40.5,21.5 parent: 2 - - uid: 10223 + - uid: 9558 components: - type: Transform - pos: -21.5,-16.5 + pos: 38.5,20.5 parent: 2 - - uid: 10224 + - uid: 9559 components: - type: Transform - pos: -21.5,-17.5 + pos: 38.5,21.5 parent: 2 - - uid: 10226 + - uid: 9560 components: - type: Transform - pos: -21.5,-18.5 + pos: 38.5,22.5 parent: 2 - - uid: 10227 + - uid: 9561 components: - type: Transform - pos: -21.5,-19.5 + pos: 37.5,21.5 parent: 2 - - uid: 10228 + - uid: 9562 components: - type: Transform - pos: -21.5,-20.5 + pos: 36.5,21.5 parent: 2 - - uid: 10237 + - uid: 9563 components: - type: Transform - pos: -23.5,-21.5 + pos: 35.5,21.5 parent: 2 - - uid: 10244 + - uid: 9564 components: - type: Transform - pos: -23.5,-22.5 + pos: 34.5,21.5 parent: 2 - - uid: 10246 + - uid: 9565 components: - type: Transform - pos: -23.5,-23.5 + pos: 33.5,21.5 parent: 2 - - uid: 10247 + - uid: 9566 components: - type: Transform - pos: -23.5,-24.5 + pos: 32.5,21.5 parent: 2 - - uid: 10259 + - uid: 9567 components: - type: Transform - pos: -23.5,-25.5 + pos: 31.5,21.5 parent: 2 - - uid: 10263 + - uid: 9568 components: - type: Transform - pos: -23.5,-26.5 + pos: 31.5,22.5 parent: 2 - - uid: 10265 + - uid: 9569 components: - type: Transform - pos: -23.5,-27.5 + pos: 31.5,23.5 parent: 2 - - uid: 10266 + - uid: 9570 components: - type: Transform - pos: -23.5,-28.5 + pos: 31.5,24.5 parent: 2 - - uid: 10272 + - uid: 9571 components: - type: Transform - pos: -23.5,-29.5 + pos: 31.5,25.5 parent: 2 - - uid: 10273 + - uid: 9572 components: - type: Transform - pos: -23.5,-30.5 + pos: 31.5,26.5 parent: 2 - - uid: 10274 + - uid: 9573 components: - type: Transform - pos: -23.5,-31.5 + pos: 31.5,27.5 parent: 2 - - uid: 10279 + - uid: 9574 components: - type: Transform - pos: -24.5,-32.5 + pos: 31.5,28.5 parent: 2 - - uid: 10285 + - uid: 9577 components: - type: Transform - pos: -24.5,-33.5 + pos: 30.5,28.5 parent: 2 - - uid: 10286 + - uid: 9578 components: - type: Transform - pos: -23.5,-33.5 + pos: 29.5,28.5 parent: 2 - - uid: 10287 + - uid: 9581 components: - type: Transform - pos: -23.5,-20.5 + pos: 28.5,28.5 parent: 2 - - uid: 10298 + - uid: 9582 components: - type: Transform - pos: -22.5,-20.5 + pos: 27.5,28.5 parent: 2 - - uid: 10299 + - uid: 9597 components: - type: Transform - pos: -58.5,28.5 + pos: 27.5,27.5 parent: 2 - - uid: 10300 + - uid: 9598 components: - type: Transform - pos: -58.5,27.5 + pos: 27.5,26.5 parent: 2 - - uid: 10310 + - uid: 9599 components: - type: Transform - pos: -54.5,33.5 + pos: 27.5,25.5 parent: 2 - - uid: 10315 + - uid: 9600 components: - type: Transform - pos: -55.5,33.5 + pos: 27.5,24.5 parent: 2 - - uid: 10319 + - uid: 9601 components: - type: Transform - pos: -56.5,33.5 + pos: 27.5,23.5 parent: 2 - - uid: 10343 + - uid: 9602 components: - type: Transform - pos: -57.5,33.5 + pos: 27.5,22.5 parent: 2 - - uid: 10345 + - uid: 9605 components: - type: Transform - pos: -58.5,33.5 + pos: 26.5,16.5 parent: 2 - - uid: 10347 + - uid: 9606 components: - type: Transform - pos: -58.5,26.5 + pos: 26.5,17.5 parent: 2 - - uid: 10348 + - uid: 9607 components: - type: Transform - pos: -58.5,25.5 + pos: 26.5,18.5 parent: 2 - - uid: 10349 + - uid: 9608 components: - type: Transform - pos: -58.5,24.5 + pos: 23.5,15.5 parent: 2 - - uid: 10350 + - uid: 9609 components: - type: Transform - pos: -58.5,23.5 + pos: 23.5,16.5 parent: 2 - - uid: 10351 + - uid: 9610 components: - type: Transform - pos: -58.5,22.5 + pos: 23.5,17.5 parent: 2 - - uid: 10352 + - uid: 9611 components: - type: Transform - pos: -57.5,22.5 + pos: 23.5,18.5 parent: 2 - - uid: 10353 + - uid: 9612 components: - type: Transform - pos: -56.5,22.5 + pos: 23.5,19.5 parent: 2 - - uid: 10355 + - uid: 9613 components: - type: Transform - pos: -55.5,22.5 + pos: 23.5,20.5 parent: 2 - - uid: 10356 + - uid: 9614 components: - type: Transform - pos: -54.5,22.5 + pos: 24.5,20.5 parent: 2 - - uid: 10359 + - uid: 9615 components: - type: Transform - pos: -53.5,22.5 + pos: 25.5,20.5 parent: 2 - - uid: 10360 + - uid: 9616 components: - type: Transform - pos: -52.5,22.5 + pos: 26.5,20.5 parent: 2 - - uid: 10361 + - uid: 9629 components: - type: Transform - pos: -51.5,22.5 + pos: 26.5,19.5 parent: 2 - - uid: 10362 + - uid: 9632 components: - type: Transform - pos: -50.5,22.5 + pos: 26.5,21.5 parent: 2 - - uid: 10363 + - uid: 9633 components: - type: Transform - pos: -49.5,22.5 + pos: 24.5,18.5 parent: 2 - - uid: 10368 + - uid: 9636 components: - type: Transform - pos: -48.5,20.5 + pos: 24.5,17.5 parent: 2 - - uid: 10369 + - uid: 9637 components: - type: Transform - pos: -49.5,20.5 + pos: 24.5,16.5 parent: 2 - - uid: 10370 + - uid: 9638 components: - type: Transform - pos: -46.5,22.5 + pos: 24.5,15.5 parent: 2 - - uid: 10371 + - uid: 9644 components: - type: Transform - pos: -45.5,22.5 + pos: 25.5,18.5 parent: 2 - - uid: 10376 + - uid: 9645 components: - type: Transform - pos: -44.5,22.5 + pos: 25.5,17.5 parent: 2 - - uid: 10379 + - uid: 9646 components: - type: Transform - pos: -43.5,22.5 + pos: 25.5,16.5 parent: 2 - - uid: 10380 + - uid: 9647 components: - type: Transform - pos: -42.5,22.5 + pos: 25.5,15.5 parent: 2 - - uid: 10384 + - uid: 9648 components: - type: Transform - pos: -47.5,20.5 + pos: 24.5,14.5 parent: 2 - - uid: 10385 + - uid: 9649 components: - type: Transform - pos: -46.5,20.5 + pos: 24.5,13.5 parent: 2 - - uid: 10388 + - uid: 9650 components: - type: Transform - pos: -46.5,21.5 + pos: 23.5,13.5 parent: 2 - - uid: 10409 + - uid: 9651 components: - type: Transform - pos: -40.5,30.5 + pos: 22.5,13.5 parent: 2 - - uid: 10414 + - uid: 9652 components: - type: Transform - pos: -40.5,29.5 + pos: 21.5,13.5 parent: 2 - - uid: 10422 + - uid: 9656 components: - type: Transform - pos: -40.5,28.5 + pos: 20.5,13.5 parent: 2 - - uid: 10425 + - uid: 9659 components: - type: Transform - pos: -40.5,27.5 + pos: 20.5,30.5 parent: 2 - - uid: 10426 + - uid: 9660 components: - type: Transform - pos: -41.5,27.5 + pos: 20.5,29.5 parent: 2 - - uid: 10427 + - uid: 9662 components: - type: Transform - pos: -41.5,26.5 + pos: 20.5,28.5 parent: 2 - - uid: 10446 + - uid: 9663 components: - type: Transform - pos: -41.5,25.5 + pos: 20.5,27.5 parent: 2 - - uid: 10447 + - uid: 9664 components: - type: Transform - pos: -41.5,24.5 + pos: 20.5,26.5 parent: 2 - - uid: 10448 + - uid: 9665 components: - type: Transform - pos: -41.5,23.5 + pos: 21.5,26.5 parent: 2 - - uid: 10513 + - uid: 9666 components: - type: Transform - pos: 6.5,-10.5 + pos: 22.5,26.5 parent: 2 - - uid: 10514 + - uid: 9667 components: - type: Transform - pos: 22.5,0.5 + pos: 23.5,26.5 parent: 2 - - uid: 10515 + - uid: 9669 components: - type: Transform - pos: 23.5,0.5 + pos: 23.5,27.5 parent: 2 - - uid: 10516 + - uid: 9670 components: - type: Transform - pos: 24.5,0.5 + pos: 23.5,28.5 parent: 2 - - uid: 10523 + - uid: 9672 components: - type: Transform - pos: 25.5,0.5 + pos: 23.5,29.5 parent: 2 - - uid: 10524 + - uid: 9673 components: - type: Transform - pos: 26.5,0.5 + pos: 23.5,30.5 parent: 2 - - uid: 10529 + - uid: 9674 components: - type: Transform - pos: 27.5,0.5 + pos: 22.5,30.5 parent: 2 - - uid: 10530 + - uid: 9677 components: - type: Transform - pos: 28.5,0.5 + pos: 21.5,30.5 parent: 2 - - uid: 10531 + - uid: 9678 components: - type: Transform - pos: 29.5,0.5 + pos: 24.5,28.5 parent: 2 - - uid: 10544 + - uid: 9679 components: - type: Transform - pos: 30.5,0.5 + pos: 25.5,28.5 parent: 2 - - uid: 10545 + - uid: 9680 components: - type: Transform - pos: 31.5,0.5 + pos: 26.5,28.5 parent: 2 - - uid: 10546 + - uid: 9681 components: - type: Transform - pos: 32.5,0.5 + pos: 20.5,14.5 parent: 2 - - uid: 10552 + - uid: 9683 components: - type: Transform - pos: 33.5,0.5 + pos: 20.5,15.5 parent: 2 - - uid: 10558 + - uid: 9684 components: - type: Transform - pos: 34.5,0.5 + pos: 20.5,16.5 parent: 2 - - uid: 10583 + - uid: 9685 components: - type: Transform - pos: 35.5,0.5 + pos: 20.5,17.5 parent: 2 - - uid: 10590 + - uid: 9686 components: - type: Transform - pos: 36.5,0.5 + pos: 20.5,18.5 parent: 2 - - uid: 10593 + - uid: 9687 components: - type: Transform - pos: 37.5,0.5 + pos: 20.5,19.5 parent: 2 - - uid: 10596 + - uid: 9688 components: - type: Transform - pos: 38.5,0.5 + pos: 20.5,20.5 parent: 2 - - uid: 10601 + - uid: 9689 components: - type: Transform - pos: 39.5,0.5 + pos: 20.5,21.5 parent: 2 - - uid: 10612 + - uid: 9690 components: - type: Transform - pos: 40.5,0.5 + pos: 20.5,22.5 parent: 2 - - uid: 10617 + - uid: 9692 components: - type: Transform - pos: 41.5,0.5 + pos: 19.5,22.5 parent: 2 - - uid: 10618 + - uid: 9693 components: - type: Transform - pos: 42.5,0.5 + pos: 18.5,22.5 parent: 2 - - uid: 10622 + - uid: 9694 components: - type: Transform - pos: 42.5,1.5 + pos: 17.5,22.5 parent: 2 - - uid: 10623 + - uid: 9695 components: - type: Transform - pos: 42.5,2.5 + pos: 16.5,22.5 parent: 2 - - uid: 10624 + - uid: 9699 components: - type: Transform - pos: 42.5,3.5 + pos: 15.5,22.5 parent: 2 - - uid: 10625 + - uid: 9700 components: - type: Transform - pos: 42.5,4.5 + pos: 14.5,22.5 parent: 2 - - uid: 10626 + - uid: 9701 components: - type: Transform - pos: 42.5,5.5 + pos: 13.5,22.5 parent: 2 - - uid: 10627 + - uid: 9702 components: - type: Transform - pos: 43.5,5.5 + pos: 12.5,22.5 parent: 2 - - uid: 10629 + - uid: 9703 components: - type: Transform - pos: 44.5,5.5 + pos: 11.5,22.5 parent: 2 - - uid: 10649 + - uid: 9704 components: - type: Transform - pos: 45.5,6.5 + pos: 10.5,22.5 parent: 2 - - uid: 10650 + - uid: 9705 components: - type: Transform - pos: 45.5,7.5 + pos: 9.5,22.5 parent: 2 - - uid: 10651 + - uid: 9706 components: - type: Transform - pos: 45.5,8.5 + pos: 8.5,22.5 parent: 2 - - uid: 10652 + - uid: 9707 components: - type: Transform - pos: 46.5,8.5 + pos: 7.5,22.5 parent: 2 - - uid: 10654 + - uid: 9708 components: - type: Transform - pos: 20.5,-1.5 + pos: 6.5,22.5 parent: 2 - - uid: 10655 + - uid: 9709 components: - type: Transform - pos: 20.5,-2.5 + pos: 5.5,22.5 parent: 2 - - uid: 10660 + - uid: 9710 components: - type: Transform - pos: 20.5,-3.5 + pos: 4.5,22.5 parent: 2 - - uid: 10664 + - uid: 9711 components: - type: Transform - pos: 20.5,-4.5 + pos: 20.5,12.5 parent: 2 - - uid: 10674 + - uid: 9712 components: - type: Transform - pos: 20.5,-5.5 + pos: 20.5,11.5 parent: 2 - - uid: 10675 + - uid: 9713 components: - type: Transform - pos: 20.5,-6.5 + pos: 20.5,10.5 parent: 2 - - uid: 10680 + - uid: 9714 components: - type: Transform - pos: 20.5,-7.5 + pos: 20.5,9.5 parent: 2 - - uid: 10681 + - uid: 9715 components: - type: Transform - pos: 20.5,-8.5 + pos: 20.5,8.5 parent: 2 - - uid: 10682 + - uid: 9716 components: - type: Transform - pos: 19.5,-8.5 + pos: 20.5,7.5 parent: 2 - - uid: 10784 + - uid: 9717 components: - type: Transform - pos: 18.5,-8.5 + pos: 20.5,6.5 parent: 2 - - uid: 10788 + - uid: 9718 components: - type: Transform - pos: 17.5,-8.5 + pos: 20.5,5.5 parent: 2 - - uid: 10789 + - uid: 9724 components: - type: Transform - pos: 15.5,-8.5 + pos: 20.5,4.5 parent: 2 - - uid: 10796 + - uid: 9725 components: - type: Transform - pos: 16.5,-8.5 + pos: 20.5,3.5 parent: 2 - - uid: 10797 + - uid: 9726 components: - type: Transform - pos: 14.5,-8.5 + pos: 20.5,2.5 parent: 2 - - uid: 10800 + - uid: 9727 components: - type: Transform - pos: 13.5,-8.5 + pos: 20.5,1.5 parent: 2 - - uid: 10809 + - uid: 9728 components: - type: Transform - pos: 12.5,-8.5 + pos: 20.5,0.5 parent: 2 - - uid: 10810 + - uid: 9729 components: - type: Transform - pos: 11.5,-8.5 + pos: 2.5,22.5 parent: 2 - - uid: 10811 + - uid: 9730 components: - type: Transform - pos: 11.5,-9.5 + pos: 1.5,22.5 parent: 2 - - uid: 10812 + - uid: 9733 components: - type: Transform - pos: 11.5,-10.5 + pos: 0.5,22.5 parent: 2 - - uid: 10817 + - uid: 9735 components: - type: Transform - pos: 12.5,-10.5 + pos: -0.5,22.5 parent: 2 - - uid: 10821 + - uid: 9736 components: - type: Transform - pos: 13.5,-10.5 + pos: -0.5,23.5 parent: 2 - - uid: 10822 + - uid: 9737 components: - type: Transform - pos: 14.5,-10.5 + pos: -0.5,24.5 parent: 2 - - uid: 10825 + - uid: 9738 components: - type: Transform - pos: 14.5,-11.5 + pos: -0.5,25.5 parent: 2 - - uid: 10826 + - uid: 9739 components: - type: Transform - pos: 8.5,-0.5 + pos: -0.5,26.5 parent: 2 - - uid: 10842 + - uid: 9740 components: - type: Transform - pos: 8.5,-1.5 + pos: -0.5,27.5 parent: 2 - - uid: 10843 + - uid: 9741 components: - type: Transform - pos: 8.5,-2.5 + pos: -0.5,28.5 parent: 2 - - uid: 10844 + - uid: 9742 components: - type: Transform - pos: 8.5,-3.5 + pos: -0.5,29.5 parent: 2 - - uid: 10845 + - uid: 9743 components: - type: Transform - pos: 8.5,-4.5 + pos: -0.5,30.5 parent: 2 - - uid: 10918 + - uid: 9744 components: - type: Transform - pos: 8.5,-5.5 + pos: -0.5,31.5 parent: 2 - - uid: 10975 + - uid: 9745 components: - type: Transform - pos: 8.5,-6.5 + pos: -0.5,32.5 parent: 2 - - uid: 10976 + - uid: 9746 components: - type: Transform - pos: 8.5,-7.5 + pos: -0.5,33.5 parent: 2 - - uid: 10979 + - uid: 9747 components: - type: Transform - pos: 8.5,-8.5 + pos: -0.5,34.5 parent: 2 - - uid: 11052 + - uid: 9748 components: - type: Transform - pos: 7.5,-8.5 + pos: -0.5,35.5 parent: 2 - - uid: 11060 + - uid: 9749 components: - type: Transform - pos: 7.5,-9.5 + pos: -0.5,36.5 parent: 2 - - uid: 11088 + - uid: 9750 components: - type: Transform - pos: 6.5,-9.5 + pos: -0.5,37.5 parent: 2 - - uid: 11094 + - uid: 9751 components: - type: Transform - pos: 5.5,-10.5 + pos: -0.5,38.5 parent: 2 - - uid: 11101 + - uid: 9752 components: - type: Transform - pos: 4.5,-10.5 + pos: -0.5,39.5 parent: 2 - - uid: 11135 + - uid: 9753 components: - type: Transform - pos: 3.5,-10.5 + pos: -0.5,40.5 parent: 2 - - uid: 11146 + - uid: 9754 components: - type: Transform - pos: 2.5,-10.5 + pos: -0.5,41.5 parent: 2 - - uid: 11150 + - uid: 9755 components: - type: Transform - pos: 1.5,-10.5 + pos: -0.5,42.5 parent: 2 - - uid: 11152 + - uid: 9756 components: - type: Transform - pos: 0.5,-10.5 + pos: -0.5,43.5 parent: 2 - - uid: 11182 + - uid: 9757 components: - type: Transform - pos: 0.5,-11.5 + pos: -0.5,44.5 parent: 2 - - uid: 11227 + - uid: 9758 components: - type: Transform - pos: -0.5,-11.5 + pos: -0.5,45.5 parent: 2 - - uid: 11229 + - uid: 9759 components: - type: Transform - pos: -0.5,-12.5 + pos: -0.5,46.5 parent: 2 - - uid: 11236 + - uid: 9760 components: - type: Transform - pos: -0.5,-13.5 + pos: -0.5,47.5 parent: 2 - - uid: 11246 + - uid: 9761 components: - type: Transform - pos: -0.5,-14.5 + pos: -0.5,48.5 parent: 2 - - uid: 11247 + - uid: 9762 components: - type: Transform - pos: -0.5,-15.5 + pos: -0.5,49.5 parent: 2 - - uid: 11264 + - uid: 9763 components: - type: Transform - pos: -0.5,-16.5 + pos: -0.5,50.5 parent: 2 - - uid: 11277 + - uid: 9764 components: - type: Transform - pos: -0.5,-17.5 + pos: -1.5,50.5 parent: 2 - - uid: 11283 + - uid: 9765 components: - type: Transform - pos: -0.5,-18.5 + pos: -2.5,50.5 parent: 2 - - uid: 11287 + - uid: 9766 components: - type: Transform - pos: -0.5,-19.5 + pos: -3.5,50.5 parent: 2 - - uid: 11301 + - uid: 9767 components: - type: Transform - pos: -0.5,-20.5 + pos: -4.5,50.5 parent: 2 - - uid: 12265 + - uid: 9768 components: - type: Transform - pos: 11.5,43.5 + pos: -5.5,50.5 parent: 2 - - uid: 12296 + - uid: 9769 components: - type: Transform - pos: 2.5,43.5 + pos: -6.5,50.5 parent: 2 - - uid: 12307 + - uid: 9770 components: - type: Transform - pos: 0.5,43.5 + pos: -7.5,50.5 parent: 2 - - uid: 12308 + - uid: 9771 components: - type: Transform - pos: 10.5,43.5 + pos: -8.5,50.5 parent: 2 - - uid: 12328 + - uid: 9772 components: - type: Transform - pos: 9.5,43.5 + pos: -9.5,50.5 parent: 2 - - uid: 12361 + - uid: 9773 components: - type: Transform - pos: 5.5,43.5 + pos: -10.5,50.5 parent: 2 - - uid: 13011 + - uid: 9774 components: - type: Transform - pos: 8.5,43.5 + pos: -11.5,50.5 parent: 2 - - uid: 13043 + - uid: 9776 components: - type: Transform - pos: 3.5,43.5 + pos: -12.5,50.5 parent: 2 - - uid: 13217 + - uid: 9777 components: - type: Transform - pos: 7.5,43.5 + pos: -13.5,50.5 parent: 2 - - uid: 13218 + - uid: 9778 components: - type: Transform - pos: 1.5,43.5 + pos: -13.5,49.5 parent: 2 - - uid: 13419 + - uid: 9779 components: - type: Transform - pos: 4.5,43.5 + pos: -13.5,48.5 parent: 2 - - uid: 13530 + - uid: 9780 components: - type: Transform - pos: 6.5,43.5 + pos: -13.5,47.5 parent: 2 - - uid: 13750 + - uid: 9781 components: - type: Transform - pos: 12.5,43.5 + pos: -12.5,47.5 parent: 2 - - uid: 13839 + - uid: 9782 components: - type: Transform - pos: 12.5,42.5 + pos: -11.5,47.5 parent: 2 - - uid: 13872 + - uid: 9783 components: - type: Transform - pos: 12.5,41.5 + pos: -11.5,46.5 parent: 2 - - uid: 13898 + - uid: 9784 components: - type: Transform - pos: 12.5,40.5 + pos: -10.5,46.5 parent: 2 - - uid: 13902 + - uid: 9785 components: - type: Transform - pos: 12.5,39.5 + pos: -41.5,30.5 parent: 2 - - uid: 13904 + - uid: 9786 components: - type: Transform - pos: 14.5,39.5 + pos: -1.5,22.5 parent: 2 - - uid: 13923 + - uid: 9787 components: - type: Transform - pos: 15.5,39.5 + pos: -2.5,22.5 parent: 2 - - uid: 13925 + - uid: 9788 components: - type: Transform - pos: 16.5,39.5 + pos: -3.5,22.5 parent: 2 - - uid: 13933 + - uid: 9789 components: - type: Transform - pos: 17.5,39.5 + pos: -4.5,22.5 parent: 2 - - uid: 13944 + - uid: 9790 components: - type: Transform - pos: 18.5,39.5 + pos: -5.5,22.5 parent: 2 - - uid: 13945 + - uid: 9791 components: - type: Transform - pos: 19.5,39.5 + pos: -6.5,22.5 parent: 2 - - uid: 13946 + - uid: 9792 components: - type: Transform - pos: 20.5,39.5 + pos: -7.5,22.5 parent: 2 - - uid: 13948 + - uid: 9793 components: - type: Transform - pos: 21.5,39.5 + pos: -8.5,22.5 parent: 2 - - uid: 13951 + - uid: 9794 components: - type: Transform - pos: 22.5,39.5 + pos: -9.5,22.5 parent: 2 - - uid: 13961 + - uid: 9795 components: - type: Transform - pos: 22.5,38.5 + pos: -10.5,22.5 parent: 2 - - uid: 13977 + - uid: 9796 components: - type: Transform - pos: 23.5,38.5 + pos: -11.5,22.5 parent: 2 - - uid: 13981 + - uid: 9797 components: - type: Transform - pos: 24.5,38.5 + pos: -12.5,22.5 parent: 2 - - uid: 13989 + - uid: 9798 components: - type: Transform - pos: 25.5,38.5 + pos: -13.5,22.5 parent: 2 - - uid: 13990 + - uid: 9799 components: - type: Transform - pos: 26.5,38.5 + pos: -14.5,22.5 parent: 2 - - uid: 14001 + - uid: 9800 components: - type: Transform - pos: 27.5,38.5 + pos: -15.5,22.5 parent: 2 - - uid: 14003 + - uid: 9801 components: - type: Transform - pos: 38.5,88.5 + pos: -16.5,22.5 parent: 2 - - uid: 14004 + - uid: 9802 components: - type: Transform - pos: 27.5,37.5 + pos: -17.5,22.5 parent: 2 - - uid: 14037 + - uid: 9803 components: - type: Transform - pos: 27.5,36.5 + pos: -18.5,22.5 parent: 2 - - uid: 14061 + - uid: 9804 components: - type: Transform - pos: 27.5,35.5 + pos: -19.5,22.5 parent: 2 - - uid: 14072 + - uid: 9805 components: - type: Transform - pos: 27.5,34.5 + pos: -20.5,22.5 parent: 2 - - uid: 14073 + - uid: 9806 components: - type: Transform - pos: 28.5,34.5 + pos: -21.5,22.5 parent: 2 - - uid: 14074 + - uid: 9807 components: - type: Transform - pos: 29.5,34.5 + pos: -0.5,21.5 parent: 2 - - uid: 14078 + - uid: 9808 components: - type: Transform - pos: 30.5,34.5 + pos: -0.5,20.5 parent: 2 - - uid: 14101 + - uid: 9809 components: - type: Transform - pos: 30.5,35.5 + pos: -0.5,19.5 parent: 2 - - uid: 14122 + - uid: 9810 components: - type: Transform - pos: 31.5,35.5 + pos: -0.5,18.5 parent: 2 - - uid: 14140 + - uid: 9811 components: - type: Transform - pos: 32.5,35.5 + pos: -0.5,17.5 parent: 2 - - uid: 14145 + - uid: 9812 components: - type: Transform - pos: 33.5,35.5 + pos: -0.5,16.5 parent: 2 - - uid: 14153 + - uid: 9813 components: - type: Transform - pos: 34.5,35.5 + pos: -0.5,15.5 parent: 2 - - uid: 14170 + - uid: 9814 components: - type: Transform - pos: 35.5,35.5 + pos: -0.5,14.5 parent: 2 - - uid: 14188 + - uid: 9815 components: - type: Transform - pos: 36.5,35.5 + pos: -0.5,13.5 parent: 2 - - uid: 14193 + - uid: 9819 components: - type: Transform - pos: 37.5,35.5 + pos: -0.5,12.5 parent: 2 - - uid: 14196 + - uid: 9822 components: - type: Transform - pos: 38.5,35.5 + pos: 0.5,12.5 parent: 2 - - uid: 14200 + - uid: 9823 components: - type: Transform - pos: 39.5,35.5 + pos: 1.5,12.5 parent: 2 - - uid: 14201 + - uid: 9826 components: - type: Transform - pos: 40.5,35.5 + pos: 2.5,12.5 parent: 2 - - uid: 14211 + - uid: 9828 components: - type: Transform - pos: 38.5,86.5 + pos: 3.5,12.5 parent: 2 - - uid: 14212 + - uid: 9836 components: - type: Transform - pos: 39.5,88.5 + pos: 4.5,12.5 parent: 2 - - uid: 14220 + - uid: 9837 components: - type: Transform - pos: 39.5,86.5 + pos: 5.5,12.5 parent: 2 - - uid: 14232 + - uid: 9841 components: - type: Transform - pos: 40.5,88.5 + pos: 6.5,12.5 parent: 2 - - uid: 14287 + - uid: 9842 components: - type: Transform - pos: 40.5,86.5 + pos: 6.5,11.5 parent: 2 - - uid: 14307 + - uid: 9843 components: - type: Transform - pos: 41.5,88.5 + pos: 7.5,11.5 parent: 2 - - uid: 14319 + - uid: 9844 components: - type: Transform - pos: 41.5,86.5 + pos: 7.5,10.5 parent: 2 - - uid: 14328 + - uid: 9845 components: - type: Transform - pos: 42.5,88.5 + pos: 8.5,10.5 parent: 2 - - uid: 14335 + - uid: 9852 components: - type: Transform - pos: 42.5,86.5 + pos: 8.5,9.5 parent: 2 - - uid: 14338 + - uid: 9860 components: - type: Transform - pos: 43.5,88.5 + pos: 8.5,8.5 parent: 2 - - uid: 14387 + - uid: 9867 components: - type: Transform - pos: 43.5,86.5 + pos: 8.5,7.5 parent: 2 - - uid: 14400 + - uid: 9875 components: - type: Transform - pos: 44.5,88.5 + pos: 8.5,6.5 parent: 2 - - uid: 14409 + - uid: 9876 components: - type: Transform - pos: 44.5,86.5 + pos: 8.5,5.5 parent: 2 - - uid: 14426 + - uid: 9878 components: - type: Transform - pos: 45.5,88.5 + pos: 8.5,4.5 parent: 2 - - uid: 14435 + - uid: 9881 components: - type: Transform - pos: 45.5,87.5 + pos: 8.5,3.5 parent: 2 - - uid: 14438 + - uid: 9882 components: - type: Transform - pos: 45.5,86.5 + pos: 8.5,2.5 parent: 2 - - uid: 14442 + - uid: 9884 components: - type: Transform - pos: 36.5,84.5 + pos: 8.5,1.5 parent: 2 - - uid: 14443 + - uid: 9886 components: - type: Transform - pos: 37.5,84.5 + pos: 8.5,0.5 parent: 2 - - uid: 14446 + - uid: 9887 components: - type: Transform - pos: 38.5,84.5 + pos: 7.5,0.5 parent: 2 - - uid: 14459 + - uid: 9895 components: - type: Transform - pos: 39.5,84.5 + pos: 6.5,0.5 parent: 2 - - uid: 14463 + - uid: 9898 components: - type: Transform - pos: 40.5,84.5 + pos: 5.5,0.5 parent: 2 - - uid: 14465 + - uid: 9899 components: - type: Transform - pos: 41.5,84.5 + pos: 4.5,0.5 parent: 2 - - uid: 14466 + - uid: 9900 components: - type: Transform - pos: 42.5,84.5 + pos: 3.5,0.5 parent: 2 - - uid: 14467 + - uid: 9901 components: - type: Transform - pos: 43.5,84.5 + pos: 2.5,0.5 parent: 2 - - uid: 14469 + - uid: 9902 components: - type: Transform - pos: 44.5,84.5 + pos: 1.5,0.5 parent: 2 - - uid: 14470 + - uid: 9903 components: - type: Transform - pos: 44.5,82.5 + pos: 0.5,0.5 parent: 2 - - uid: 14478 + - uid: 9904 components: - type: Transform - pos: 43.5,82.5 + pos: -0.5,0.5 parent: 2 - - uid: 14480 + - uid: 9905 components: - type: Transform - pos: 42.5,82.5 + pos: -0.5,-0.5 parent: 2 - - uid: 14492 + - uid: 9906 components: - type: Transform - pos: 41.5,82.5 + pos: -0.5,-1.5 parent: 2 - - uid: 14497 + - uid: 9907 components: - type: Transform - pos: 40.5,82.5 + pos: -0.5,-2.5 parent: 2 - - uid: 14507 + - uid: 9908 components: - type: Transform - pos: 39.5,82.5 + pos: -0.5,-3.5 parent: 2 - - uid: 14508 + - uid: 9909 components: - type: Transform - pos: 38.5,82.5 + pos: -0.5,-4.5 parent: 2 - - uid: 14511 + - uid: 9910 components: - type: Transform - pos: 37.5,82.5 + pos: -0.5,-5.5 parent: 2 - - uid: 14519 + - uid: 9911 components: - type: Transform - pos: 36.5,82.5 + pos: -0.5,-6.5 parent: 2 - - uid: 14524 + - uid: 9912 components: - type: Transform - pos: 44.5,83.5 + pos: -0.5,-7.5 parent: 2 - - uid: 14525 + - uid: 9913 components: - type: Transform - pos: 45.5,83.5 + pos: -1.5,-7.5 parent: 2 - - uid: 14526 + - uid: 9914 components: - type: Transform - pos: 47.5,83.5 + pos: -58.5,31.5 parent: 2 - - uid: 14527 + - uid: 9915 components: - type: Transform - pos: -59.5,59.5 + pos: -48.5,40.5 parent: 2 - - uid: 14530 + - uid: 9916 components: - type: Transform - pos: 58.5,88.5 + pos: -48.5,42.5 parent: 2 - - uid: 14533 + - uid: 9917 components: - type: Transform - pos: 57.5,88.5 + pos: -50.5,42.5 parent: 2 - - uid: 14548 + - uid: 9920 components: - type: Transform - pos: 56.5,88.5 + pos: -50.5,45.5 parent: 2 - - uid: 14576 + - uid: 9921 components: - type: Transform - pos: 55.5,88.5 + pos: -52.5,48.5 parent: 2 - - uid: 14585 + - uid: 9922 components: - type: Transform - pos: 54.5,88.5 + pos: -51.5,47.5 parent: 2 - - uid: 14592 + - uid: 9959 components: - type: Transform - pos: 53.5,88.5 + pos: -41.5,22.5 parent: 2 - - uid: 14619 + - uid: 9960 components: - type: Transform - pos: 52.5,88.5 + pos: -40.5,22.5 parent: 2 - - uid: 14620 + - uid: 9978 components: - type: Transform - pos: 51.5,88.5 + pos: -39.5,22.5 parent: 2 - - uid: 14652 + - uid: 9980 components: - type: Transform - pos: 51.5,86.5 + pos: -38.5,22.5 parent: 2 - - uid: 14655 + - uid: 9998 components: - type: Transform - pos: 52.5,86.5 + pos: -19.5,7.5 parent: 2 - - uid: 14657 + - uid: 10009 components: - type: Transform - pos: 53.5,86.5 + pos: -37.5,22.5 parent: 2 - - uid: 14670 + - uid: 10032 components: - type: Transform - pos: 54.5,86.5 + pos: -36.5,22.5 parent: 2 - - uid: 14671 + - uid: 10038 components: - type: Transform - pos: 55.5,86.5 + pos: -35.5,22.5 parent: 2 - - uid: 14680 + - uid: 10044 components: - type: Transform - pos: 56.5,86.5 + pos: -34.5,22.5 parent: 2 - - uid: 14689 + - uid: 10045 components: - type: Transform - pos: 57.5,86.5 + pos: -33.5,22.5 parent: 2 - - uid: 14724 + - uid: 10046 components: - type: Transform - pos: 58.5,86.5 + pos: -32.5,22.5 parent: 2 - - uid: 14806 + - uid: 10047 components: - type: Transform - pos: 51.5,87.5 + pos: -31.5,22.5 parent: 2 - - uid: 14841 + - uid: 10048 components: - type: Transform - pos: 50.5,87.5 + pos: -30.5,22.5 parent: 2 - - uid: 14858 + - uid: 10049 components: - type: Transform - pos: 49.5,87.5 + pos: -29.5,22.5 parent: 2 - - uid: 14866 + - uid: 10050 components: - type: Transform - pos: -60.5,59.5 + pos: -28.5,22.5 parent: 2 - - uid: 14897 + - uid: 10051 components: - type: Transform - pos: -57.5,59.5 + pos: -27.5,22.5 parent: 2 - - uid: 14900 + - uid: 10056 components: - type: Transform - pos: 60.5,82.5 + pos: -26.5,22.5 parent: 2 - - uid: 14902 + - uid: 10057 components: - type: Transform - pos: 59.5,82.5 + pos: -25.5,22.5 parent: 2 - - uid: 14914 + - uid: 10058 components: - type: Transform - pos: 58.5,82.5 + pos: -24.5,22.5 parent: 2 - - uid: 14945 + - uid: 10068 components: - type: Transform - pos: 57.5,82.5 + pos: -23.5,22.5 parent: 2 - - uid: 14958 + - uid: 10071 components: - type: Transform - pos: 56.5,82.5 + pos: -22.5,22.5 parent: 2 - - uid: 14959 + - uid: 10085 components: - type: Transform - pos: 55.5,82.5 + pos: -21.5,21.5 parent: 2 - - uid: 14960 + - uid: 10088 components: - type: Transform - pos: 54.5,82.5 + pos: -21.5,20.5 parent: 2 - - uid: 14971 + - uid: 10091 components: - type: Transform - pos: 53.5,82.5 + pos: -21.5,19.5 parent: 2 - - uid: 14982 + - uid: 10095 components: - type: Transform - pos: 52.5,82.5 + pos: -21.5,18.5 parent: 2 - - uid: 14983 + - uid: 10096 components: - type: Transform - pos: 60.5,84.5 + pos: -21.5,17.5 parent: 2 - - uid: 14984 + - uid: 10097 components: - type: Transform - pos: 59.5,84.5 + pos: -21.5,16.5 parent: 2 - - uid: 14990 + - uid: 10098 components: - type: Transform - pos: 58.5,84.5 + pos: -21.5,15.5 parent: 2 - - uid: 14993 + - uid: 10099 components: - type: Transform - pos: 57.5,84.5 + pos: -21.5,14.5 parent: 2 - - uid: 15006 + - uid: 10112 components: - type: Transform - pos: 56.5,84.5 + pos: -21.5,13.5 parent: 2 - - uid: 15037 + - uid: 10118 components: - type: Transform - pos: 55.5,84.5 + pos: -21.5,12.5 parent: 2 - - uid: 15042 + - uid: 10119 components: - type: Transform - pos: 54.5,84.5 + pos: -21.5,11.5 parent: 2 - - uid: 15044 + - uid: 10120 components: - type: Transform - pos: 53.5,84.5 + pos: -21.5,10.5 parent: 2 - - uid: 15058 + - uid: 10121 components: - type: Transform - pos: 52.5,84.5 + pos: -21.5,9.5 parent: 2 - - uid: 15060 + - uid: 10128 components: - type: Transform - pos: 52.5,83.5 + pos: -21.5,8.5 parent: 2 - - uid: 15064 + - uid: 10133 components: - type: Transform - pos: 51.5,83.5 + pos: -21.5,7.5 parent: 2 - - uid: 15113 + - uid: 10141 components: - type: Transform - pos: 50.5,83.5 + pos: -21.5,6.5 parent: 2 - - uid: 15114 + - uid: 10143 components: - type: Transform - pos: 49.5,83.5 + pos: -21.5,5.5 parent: 2 - - uid: 15128 + - uid: 10146 components: - type: Transform - pos: 58.5,80.5 + pos: -21.5,4.5 parent: 2 - - uid: 15129 + - uid: 10159 components: - type: Transform - pos: 38.5,80.5 + pos: -21.5,3.5 parent: 2 - - uid: 15226 + - uid: 10160 components: - type: Transform - pos: 39.5,80.5 + pos: -21.5,2.5 parent: 2 - - uid: 15256 + - uid: 10161 components: - type: Transform - pos: 40.5,80.5 + pos: -21.5,1.5 parent: 2 - - uid: 15260 + - uid: 10169 components: - type: Transform - pos: 41.5,80.5 + pos: -21.5,0.5 parent: 2 - - uid: 15266 + - uid: 10170 components: - type: Transform - pos: 42.5,80.5 + pos: -21.5,-0.5 parent: 2 - - uid: 15270 + - uid: 10179 components: - type: Transform - pos: 43.5,80.5 + pos: -21.5,-1.5 parent: 2 - - uid: 15289 + - uid: 10197 components: - type: Transform - pos: 44.5,80.5 + pos: -21.5,-2.5 parent: 2 - - uid: 15294 + - uid: 10199 components: - type: Transform - pos: 45.5,80.5 + pos: -21.5,-3.5 parent: 2 - - uid: 15303 + - uid: 10202 components: - type: Transform - pos: 38.5,78.5 + pos: -21.5,-4.5 parent: 2 - - uid: 15316 + - uid: 10203 components: - type: Transform - pos: 39.5,78.5 + pos: -21.5,-5.5 parent: 2 - - uid: 15320 + - uid: 10204 components: - type: Transform - pos: 40.5,78.5 + pos: -21.5,-6.5 parent: 2 - - uid: 15381 + - uid: 10205 components: - type: Transform - pos: 41.5,78.5 + pos: -21.5,-7.5 parent: 2 - - uid: 15392 + - uid: 10208 components: - type: Transform - pos: 42.5,78.5 + pos: -21.5,-8.5 parent: 2 - - uid: 15393 + - uid: 10209 components: - type: Transform - pos: 43.5,78.5 + pos: -21.5,-9.5 parent: 2 - - uid: 15394 + - uid: 10210 components: - type: Transform - pos: 44.5,78.5 + pos: -21.5,-10.5 parent: 2 - - uid: 15402 + - uid: 10211 components: - type: Transform - pos: 45.5,78.5 + pos: -21.5,-11.5 parent: 2 - - uid: 15413 + - uid: 10212 components: - type: Transform - pos: 45.5,79.5 + pos: -21.5,-12.5 parent: 2 - - uid: 15431 + - uid: 10220 components: - type: Transform - pos: 46.5,79.5 + pos: -21.5,-13.5 parent: 2 - - uid: 15434 + - uid: 10221 components: - type: Transform - pos: 47.5,79.5 + pos: -21.5,-14.5 parent: 2 - - uid: 15446 + - uid: 10222 components: - type: Transform - pos: 57.5,80.5 + pos: -21.5,-15.5 parent: 2 - - uid: 15448 + - uid: 10223 components: - type: Transform - pos: 56.5,80.5 + pos: -21.5,-16.5 parent: 2 - - uid: 15449 + - uid: 10224 components: - type: Transform - pos: 55.5,80.5 + pos: -21.5,-17.5 parent: 2 - - uid: 15450 + - uid: 10226 components: - type: Transform - pos: 54.5,80.5 + pos: -21.5,-18.5 parent: 2 - - uid: 15451 + - uid: 10227 components: - type: Transform - pos: 53.5,80.5 + pos: -21.5,-19.5 parent: 2 - - uid: 15453 + - uid: 10228 components: - type: Transform - pos: 52.5,80.5 + pos: -21.5,-20.5 parent: 2 - - uid: 15455 + - uid: 10237 components: - type: Transform - pos: 51.5,80.5 + pos: -23.5,-21.5 parent: 2 - - uid: 15456 + - uid: 10244 components: - type: Transform - pos: 58.5,78.5 + pos: -23.5,-22.5 parent: 2 - - uid: 15457 + - uid: 10246 components: - type: Transform - pos: 57.5,78.5 + pos: -23.5,-23.5 parent: 2 - - uid: 15458 + - uid: 10247 components: - type: Transform - pos: 56.5,78.5 + pos: -23.5,-24.5 parent: 2 - - uid: 15459 + - uid: 10259 components: - type: Transform - pos: 55.5,78.5 + pos: -23.5,-25.5 parent: 2 - - uid: 15460 + - uid: 10263 components: - type: Transform - pos: 54.5,78.5 + pos: -23.5,-26.5 parent: 2 - - uid: 15461 + - uid: 10265 components: - type: Transform - pos: 53.5,78.5 + pos: -23.5,-27.5 parent: 2 - - uid: 15462 + - uid: 10266 components: - type: Transform - pos: 52.5,78.5 + pos: -23.5,-28.5 parent: 2 - - uid: 15466 + - uid: 10272 components: - type: Transform - pos: 51.5,78.5 + pos: -23.5,-29.5 parent: 2 - - uid: 15467 + - uid: 10273 components: - type: Transform - pos: 51.5,79.5 + pos: -23.5,-30.5 parent: 2 - - uid: 15468 + - uid: 10274 components: - type: Transform - pos: 50.5,79.5 + pos: -23.5,-31.5 parent: 2 - - uid: 15469 + - uid: 10279 components: - type: Transform - pos: 45.5,74.5 + pos: -24.5,-32.5 parent: 2 - - uid: 15470 + - uid: 10285 components: - type: Transform - pos: 49.5,79.5 + pos: -24.5,-33.5 parent: 2 - - uid: 15476 + - uid: 10286 components: - type: Transform - pos: 48.5,75.5 + pos: -23.5,-33.5 parent: 2 - - uid: 15477 + - uid: 10287 components: - type: Transform - pos: 48.5,76.5 + pos: -23.5,-20.5 parent: 2 - - uid: 15479 + - uid: 10298 components: - type: Transform - pos: 48.5,77.5 + pos: -22.5,-20.5 parent: 2 - - uid: 15481 + - uid: 10299 components: - type: Transform - pos: 46.5,75.5 + pos: -58.5,28.5 parent: 2 - - uid: 15482 + - uid: 10300 components: - type: Transform - pos: 46.5,74.5 + pos: -58.5,27.5 parent: 2 - - uid: 15483 + - uid: 10310 components: - type: Transform - pos: 44.5,74.5 + pos: -54.5,33.5 parent: 2 - - uid: 15486 + - uid: 10315 components: - type: Transform - pos: 43.5,74.5 + pos: -55.5,33.5 parent: 2 - - uid: 15487 + - uid: 10319 components: - type: Transform - pos: 42.5,74.5 + pos: -56.5,33.5 parent: 2 - - uid: 15488 + - uid: 10343 components: - type: Transform - pos: 42.5,73.5 + pos: -57.5,33.5 parent: 2 - - uid: 15489 + - uid: 10345 components: - type: Transform - pos: 42.5,72.5 + pos: -58.5,33.5 parent: 2 - - uid: 15491 + - uid: 10347 components: - type: Transform - pos: 41.5,72.5 + pos: -58.5,26.5 parent: 2 - - uid: 15495 + - uid: 10348 components: - type: Transform - pos: 40.5,72.5 + pos: -58.5,25.5 parent: 2 - - uid: 15496 + - uid: 10349 components: - type: Transform - pos: 39.5,72.5 + pos: -58.5,24.5 parent: 2 - - uid: 15497 + - uid: 10350 components: - type: Transform - pos: 38.5,72.5 + pos: -58.5,23.5 parent: 2 - - uid: 15499 + - uid: 10351 components: - type: Transform - pos: 37.5,72.5 + pos: -58.5,22.5 parent: 2 - - uid: 15500 + - uid: 10352 components: - type: Transform - pos: 36.5,72.5 + pos: -57.5,22.5 parent: 2 - - uid: 15501 + - uid: 10353 components: - type: Transform - pos: 35.5,72.5 + pos: -56.5,22.5 parent: 2 - - uid: 15502 + - uid: 10355 components: - type: Transform - pos: 34.5,72.5 + pos: -55.5,22.5 parent: 2 - - uid: 15503 + - uid: 10356 components: - type: Transform - pos: 34.5,71.5 + pos: -54.5,22.5 parent: 2 - - uid: 15504 + - uid: 10359 components: - type: Transform - pos: 34.5,70.5 + pos: -53.5,22.5 parent: 2 - - uid: 15505 + - uid: 10360 components: - type: Transform - pos: 33.5,70.5 + pos: -52.5,22.5 parent: 2 - - uid: 15506 + - uid: 10361 components: - type: Transform - pos: 32.5,70.5 + pos: -51.5,22.5 parent: 2 - - uid: 15507 + - uid: 10362 components: - type: Transform - pos: 31.5,70.5 + pos: -50.5,22.5 parent: 2 - - uid: 15508 + - uid: 10363 components: - type: Transform - pos: 30.5,70.5 + pos: -49.5,22.5 parent: 2 - - uid: 15509 + - uid: 10368 components: - type: Transform - pos: 30.5,69.5 + pos: -48.5,20.5 parent: 2 - - uid: 15510 + - uid: 10369 components: - type: Transform - pos: 28.5,50.5 + pos: -49.5,20.5 parent: 2 - - uid: 15511 + - uid: 10370 components: - type: Transform - pos: 29.5,69.5 + pos: -46.5,22.5 parent: 2 - - uid: 15512 + - uid: 10371 components: - type: Transform - pos: 29.5,68.5 + pos: -45.5,22.5 parent: 2 - - uid: 15513 + - uid: 10376 components: - type: Transform - pos: 29.5,67.5 + pos: -44.5,22.5 parent: 2 - - uid: 15514 + - uid: 10379 components: - type: Transform - pos: 29.5,66.5 + pos: -43.5,22.5 parent: 2 - - uid: 15515 + - uid: 10380 components: - type: Transform - pos: 29.5,65.5 + pos: -42.5,22.5 parent: 2 - - uid: 15516 + - uid: 10384 components: - type: Transform - pos: 29.5,64.5 + pos: -47.5,20.5 parent: 2 - - uid: 15517 + - uid: 10385 components: - type: Transform - pos: 29.5,63.5 + pos: -46.5,20.5 parent: 2 - - uid: 15518 + - uid: 10388 components: - type: Transform - pos: 29.5,62.5 + pos: -46.5,21.5 parent: 2 - - uid: 15519 + - uid: 10409 components: - type: Transform - pos: 29.5,61.5 + pos: -40.5,30.5 parent: 2 - - uid: 15520 + - uid: 10414 components: - type: Transform - pos: 29.5,60.5 + pos: -40.5,29.5 parent: 2 - - uid: 15522 + - uid: 10422 components: - type: Transform - pos: 29.5,59.5 + pos: -40.5,28.5 parent: 2 - - uid: 15523 + - uid: 10425 components: - type: Transform - pos: 29.5,58.5 + pos: -40.5,27.5 parent: 2 - - uid: 15524 + - uid: 10426 components: - type: Transform - pos: 29.5,57.5 + pos: -41.5,27.5 parent: 2 - - uid: 15525 + - uid: 10427 components: - type: Transform - pos: 29.5,56.5 + pos: -41.5,26.5 parent: 2 - - uid: 15526 + - uid: 10446 components: - type: Transform - pos: 29.5,55.5 + pos: -41.5,25.5 parent: 2 - - uid: 15527 + - uid: 10447 components: - type: Transform - pos: 29.5,54.5 + pos: -41.5,24.5 parent: 2 - - uid: 15528 + - uid: 10448 components: - type: Transform - pos: 29.5,53.5 + pos: -41.5,23.5 parent: 2 - - uid: 15529 + - uid: 10513 components: - type: Transform - pos: 29.5,52.5 + pos: 6.5,-10.5 parent: 2 - - uid: 15530 + - uid: 10514 components: - type: Transform - pos: 29.5,51.5 + pos: 22.5,0.5 parent: 2 - - uid: 15531 + - uid: 10515 components: - type: Transform - pos: 29.5,50.5 + pos: 23.5,0.5 parent: 2 - - uid: 15532 + - uid: 10516 components: - type: Transform - pos: 28.5,49.5 + pos: 24.5,0.5 parent: 2 - - uid: 15533 + - uid: 10523 components: - type: Transform - pos: 28.5,48.5 + pos: 25.5,0.5 parent: 2 - - uid: 15534 + - uid: 10524 components: - type: Transform - pos: 28.5,47.5 + pos: 26.5,0.5 parent: 2 - - uid: 15535 + - uid: 10529 components: - type: Transform - pos: 28.5,46.5 + pos: 27.5,0.5 parent: 2 - - uid: 15536 + - uid: 10530 components: - type: Transform - pos: 28.5,45.5 + pos: 28.5,0.5 parent: 2 - - uid: 15537 + - uid: 10531 components: - type: Transform - pos: 28.5,44.5 + pos: 29.5,0.5 parent: 2 - - uid: 15539 + - uid: 10544 components: - type: Transform - pos: 27.5,44.5 + pos: 30.5,0.5 parent: 2 - - uid: 15540 + - uid: 10545 components: - type: Transform - pos: 27.5,43.5 + pos: 31.5,0.5 parent: 2 - - uid: 15541 + - uid: 10546 components: - type: Transform - pos: 27.5,42.5 + pos: 32.5,0.5 parent: 2 - - uid: 15542 + - uid: 10552 components: - type: Transform - pos: 27.5,41.5 + pos: 33.5,0.5 parent: 2 - - uid: 15543 + - uid: 10558 components: - type: Transform - pos: 27.5,40.5 + pos: 34.5,0.5 parent: 2 - - uid: 15545 + - uid: 10583 components: - type: Transform - pos: 27.5,39.5 + pos: 35.5,0.5 parent: 2 - - uid: 15546 + - uid: 10590 components: - type: Transform - pos: 32.5,61.5 + pos: 36.5,0.5 parent: 2 - - uid: 15547 + - uid: 10593 components: - type: Transform - pos: 32.5,62.5 + pos: 37.5,0.5 parent: 2 - - uid: 15548 + - uid: 10596 components: - type: Transform - pos: 32.5,63.5 + pos: 38.5,0.5 parent: 2 - - uid: 15550 + - uid: 10601 components: - type: Transform - pos: 32.5,64.5 + pos: 39.5,0.5 parent: 2 - - uid: 15552 + - uid: 10612 components: - type: Transform - pos: 32.5,65.5 + pos: 40.5,0.5 parent: 2 - - uid: 15553 + - uid: 10617 components: - type: Transform - pos: 32.5,66.5 + pos: 41.5,0.5 parent: 2 - - uid: 15554 + - uid: 10618 components: - type: Transform - pos: 34.5,61.5 + pos: 42.5,0.5 parent: 2 - - uid: 15555 + - uid: 10622 components: - type: Transform - pos: 34.5,62.5 + pos: 42.5,1.5 parent: 2 - - uid: 15556 + - uid: 10623 components: - type: Transform - pos: 34.5,63.5 + pos: 42.5,2.5 parent: 2 - - uid: 15557 + - uid: 10624 components: - type: Transform - pos: 34.5,64.5 + pos: 42.5,3.5 parent: 2 - - uid: 15558 + - uid: 10625 components: - type: Transform - pos: 34.5,65.5 + pos: 42.5,4.5 parent: 2 - - uid: 15560 + - uid: 10626 components: - type: Transform - pos: 34.5,66.5 + pos: 42.5,5.5 parent: 2 - - uid: 15561 + - uid: 10627 components: - type: Transform - pos: 34.5,67.5 + pos: 43.5,5.5 parent: 2 - - uid: 15562 + - uid: 10629 components: - type: Transform - pos: 33.5,67.5 + pos: 44.5,5.5 parent: 2 - - uid: 15565 + - uid: 10649 components: - type: Transform - pos: 32.5,67.5 + pos: 45.5,6.5 parent: 2 - - uid: 15812 + - uid: 10650 components: - type: Transform - pos: 13.5,43.5 + pos: 45.5,7.5 parent: 2 - - uid: 15813 + - uid: 10651 components: - type: Transform - pos: 14.5,43.5 + pos: 45.5,8.5 parent: 2 - - uid: 15814 + - uid: 10652 components: - type: Transform - pos: 15.5,43.5 + pos: 46.5,8.5 parent: 2 - - uid: 15815 + - uid: 10654 components: - type: Transform - pos: 16.5,43.5 + pos: 20.5,-1.5 parent: 2 - - uid: 15816 + - uid: 10655 components: - type: Transform - pos: 16.5,44.5 + pos: 20.5,-2.5 parent: 2 - - uid: 15817 + - uid: 10660 components: - type: Transform - pos: 16.5,45.5 + pos: 20.5,-3.5 parent: 2 - - uid: 15819 + - uid: 10664 components: - type: Transform - pos: 16.5,46.5 + pos: 20.5,-4.5 parent: 2 - - uid: 15821 + - uid: 10674 components: - type: Transform - pos: 16.5,47.5 + pos: 20.5,-5.5 parent: 2 - - uid: 15825 + - uid: 10675 components: - type: Transform - pos: 16.5,48.5 + pos: 20.5,-6.5 parent: 2 - - uid: 15826 + - uid: 10680 components: - type: Transform - pos: 17.5,48.5 + pos: 20.5,-7.5 parent: 2 - - uid: 15827 + - uid: 10681 components: - type: Transform - pos: 18.5,48.5 + pos: 20.5,-8.5 parent: 2 - - uid: 15828 + - uid: 10682 components: - type: Transform - pos: 18.5,49.5 + pos: 19.5,-8.5 parent: 2 - - uid: 15829 + - uid: 10784 components: - type: Transform - pos: 19.5,49.5 + pos: 18.5,-8.5 parent: 2 - - uid: 15830 + - uid: 10788 components: - type: Transform - pos: 20.5,49.5 + pos: 17.5,-8.5 parent: 2 - - uid: 15831 + - uid: 10789 components: - type: Transform - pos: 21.5,49.5 + pos: 15.5,-8.5 parent: 2 - - uid: 15832 + - uid: 10796 components: - type: Transform - pos: 21.5,51.5 + pos: 16.5,-8.5 parent: 2 - - uid: 15833 + - uid: 10797 components: - type: Transform - pos: 21.5,50.5 + pos: 14.5,-8.5 parent: 2 - - uid: 15834 + - uid: 10800 components: - type: Transform - pos: 66.5,43.5 + pos: 13.5,-8.5 parent: 2 - - uid: 15836 + - uid: 10809 components: - type: Transform - pos: 65.5,43.5 + pos: 12.5,-8.5 parent: 2 - - uid: 15837 + - uid: 10810 components: - type: Transform - pos: 64.5,43.5 + pos: 11.5,-8.5 parent: 2 - - uid: 15838 + - uid: 10811 components: - type: Transform - pos: 63.5,43.5 + pos: 11.5,-9.5 parent: 2 - - uid: 15839 + - uid: 10812 components: - type: Transform - pos: 63.5,44.5 + pos: 11.5,-10.5 parent: 2 - - uid: 15840 + - uid: 10817 components: - type: Transform - pos: 58.5,43.5 + pos: 12.5,-10.5 parent: 2 - - uid: 15841 + - uid: 10821 components: - type: Transform - pos: 58.5,44.5 + pos: 13.5,-10.5 parent: 2 - - uid: 15842 + - uid: 10822 components: - type: Transform - pos: 58.5,45.5 + pos: 14.5,-10.5 parent: 2 - - uid: 15843 + - uid: 10825 components: - type: Transform - pos: 58.5,46.5 + pos: 14.5,-11.5 parent: 2 - - uid: 15844 + - uid: 10826 components: - type: Transform - pos: 59.5,46.5 + pos: 8.5,-0.5 parent: 2 - - uid: 15845 + - uid: 10842 components: - type: Transform - pos: 60.5,46.5 + pos: 8.5,-1.5 parent: 2 - - uid: 15850 + - uid: 10843 components: - type: Transform - pos: 61.5,46.5 + pos: 8.5,-2.5 parent: 2 - - uid: 15851 + - uid: 10844 components: - type: Transform - pos: 62.5,46.5 + pos: 8.5,-3.5 parent: 2 - - uid: 15853 + - uid: 10845 components: - type: Transform - pos: 63.5,46.5 + pos: 8.5,-4.5 parent: 2 - - uid: 15854 + - uid: 10904 components: - type: Transform - pos: 63.5,45.5 + pos: -37.5,47.5 parent: 2 - - uid: 15855 + - uid: 10918 components: - type: Transform - pos: 59.5,44.5 + pos: 8.5,-5.5 parent: 2 - - uid: 15856 + - uid: 10975 components: - type: Transform - pos: 59.5,43.5 + pos: 8.5,-6.5 parent: 2 - - uid: 15857 + - uid: 10976 components: - type: Transform - pos: 62.5,44.5 + pos: 8.5,-7.5 parent: 2 - - uid: 15858 + - uid: 10979 components: - type: Transform - pos: 62.5,43.5 + pos: 8.5,-8.5 parent: 2 - - uid: 15859 + - uid: 11052 components: - type: Transform - pos: 62.5,42.5 + pos: 7.5,-8.5 parent: 2 - - uid: 15860 + - uid: 11060 components: - type: Transform - pos: 61.5,42.5 + pos: 7.5,-9.5 parent: 2 - - uid: 15861 + - uid: 11088 components: - type: Transform - pos: 60.5,42.5 + pos: 6.5,-9.5 parent: 2 - - uid: 15866 + - uid: 11094 components: - type: Transform - pos: 59.5,42.5 + pos: 5.5,-10.5 parent: 2 - - uid: 15867 + - uid: 11101 components: - type: Transform - pos: 59.5,41.5 + pos: 4.5,-10.5 parent: 2 - - uid: 15868 + - uid: 11132 components: - type: Transform - pos: 59.5,40.5 + pos: 18.5,53.5 parent: 2 - - uid: 15869 + - uid: 11135 components: - type: Transform - pos: 59.5,39.5 + pos: 3.5,-10.5 parent: 2 - - uid: 15871 + - uid: 11146 components: - type: Transform - pos: 54.5,38.5 + pos: 2.5,-10.5 parent: 2 - - uid: 15872 + - uid: 11150 components: - type: Transform - pos: 53.5,38.5 + pos: 1.5,-10.5 parent: 2 - - uid: 15873 + - uid: 11152 components: - type: Transform - pos: 52.5,38.5 + pos: 0.5,-10.5 parent: 2 - - uid: 15874 + - uid: 11164 components: - type: Transform - pos: 51.5,38.5 + pos: 17.5,56.5 parent: 2 - - uid: 15875 + - uid: 11182 components: - type: Transform - pos: 50.5,38.5 + pos: 0.5,-11.5 parent: 2 - - uid: 15876 + - uid: 11227 components: - type: Transform - pos: 49.5,38.5 + pos: -0.5,-11.5 parent: 2 - - uid: 15877 + - uid: 11229 components: - type: Transform - pos: 48.5,38.5 + pos: -0.5,-12.5 parent: 2 - - uid: 15879 + - uid: 11236 components: - type: Transform - pos: 47.5,38.5 + pos: -0.5,-13.5 parent: 2 - - uid: 15880 + - uid: 11246 components: - type: Transform - pos: 46.5,38.5 + pos: -0.5,-14.5 parent: 2 - - uid: 15881 + - uid: 11247 components: - type: Transform - pos: 45.5,38.5 + pos: -0.5,-15.5 parent: 2 - - uid: 15882 + - uid: 11264 components: - type: Transform - pos: 44.5,38.5 + pos: -0.5,-16.5 parent: 2 - - uid: 15883 + - uid: 11277 components: - type: Transform - pos: 43.5,38.5 + pos: -0.5,-17.5 parent: 2 - - uid: 15885 + - uid: 11283 components: - type: Transform - pos: 42.5,38.5 + pos: -0.5,-18.5 parent: 2 - - uid: 15919 + - uid: 11287 components: - type: Transform - pos: 42.5,37.5 + pos: -0.5,-19.5 parent: 2 - - uid: 15920 + - uid: 11301 components: - type: Transform - pos: 42.5,36.5 + pos: -0.5,-20.5 parent: 2 - - uid: 15921 + - uid: 11928 components: - type: Transform - pos: 42.5,35.5 + pos: -38.5,-28.5 parent: 2 - - uid: 15922 + - uid: 11986 components: - type: Transform - pos: 42.5,34.5 + pos: -34.5,-28.5 parent: 2 - - uid: 15923 + - uid: 11987 components: - type: Transform - pos: 42.5,33.5 + pos: -29.5,-28.5 parent: 2 - - uid: 15924 + - uid: 11988 components: - type: Transform - pos: 42.5,32.5 + pos: -32.5,-28.5 parent: 2 - - uid: 15925 + - uid: 12020 components: - type: Transform - pos: 42.5,31.5 + pos: -46.5,-27.5 parent: 2 - - uid: 15926 + - uid: 12167 components: - type: Transform - pos: 42.5,30.5 + pos: 21.5,54.5 parent: 2 - - uid: 15927 + - uid: 12265 components: - type: Transform - pos: 42.5,29.5 + pos: 11.5,43.5 parent: 2 - - uid: 15928 + - uid: 12296 components: - type: Transform - pos: 41.5,29.5 + pos: 2.5,43.5 parent: 2 - - uid: 15929 + - uid: 12307 components: - type: Transform - pos: 41.5,28.5 + pos: 0.5,43.5 parent: 2 - - uid: 15930 + - uid: 12308 components: - type: Transform - pos: 40.5,28.5 + pos: 10.5,43.5 parent: 2 - - uid: 15931 + - uid: 12328 components: - type: Transform - pos: 39.5,28.5 + pos: 9.5,43.5 parent: 2 - - uid: 15932 + - uid: 12361 components: - type: Transform - pos: 38.5,28.5 + pos: 5.5,43.5 parent: 2 - - uid: 15933 + - uid: 12573 components: - type: Transform - pos: 38.5,27.5 + pos: -0.5,2.5 parent: 2 - - uid: 15934 + - uid: 12616 components: - type: Transform - pos: 38.5,26.5 + pos: 17.5,55.5 parent: 2 - - uid: 15937 + - uid: 12619 components: - type: Transform - pos: 36.5,26.5 + pos: 25.5,50.5 parent: 2 - - uid: 15938 + - uid: 12792 components: - type: Transform - pos: 36.5,24.5 + pos: -11.5,7.5 parent: 2 - - uid: 15939 + - uid: 13011 components: - type: Transform - pos: 36.5,23.5 + pos: 8.5,43.5 parent: 2 - - uid: 15940 + - uid: 13043 components: - type: Transform - pos: 36.5,22.5 + pos: 3.5,43.5 parent: 2 - - uid: 15951 + - uid: 13217 components: - type: Transform - pos: 57.5,38.5 + pos: 7.5,43.5 parent: 2 - - uid: 15952 + - uid: 13218 components: - type: Transform - pos: 58.5,38.5 + pos: 1.5,43.5 parent: 2 - - uid: 15953 + - uid: 13419 components: - type: Transform - pos: 59.5,38.5 + pos: 4.5,43.5 parent: 2 - - uid: 15974 + - uid: 13530 components: - type: Transform - pos: -56.5,59.5 + pos: 6.5,43.5 parent: 2 - - uid: 15976 + - uid: 13750 components: - type: Transform - pos: -55.5,59.5 + pos: 12.5,43.5 parent: 2 - - uid: 15977 + - uid: 13839 components: - type: Transform - pos: -54.5,59.5 + pos: 12.5,42.5 parent: 2 - - uid: 15990 + - uid: 13872 components: - type: Transform - pos: -54.5,61.5 + pos: 12.5,41.5 parent: 2 - - uid: 15991 + - uid: 13898 components: - type: Transform - pos: -55.5,61.5 + pos: 12.5,40.5 parent: 2 - - uid: 15992 + - uid: 13902 components: - type: Transform - pos: -56.5,61.5 + pos: 12.5,39.5 parent: 2 - - uid: 15993 + - uid: 13904 components: - type: Transform - pos: -57.5,61.5 + pos: 14.5,39.5 parent: 2 - - uid: 15994 + - uid: 13919 components: - type: Transform - pos: -58.5,61.5 + pos: -17.5,-12.5 parent: 2 - - uid: 15995 + - uid: 13923 components: - type: Transform - pos: -59.5,61.5 + pos: 15.5,39.5 parent: 2 - - uid: 15996 + - uid: 13925 components: - type: Transform - pos: -60.5,61.5 + pos: 16.5,39.5 parent: 2 - - uid: 15998 + - uid: 13933 components: - type: Transform - pos: -54.5,60.5 + pos: 17.5,39.5 parent: 2 - - uid: 15999 + - uid: 13944 components: - type: Transform - pos: -53.5,60.5 + pos: 18.5,39.5 parent: 2 - - uid: 16000 + - uid: 13945 components: - type: Transform - pos: -59.5,57.5 + pos: 19.5,39.5 parent: 2 - - uid: 16001 + - uid: 13946 components: - type: Transform - pos: -58.5,57.5 + pos: 20.5,39.5 parent: 2 - - uid: 16002 + - uid: 13948 components: - type: Transform - pos: -57.5,57.5 + pos: 21.5,39.5 parent: 2 - - uid: 16003 + - uid: 13951 components: - type: Transform - pos: -56.5,57.5 + pos: 22.5,39.5 parent: 2 - - uid: 16004 + - uid: 13961 components: - type: Transform - pos: -55.5,57.5 + pos: 22.5,38.5 parent: 2 - - uid: 16005 + - uid: 13977 components: - type: Transform - pos: -54.5,57.5 + pos: 23.5,38.5 parent: 2 - - uid: 16006 + - uid: 13981 components: - type: Transform - pos: -54.5,55.5 + pos: 24.5,38.5 parent: 2 - - uid: 16007 + - uid: 13989 components: - type: Transform - pos: -55.5,55.5 + pos: 25.5,38.5 parent: 2 - - uid: 16008 + - uid: 13990 components: - type: Transform - pos: -56.5,55.5 + pos: 26.5,38.5 parent: 2 - - uid: 16009 + - uid: 14001 components: - type: Transform - pos: -57.5,55.5 + pos: 27.5,38.5 parent: 2 - - uid: 16010 + - uid: 14003 components: - type: Transform - pos: -58.5,55.5 + pos: 38.5,88.5 parent: 2 - - uid: 16011 + - uid: 14004 components: - type: Transform - pos: -59.5,55.5 + pos: 27.5,37.5 parent: 2 - - uid: 16012 + - uid: 14037 components: - type: Transform - pos: -54.5,56.5 + pos: 27.5,36.5 parent: 2 - - uid: 16013 + - uid: 14061 components: - type: Transform - pos: -53.5,56.5 + pos: 27.5,35.5 parent: 2 - - uid: 16014 + - uid: 14072 components: - type: Transform - pos: -51.5,56.5 + pos: 27.5,34.5 parent: 2 - - uid: 16015 + - uid: 14073 components: - type: Transform - pos: -50.5,56.5 + pos: 28.5,34.5 parent: 2 - - uid: 16016 + - uid: 14074 components: - type: Transform - pos: -50.5,57.5 + pos: 29.5,34.5 parent: 2 - - uid: 16017 + - uid: 14078 components: - type: Transform - pos: -49.5,57.5 + pos: 30.5,34.5 parent: 2 - - uid: 16018 + - uid: 14101 components: - type: Transform - pos: -48.5,57.5 + pos: 30.5,35.5 parent: 2 - - uid: 16019 + - uid: 14122 components: - type: Transform - pos: -47.5,57.5 + pos: 31.5,35.5 parent: 2 - - uid: 16020 + - uid: 14140 components: - type: Transform - pos: -46.5,57.5 + pos: 32.5,35.5 parent: 2 - - uid: 16021 + - uid: 14145 components: - type: Transform - pos: -45.5,57.5 + pos: 33.5,35.5 parent: 2 - - uid: 16022 + - uid: 14153 components: - type: Transform - pos: -45.5,55.5 + pos: 34.5,35.5 parent: 2 - - uid: 16023 + - uid: 14170 components: - type: Transform - pos: -46.5,55.5 + pos: 35.5,35.5 parent: 2 - - uid: 16024 + - uid: 14188 components: - type: Transform - pos: -47.5,55.5 + pos: 36.5,35.5 parent: 2 - - uid: 16025 + - uid: 14193 components: - type: Transform - pos: -48.5,55.5 + pos: 37.5,35.5 parent: 2 - - uid: 16026 + - uid: 14196 components: - type: Transform - pos: -49.5,55.5 + pos: 38.5,35.5 parent: 2 - - uid: 16027 + - uid: 14200 components: - type: Transform - pos: -50.5,55.5 + pos: 39.5,35.5 parent: 2 - - uid: 16028 + - uid: 14201 components: - type: Transform - pos: -50.5,59.5 + pos: 40.5,35.5 parent: 2 - - uid: 16029 + - uid: 14211 components: - type: Transform - pos: -49.5,59.5 + pos: 38.5,86.5 parent: 2 - - uid: 16030 + - uid: 14212 components: - type: Transform - pos: -48.5,59.5 + pos: 39.5,88.5 parent: 2 - - uid: 16031 + - uid: 14220 components: - type: Transform - pos: -47.5,59.5 + pos: 39.5,86.5 parent: 2 - - uid: 16032 + - uid: 14232 components: - type: Transform - pos: -46.5,59.5 + pos: 40.5,88.5 parent: 2 - - uid: 16033 + - uid: 14287 components: - type: Transform - pos: -45.5,59.5 + pos: 40.5,86.5 parent: 2 - - uid: 16034 + - uid: 14307 components: - type: Transform - pos: -44.5,59.5 + pos: 41.5,88.5 parent: 2 - - uid: 16035 + - uid: 14319 components: - type: Transform - pos: -44.5,61.5 + pos: 41.5,86.5 parent: 2 - - uid: 16036 + - uid: 14328 components: - type: Transform - pos: -45.5,61.5 + pos: 42.5,88.5 parent: 2 - - uid: 16037 + - uid: 14335 components: - type: Transform - pos: -46.5,61.5 + pos: 42.5,86.5 parent: 2 - - uid: 16038 + - uid: 14337 components: - type: Transform - pos: -47.5,61.5 + pos: -31.5,-28.5 parent: 2 - - uid: 16039 + - uid: 14338 components: - type: Transform - pos: -48.5,61.5 + pos: 43.5,88.5 parent: 2 - - uid: 16040 + - uid: 14384 components: - type: Transform - pos: -49.5,61.5 + pos: -12.5,-12.5 parent: 2 - - uid: 16041 + - uid: 14387 components: - type: Transform - pos: -50.5,61.5 + pos: 43.5,86.5 parent: 2 - - uid: 16042 + - uid: 14400 components: - type: Transform - pos: -50.5,60.5 + pos: 44.5,88.5 parent: 2 - - uid: 16043 + - uid: 14409 components: - type: Transform - pos: -51.5,60.5 + pos: 44.5,86.5 parent: 2 - - uid: 16044 + - uid: 14426 components: - type: Transform - pos: -51.5,64.5 + pos: 45.5,88.5 parent: 2 - - uid: 16046 + - uid: 14435 components: - type: Transform - pos: -50.5,64.5 + pos: 45.5,87.5 parent: 2 - - uid: 16047 + - uid: 14438 components: - type: Transform - pos: -49.5,63.5 + pos: 45.5,86.5 parent: 2 - - uid: 16048 + - uid: 14442 components: - type: Transform - pos: -48.5,63.5 + pos: 36.5,84.5 parent: 2 - - uid: 16049 + - uid: 14443 components: - type: Transform - pos: -47.5,63.5 + pos: 37.5,84.5 parent: 2 - - uid: 16050 + - uid: 14446 components: - type: Transform - pos: -46.5,63.5 + pos: 38.5,84.5 parent: 2 - - uid: 16051 + - uid: 14459 components: - type: Transform - pos: -45.5,63.5 + pos: 39.5,84.5 parent: 2 - - uid: 16053 + - uid: 14463 components: - type: Transform - pos: -45.5,65.5 + pos: 40.5,84.5 parent: 2 - - uid: 16054 + - uid: 14465 components: - type: Transform - pos: -46.5,65.5 + pos: 41.5,84.5 parent: 2 - - uid: 16056 + - uid: 14466 components: - type: Transform - pos: -47.5,65.5 + pos: 42.5,84.5 parent: 2 - - uid: 16057 + - uid: 14467 components: - type: Transform - pos: -48.5,65.5 + pos: 43.5,84.5 parent: 2 - - uid: 16058 + - uid: 14469 components: - type: Transform - pos: -49.5,65.5 + pos: 44.5,84.5 parent: 2 - - uid: 16059 + - uid: 14470 components: - type: Transform - pos: -50.5,65.5 + pos: 44.5,82.5 parent: 2 - - uid: 16062 + - uid: 14478 components: - type: Transform - pos: -59.5,63.5 + pos: 43.5,82.5 parent: 2 - - uid: 16063 + - uid: 14480 components: - type: Transform - pos: -58.5,63.5 + pos: 42.5,82.5 parent: 2 - - uid: 16064 + - uid: 14492 components: - type: Transform - pos: -57.5,63.5 + pos: 41.5,82.5 parent: 2 - - uid: 16065 + - uid: 14497 components: - type: Transform - pos: -56.5,63.5 + pos: 40.5,82.5 parent: 2 - - uid: 16066 + - uid: 14507 components: - type: Transform - pos: -55.5,63.5 + pos: 39.5,82.5 parent: 2 - - uid: 16067 + - uid: 14508 components: - type: Transform - pos: -54.5,63.5 + pos: 38.5,82.5 parent: 2 - - uid: 16068 + - uid: 14511 components: - type: Transform - pos: -54.5,64.5 + pos: 37.5,82.5 parent: 2 - - uid: 16069 + - uid: 14519 components: - type: Transform - pos: -54.5,65.5 + pos: 36.5,82.5 parent: 2 - - uid: 16070 + - uid: 14524 components: - type: Transform - pos: -55.5,65.5 + pos: 44.5,83.5 parent: 2 - - uid: 16071 + - uid: 14525 components: - type: Transform - pos: -56.5,65.5 + pos: 45.5,83.5 parent: 2 - - uid: 16072 + - uid: 14526 components: - type: Transform - pos: -57.5,65.5 + pos: 47.5,83.5 parent: 2 - - uid: 16073 + - uid: 14527 components: - type: Transform - pos: -58.5,65.5 + pos: -59.5,59.5 parent: 2 - - uid: 16074 + - uid: 14530 components: - type: Transform - pos: -59.5,65.5 + pos: 58.5,88.5 parent: 2 - - uid: 16075 + - uid: 14533 components: - type: Transform - pos: -53.5,64.5 + pos: 57.5,88.5 parent: 2 - - uid: 16076 + - uid: 14548 components: - type: Transform - pos: -59.5,72.5 + pos: 56.5,88.5 parent: 2 - - uid: 16077 + - uid: 14571 components: - type: Transform - pos: -59.5,71.5 + pos: -33.5,-28.5 parent: 2 - - uid: 16078 + - uid: 14572 components: - type: Transform - pos: -59.5,70.5 + pos: -30.5,-28.5 parent: 2 - - uid: 16079 + - uid: 14576 components: - type: Transform - pos: -59.5,69.5 + pos: 55.5,88.5 parent: 2 - - uid: 16081 + - uid: 14585 components: - type: Transform - pos: -57.5,72.5 + pos: 54.5,88.5 parent: 2 - - uid: 16082 + - uid: 14592 components: - type: Transform - pos: -57.5,71.5 + pos: 53.5,88.5 parent: 2 - - uid: 16083 + - uid: 14619 components: - type: Transform - pos: -57.5,70.5 + pos: 52.5,88.5 parent: 2 - - uid: 16085 + - uid: 14620 components: - type: Transform - pos: -57.5,69.5 + pos: 51.5,88.5 parent: 2 - - uid: 16087 + - uid: 14652 components: - type: Transform - pos: -58.5,69.5 + pos: 51.5,86.5 parent: 2 - - uid: 16089 + - uid: 14655 components: - type: Transform - pos: -58.5,68.5 + pos: 52.5,86.5 parent: 2 - - uid: 16090 + - uid: 14657 components: - type: Transform - pos: -58.5,67.5 + pos: 53.5,86.5 parent: 2 - - uid: 16091 + - uid: 14670 components: - type: Transform - pos: -47.5,72.5 + pos: 54.5,86.5 parent: 2 - - uid: 16092 + - uid: 14671 components: - type: Transform - pos: -47.5,71.5 + pos: 55.5,86.5 parent: 2 - - uid: 16093 + - uid: 14680 components: - type: Transform - pos: -47.5,70.5 + pos: 56.5,86.5 parent: 2 - - uid: 16094 + - uid: 14689 components: - type: Transform - pos: -47.5,69.5 + pos: 57.5,86.5 parent: 2 - - uid: 16095 + - uid: 14724 components: - type: Transform - pos: -45.5,72.5 + pos: 58.5,86.5 parent: 2 - - uid: 16096 + - uid: 14752 components: - type: Transform - pos: -45.5,71.5 + pos: -13.5,-12.5 parent: 2 - - uid: 16097 + - uid: 14753 components: - type: Transform - pos: -45.5,70.5 + pos: -14.5,-12.5 parent: 2 - - uid: 16098 + - uid: 14806 components: - type: Transform - pos: -45.5,69.5 + pos: 51.5,87.5 parent: 2 - - uid: 16099 + - uid: 14841 components: - type: Transform - pos: -46.5,69.5 + pos: 50.5,87.5 parent: 2 - - uid: 16100 + - uid: 14858 components: - type: Transform - pos: -46.5,68.5 + pos: 49.5,87.5 parent: 2 - - uid: 16101 + - uid: 14866 components: - type: Transform - pos: -52.5,70.5 + pos: -60.5,59.5 parent: 2 - - uid: 16103 + - uid: 14897 components: - type: Transform - pos: -52.5,69.5 + pos: -57.5,59.5 parent: 2 - - uid: 16104 + - uid: 14900 components: - type: Transform - pos: -52.5,68.5 + pos: 60.5,82.5 parent: 2 - - uid: 16105 + - uid: 14902 components: - type: Transform - pos: -57.5,67.5 + pos: 59.5,82.5 parent: 2 - - uid: 16106 + - uid: 14908 components: - type: Transform - pos: -56.5,67.5 + pos: -10.5,7.5 parent: 2 - - uid: 16107 + - uid: 14913 components: - type: Transform - pos: -55.5,67.5 + pos: 25.5,51.5 parent: 2 - - uid: 16108 + - uid: 14914 components: - type: Transform - pos: -54.5,67.5 + pos: 58.5,82.5 parent: 2 - - uid: 16109 + - uid: 14945 components: - type: Transform - pos: -46.5,67.5 + pos: 57.5,82.5 parent: 2 - - uid: 16110 + - uid: 14958 components: - type: Transform - pos: -47.5,67.5 + pos: 56.5,82.5 parent: 2 - - uid: 16115 + - uid: 14959 components: - type: Transform - pos: -48.5,67.5 + pos: 55.5,82.5 parent: 2 - - uid: 16116 + - uid: 14960 components: - type: Transform - pos: -49.5,67.5 + pos: 54.5,82.5 parent: 2 - - uid: 16117 + - uid: 14971 components: - type: Transform - pos: -50.5,67.5 + pos: 53.5,82.5 parent: 2 - - uid: 16122 + - uid: 14982 components: - type: Transform - pos: -52.5,54.5 + pos: 52.5,82.5 parent: 2 - - uid: 16123 + - uid: 14983 components: - type: Transform - pos: -47.5,40.5 + pos: 60.5,84.5 parent: 2 - - uid: 16124 + - uid: 14984 components: - type: Transform - pos: -46.5,40.5 + pos: 59.5,84.5 parent: 2 - - uid: 16125 + - uid: 14990 components: - type: Transform - pos: -45.5,40.5 + pos: 58.5,84.5 parent: 2 - - uid: 16126 + - uid: 14993 components: - type: Transform - pos: -45.5,41.5 + pos: 57.5,84.5 parent: 2 - - uid: 16127 + - uid: 15006 components: - type: Transform - pos: -44.5,41.5 + pos: 56.5,84.5 parent: 2 - - uid: 16128 + - uid: 15037 components: - type: Transform - pos: -43.5,41.5 + pos: 55.5,84.5 parent: 2 - - uid: 16129 + - uid: 15042 components: - type: Transform - pos: -43.5,42.5 + pos: 54.5,84.5 parent: 2 - - uid: 16130 + - uid: 15044 components: - type: Transform - pos: -42.5,42.5 + pos: 53.5,84.5 parent: 2 - - uid: 16131 + - uid: 15058 components: - type: Transform - pos: -42.5,43.5 + pos: 52.5,84.5 parent: 2 - - uid: 16132 + - uid: 15060 components: - type: Transform - pos: -42.5,44.5 + pos: 52.5,83.5 parent: 2 - - uid: 16133 + - uid: 15064 components: - type: Transform - pos: -42.5,45.5 + pos: 51.5,83.5 parent: 2 - - uid: 16134 + - uid: 15113 components: - type: Transform - pos: -41.5,45.5 + pos: 50.5,83.5 parent: 2 - - uid: 16135 + - uid: 15114 components: - type: Transform - pos: -41.5,46.5 + pos: 49.5,83.5 parent: 2 - - uid: 16136 + - uid: 15128 components: - type: Transform - pos: -41.5,47.5 + pos: 58.5,80.5 parent: 2 - - uid: 16137 + - uid: 15129 components: - type: Transform - pos: -40.5,47.5 + pos: 38.5,80.5 parent: 2 - - uid: 16138 + - uid: 15226 components: - type: Transform - pos: -39.5,47.5 + pos: 39.5,80.5 parent: 2 - - uid: 16139 + - uid: 15256 components: - type: Transform - pos: -38.5,47.5 + pos: 40.5,80.5 parent: 2 - - uid: 16140 + - uid: 15260 components: - type: Transform - pos: -38.5,48.5 + pos: 41.5,80.5 parent: 2 - - uid: 16147 + - uid: 15266 components: - type: Transform - pos: -37.5,48.5 + pos: 42.5,80.5 parent: 2 - - uid: 16148 + - uid: 15269 components: - type: Transform - pos: -36.5,48.5 + pos: 19.5,55.5 parent: 2 - - uid: 16151 + - uid: 15270 components: - type: Transform - pos: -36.5,47.5 + pos: 43.5,80.5 parent: 2 - - uid: 16152 + - uid: 15289 components: - type: Transform - pos: -35.5,47.5 + pos: 44.5,80.5 parent: 2 - - uid: 16153 + - uid: 15294 components: - type: Transform - pos: -34.5,47.5 + pos: 45.5,80.5 parent: 2 - - uid: 16154 + - uid: 15303 components: - type: Transform - pos: -33.5,47.5 + pos: 38.5,78.5 parent: 2 - - uid: 16155 + - uid: 15304 components: - type: Transform - pos: -33.5,46.5 + pos: 21.5,55.5 parent: 2 - - uid: 16156 + - uid: 15316 components: - type: Transform - pos: -32.5,46.5 + pos: 39.5,78.5 parent: 2 - - uid: 16157 + - uid: 15320 components: - type: Transform - pos: -31.5,46.5 + pos: 40.5,78.5 parent: 2 - - uid: 16158 + - uid: 15358 components: - type: Transform - pos: -30.5,46.5 + pos: 19.5,53.5 parent: 2 - - uid: 16159 + - uid: 15360 components: - type: Transform - pos: -30.5,47.5 + pos: 21.5,56.5 parent: 2 - - uid: 16160 + - uid: 15381 components: - type: Transform - pos: -30.5,48.5 + pos: 41.5,78.5 parent: 2 - - uid: 16161 + - uid: 15392 components: - type: Transform - pos: -30.5,49.5 + pos: 42.5,78.5 parent: 2 - - uid: 16162 + - uid: 15393 components: - type: Transform - pos: -30.5,50.5 + pos: 43.5,78.5 parent: 2 - - uid: 16164 + - uid: 15394 components: - type: Transform - pos: -30.5,51.5 + pos: 44.5,78.5 parent: 2 - - uid: 16166 + - uid: 15402 components: - type: Transform - pos: -30.5,52.5 + pos: 45.5,78.5 parent: 2 - - uid: 16174 + - uid: 15413 components: - type: Transform - pos: -29.5,52.5 + pos: 45.5,79.5 parent: 2 - - uid: 16175 + - uid: 15431 components: - type: Transform - pos: -28.5,52.5 + pos: 46.5,79.5 parent: 2 - - uid: 16176 + - uid: 15434 components: - type: Transform - pos: -27.5,52.5 + pos: 47.5,79.5 parent: 2 - - uid: 16177 + - uid: 15446 components: - type: Transform - pos: -26.5,52.5 + pos: 57.5,80.5 parent: 2 - - uid: 16178 + - uid: 15448 components: - type: Transform - pos: -25.5,52.5 + pos: 56.5,80.5 parent: 2 - - uid: 16179 + - uid: 15449 components: - type: Transform - pos: -24.5,52.5 + pos: 55.5,80.5 parent: 2 - - uid: 16180 + - uid: 15450 components: - type: Transform - pos: -23.5,52.5 + pos: 54.5,80.5 parent: 2 - - uid: 16181 + - uid: 15451 components: - type: Transform - pos: -22.5,52.5 + pos: 53.5,80.5 parent: 2 - - uid: 16182 + - uid: 15453 components: - type: Transform - pos: -21.5,52.5 + pos: 52.5,80.5 parent: 2 - - uid: 16183 + - uid: 15455 components: - type: Transform - pos: -20.5,52.5 + pos: 51.5,80.5 parent: 2 - - uid: 16184 + - uid: 15456 components: - type: Transform - pos: -19.5,52.5 + pos: 58.5,78.5 parent: 2 - - uid: 16185 + - uid: 15457 components: - type: Transform - pos: -18.5,52.5 + pos: 57.5,78.5 parent: 2 - - uid: 16186 + - uid: 15458 components: - type: Transform - pos: -17.5,52.5 + pos: 56.5,78.5 parent: 2 - - uid: 16187 + - uid: 15459 components: - type: Transform - pos: -16.5,52.5 + pos: 55.5,78.5 parent: 2 - - uid: 16188 + - uid: 15460 components: - type: Transform - pos: -15.5,52.5 + pos: 54.5,78.5 parent: 2 - - uid: 16189 + - uid: 15461 components: - type: Transform - pos: -14.5,52.5 + pos: 53.5,78.5 parent: 2 - - uid: 16190 + - uid: 15462 components: - type: Transform - pos: -13.5,52.5 + pos: 52.5,78.5 parent: 2 - - uid: 16191 + - uid: 15466 components: - type: Transform - pos: -13.5,51.5 + pos: 51.5,78.5 parent: 2 - - uid: 16200 + - uid: 15467 components: - type: Transform - pos: -57.5,-13.5 + pos: 51.5,79.5 parent: 2 - - uid: 16201 + - uid: 15468 components: - type: Transform - pos: -57.5,-16.5 + pos: 50.5,79.5 parent: 2 - - uid: 16202 + - uid: 15469 components: - type: Transform - pos: -57.5,-14.5 + pos: 45.5,74.5 parent: 2 - - uid: 16203 + - uid: 15470 components: - type: Transform - pos: -57.5,-15.5 + pos: 49.5,79.5 parent: 2 - - uid: 16204 + - uid: 15476 components: - type: Transform - pos: -56.5,-16.5 + pos: 48.5,75.5 parent: 2 - - uid: 16216 + - uid: 15477 components: - type: Transform - pos: -22.5,0.5 + pos: 48.5,76.5 parent: 2 - - uid: 16217 + - uid: 15479 components: - type: Transform - pos: -23.5,0.5 + pos: 48.5,77.5 parent: 2 - - uid: 16218 + - uid: 15481 components: - type: Transform - pos: -24.5,0.5 + pos: 46.5,75.5 parent: 2 - - uid: 16219 + - uid: 15482 components: - type: Transform - pos: -25.5,0.5 + pos: 46.5,74.5 parent: 2 - - uid: 16220 + - uid: 15483 components: - type: Transform - pos: -26.5,0.5 + pos: 44.5,74.5 parent: 2 - - uid: 16221 + - uid: 15486 components: - type: Transform - pos: -27.5,0.5 + pos: 43.5,74.5 parent: 2 - - uid: 16222 + - uid: 15487 components: - type: Transform - pos: -28.5,0.5 + pos: 42.5,74.5 parent: 2 - - uid: 16223 + - uid: 15488 components: - type: Transform - pos: -29.5,0.5 + pos: 42.5,73.5 parent: 2 - - uid: 16224 + - uid: 15489 components: - type: Transform - pos: -30.5,0.5 + pos: 42.5,72.5 parent: 2 - - uid: 16225 + - uid: 15491 components: - type: Transform - pos: -31.5,0.5 + pos: 41.5,72.5 parent: 2 - - uid: 16226 + - uid: 15495 components: - type: Transform - pos: -32.5,0.5 + pos: 40.5,72.5 parent: 2 - - uid: 16227 + - uid: 15496 components: - type: Transform - pos: -33.5,0.5 + pos: 39.5,72.5 parent: 2 - - uid: 16228 + - uid: 15497 components: - type: Transform - pos: -34.5,0.5 + pos: 38.5,72.5 parent: 2 - - uid: 16229 + - uid: 15499 components: - type: Transform - pos: -35.5,0.5 + pos: 37.5,72.5 parent: 2 - - uid: 16230 + - uid: 15500 components: - type: Transform - pos: -36.5,0.5 + pos: 36.5,72.5 parent: 2 - - uid: 16231 + - uid: 15501 components: - type: Transform - pos: -37.5,0.5 + pos: 35.5,72.5 parent: 2 - - uid: 16232 + - uid: 15502 components: - type: Transform - pos: -38.5,0.5 + pos: 34.5,72.5 parent: 2 - - uid: 16233 + - uid: 15503 components: - type: Transform - pos: -39.5,0.5 + pos: 34.5,71.5 parent: 2 - - uid: 16234 + - uid: 15504 components: - type: Transform - pos: -40.5,0.5 + pos: 34.5,70.5 parent: 2 - - uid: 16235 + - uid: 15505 components: - type: Transform - pos: -41.5,0.5 + pos: 33.5,70.5 parent: 2 - - uid: 16236 + - uid: 15506 components: - type: Transform - pos: -42.5,0.5 + pos: 32.5,70.5 parent: 2 - - uid: 16237 + - uid: 15507 components: - type: Transform - pos: -43.5,0.5 + pos: 31.5,70.5 parent: 2 - - uid: 16238 + - uid: 15508 components: - type: Transform - pos: -44.5,0.5 + pos: 30.5,70.5 parent: 2 - - uid: 16239 + - uid: 15509 components: - type: Transform - pos: -45.5,0.5 + pos: 30.5,69.5 parent: 2 - - uid: 16240 + - uid: 15510 components: - type: Transform - pos: -46.5,0.5 + pos: 28.5,50.5 parent: 2 - - uid: 16241 + - uid: 15511 components: - type: Transform - pos: -47.5,0.5 + pos: 29.5,69.5 parent: 2 - - uid: 16242 + - uid: 15512 components: - type: Transform - pos: -48.5,0.5 + pos: 29.5,68.5 parent: 2 - - uid: 16243 + - uid: 15513 components: - type: Transform - pos: -49.5,0.5 + pos: 29.5,67.5 parent: 2 - - uid: 16244 + - uid: 15514 components: - type: Transform - pos: -50.5,0.5 + pos: 29.5,66.5 parent: 2 - - uid: 16245 + - uid: 15515 components: - type: Transform - pos: -51.5,0.5 + pos: 29.5,65.5 parent: 2 - - uid: 16246 + - uid: 15516 components: - type: Transform - pos: -52.5,0.5 + pos: 29.5,64.5 parent: 2 - - uid: 16247 + - uid: 15517 components: - type: Transform - pos: -53.5,0.5 + pos: 29.5,63.5 parent: 2 - - uid: 16248 + - uid: 15518 components: - type: Transform - pos: -54.5,0.5 + pos: 29.5,62.5 parent: 2 - - uid: 16249 + - uid: 15519 components: - type: Transform - pos: -55.5,0.5 + pos: 29.5,61.5 parent: 2 - - uid: 16250 + - uid: 15520 components: - type: Transform - pos: -56.5,0.5 + pos: 29.5,60.5 parent: 2 - - uid: 16251 + - uid: 15522 components: - type: Transform - pos: -57.5,0.5 + pos: 29.5,59.5 parent: 2 - - uid: 16252 + - uid: 15523 components: - type: Transform - pos: -58.5,0.5 + pos: 29.5,58.5 parent: 2 - - uid: 16253 + - uid: 15524 components: - type: Transform - pos: -59.5,0.5 + pos: 29.5,57.5 parent: 2 - - uid: 16254 + - uid: 15525 components: - type: Transform - pos: -58.5,-13.5 + pos: 29.5,56.5 parent: 2 - - uid: 16255 + - uid: 15526 components: - type: Transform - pos: -59.5,-13.5 + pos: 29.5,55.5 parent: 2 - - uid: 16256 + - uid: 15527 components: - type: Transform - pos: -60.5,-13.5 + pos: 29.5,54.5 parent: 2 - - uid: 16257 + - uid: 15528 components: - type: Transform - pos: -61.5,-13.5 + pos: 29.5,53.5 parent: 2 - - uid: 16258 + - uid: 15529 components: - type: Transform - pos: -62.5,-13.5 + pos: 29.5,52.5 parent: 2 - - uid: 16259 + - uid: 15530 components: - type: Transform - pos: -63.5,-13.5 + pos: 29.5,51.5 parent: 2 - - uid: 16260 + - uid: 15531 components: - type: Transform - pos: -64.5,-13.5 + pos: 29.5,50.5 parent: 2 - - uid: 16261 + - uid: 15532 components: - type: Transform - pos: -65.5,-13.5 + pos: 28.5,49.5 parent: 2 - - uid: 16262 + - uid: 15533 components: - type: Transform - pos: -66.5,-13.5 + pos: 28.5,48.5 parent: 2 - - uid: 16263 + - uid: 15534 components: - type: Transform - pos: -67.5,-13.5 + pos: 28.5,47.5 parent: 2 - - uid: 16264 + - uid: 15535 components: - type: Transform - pos: -68.5,-13.5 + pos: 28.5,46.5 parent: 2 - - uid: 16265 + - uid: 15536 components: - type: Transform - pos: -69.5,-13.5 + pos: 28.5,45.5 parent: 2 - - uid: 16266 + - uid: 15537 components: - type: Transform - pos: -69.5,-14.5 + pos: 28.5,44.5 parent: 2 - - uid: 16267 + - uid: 15539 components: - type: Transform - pos: -69.5,-15.5 + pos: 27.5,44.5 parent: 2 - - uid: 16268 + - uid: 15540 components: - type: Transform - pos: -70.5,-15.5 + pos: 27.5,43.5 parent: 2 - - uid: 16269 + - uid: 15541 components: - type: Transform - pos: -71.5,-15.5 + pos: 27.5,42.5 parent: 2 - - uid: 16270 + - uid: 15542 components: - type: Transform - pos: -71.5,-14.5 + pos: 27.5,41.5 parent: 2 - - uid: 16271 + - uid: 15543 components: - type: Transform - pos: -72.5,-14.5 + pos: 27.5,40.5 parent: 2 - - uid: 16272 + - uid: 15545 components: - type: Transform - pos: -72.5,-13.5 + pos: 27.5,39.5 parent: 2 - - uid: 16273 + - uid: 15546 components: - type: Transform - pos: -72.5,-12.5 + pos: 32.5,61.5 parent: 2 - - uid: 16274 + - uid: 15547 components: - type: Transform - pos: -72.5,-11.5 + pos: 32.5,62.5 parent: 2 - - uid: 16275 + - uid: 15548 components: - type: Transform - pos: -72.5,-10.5 + pos: 32.5,63.5 parent: 2 - - uid: 16276 + - uid: 15550 components: - type: Transform - pos: -72.5,-9.5 + pos: 32.5,64.5 parent: 2 - - uid: 16277 + - uid: 15552 components: - type: Transform - pos: -72.5,-8.5 + pos: 32.5,65.5 parent: 2 - - uid: 16278 + - uid: 15553 components: - type: Transform - pos: -72.5,-7.5 + pos: 32.5,66.5 parent: 2 - - uid: 16279 + - uid: 15554 components: - type: Transform - pos: -72.5,-6.5 + pos: 34.5,61.5 parent: 2 - - uid: 16280 + - uid: 15555 components: - type: Transform - pos: -72.5,-5.5 + pos: 34.5,62.5 parent: 2 - - uid: 16281 + - uid: 15556 components: - type: Transform - pos: -72.5,-4.5 + pos: 34.5,63.5 parent: 2 - - uid: 16282 + - uid: 15557 components: - type: Transform - pos: -71.5,-4.5 + pos: 34.5,64.5 parent: 2 - - uid: 16283 + - uid: 15558 components: - type: Transform - pos: -70.5,-4.5 + pos: 34.5,65.5 parent: 2 - - uid: 16284 + - uid: 15560 components: - type: Transform - pos: -69.5,-4.5 + pos: 34.5,66.5 parent: 2 - - uid: 16285 + - uid: 15561 components: - type: Transform - pos: -68.5,-4.5 + pos: 34.5,67.5 parent: 2 - - uid: 16286 + - uid: 15562 components: - type: Transform - pos: -67.5,-4.5 + pos: 33.5,67.5 parent: 2 - - uid: 16287 + - uid: 15565 components: - type: Transform - pos: -66.5,-4.5 + pos: 32.5,67.5 parent: 2 - - uid: 16288 + - uid: 15812 components: - type: Transform - pos: -65.5,-4.5 + pos: 13.5,43.5 parent: 2 - - uid: 16289 + - uid: 15813 components: - type: Transform - pos: -64.5,-4.5 + pos: 14.5,43.5 parent: 2 - - uid: 16290 + - uid: 15814 components: - type: Transform - pos: -63.5,-4.5 + pos: 15.5,43.5 parent: 2 - - uid: 16291 + - uid: 15815 components: - type: Transform - pos: -63.5,-3.5 + pos: 16.5,43.5 parent: 2 - - uid: 16292 + - uid: 15816 components: - type: Transform - pos: -62.5,-3.5 + pos: 16.5,44.5 parent: 2 - - uid: 16293 + - uid: 15817 components: - type: Transform - pos: -61.5,-3.5 + pos: 16.5,45.5 parent: 2 - - uid: 16294 + - uid: 15819 components: - type: Transform - pos: -60.5,-3.5 + pos: 16.5,46.5 parent: 2 - - uid: 16295 + - uid: 15821 components: - type: Transform - pos: -59.5,-3.5 + pos: 16.5,47.5 parent: 2 - - uid: 16296 + - uid: 15825 components: - type: Transform - pos: -59.5,-2.5 + pos: 16.5,48.5 parent: 2 - - uid: 16297 + - uid: 15826 components: - type: Transform - pos: -59.5,-1.5 + pos: 17.5,48.5 parent: 2 - - uid: 16298 + - uid: 15827 components: - type: Transform - pos: -59.5,-0.5 + pos: 18.5,48.5 parent: 2 - - uid: 16300 + - uid: 15828 components: - type: Transform - pos: -1.5,12.5 + pos: 18.5,49.5 parent: 2 - - uid: 16302 + - uid: 15829 components: - type: Transform - pos: -2.5,12.5 + pos: 19.5,49.5 parent: 2 - - uid: 16303 + - uid: 15830 components: - type: Transform - pos: -3.5,12.5 + pos: 20.5,49.5 parent: 2 - - uid: 16304 + - uid: 15831 components: - type: Transform - pos: -4.5,12.5 + pos: 21.5,49.5 parent: 2 - - uid: 16305 + - uid: 15832 components: - type: Transform - pos: -5.5,12.5 + pos: 21.5,51.5 parent: 2 - - uid: 16306 + - uid: 15833 components: - type: Transform - pos: -6.5,12.5 + pos: 21.5,50.5 parent: 2 - - uid: 16307 + - uid: 15834 components: - type: Transform - pos: -7.5,12.5 + pos: 66.5,43.5 parent: 2 - - uid: 16308 + - uid: 15836 components: - type: Transform - pos: -7.5,11.5 + pos: 65.5,43.5 parent: 2 - - uid: 16309 + - uid: 15837 components: - type: Transform - pos: -8.5,11.5 + pos: 64.5,43.5 parent: 2 - - uid: 16310 + - uid: 15838 components: - type: Transform - pos: -8.5,10.5 + pos: 63.5,43.5 parent: 2 - - uid: 16311 + - uid: 15839 components: - type: Transform - pos: -9.5,10.5 + pos: 63.5,44.5 parent: 2 - - uid: 16312 + - uid: 15840 components: - type: Transform - pos: -9.5,9.5 + pos: 58.5,43.5 parent: 2 - - uid: 16313 + - uid: 15841 components: - type: Transform - pos: -9.5,8.5 + pos: 58.5,44.5 parent: 2 - - uid: 16314 + - uid: 15842 components: - type: Transform - pos: -9.5,7.5 + pos: 58.5,45.5 parent: 2 - - uid: 16315 + - uid: 15843 components: - type: Transform - pos: -9.5,6.5 + pos: 58.5,46.5 parent: 2 - - uid: 16316 + - uid: 15844 components: - type: Transform - pos: -9.5,5.5 + pos: 59.5,46.5 parent: 2 - - uid: 16317 + - uid: 15845 components: - type: Transform - pos: -9.5,4.5 + pos: 60.5,46.5 parent: 2 - - uid: 16318 + - uid: 15850 components: - type: Transform - pos: -9.5,3.5 + pos: 61.5,46.5 parent: 2 - - uid: 16319 + - uid: 15851 components: - type: Transform - pos: -9.5,2.5 + pos: 62.5,46.5 parent: 2 - - uid: 16320 + - uid: 15853 components: - type: Transform - pos: -9.5,1.5 + pos: 63.5,46.5 parent: 2 - - uid: 16321 + - uid: 15854 components: - type: Transform - pos: -9.5,0.5 + pos: 63.5,45.5 parent: 2 - - uid: 16324 + - uid: 15855 components: - type: Transform - pos: -20.5,0.5 + pos: 59.5,44.5 parent: 2 - - uid: 16325 + - uid: 15856 components: - type: Transform - pos: -19.5,0.5 + pos: 59.5,43.5 parent: 2 - - uid: 16326 + - uid: 15857 components: - type: Transform - pos: -18.5,0.5 + pos: 62.5,44.5 parent: 2 - - uid: 16327 + - uid: 15858 components: - type: Transform - pos: -17.5,0.5 + pos: 62.5,43.5 parent: 2 - - uid: 16328 + - uid: 15859 components: - type: Transform - pos: -16.5,0.5 + pos: 62.5,42.5 parent: 2 - - uid: 16329 + - uid: 15860 components: - type: Transform - pos: -15.5,0.5 + pos: 61.5,42.5 parent: 2 - - uid: 16330 + - uid: 15861 components: - type: Transform - pos: -14.5,0.5 + pos: 60.5,42.5 parent: 2 - - uid: 16331 + - uid: 15866 components: - type: Transform - pos: -13.5,0.5 + pos: 59.5,42.5 parent: 2 - - uid: 16332 + - uid: 15867 components: - type: Transform - pos: -12.5,0.5 + pos: 59.5,41.5 parent: 2 - - uid: 16333 + - uid: 15868 components: - type: Transform - pos: -11.5,0.5 + pos: 59.5,40.5 parent: 2 - - uid: 16334 + - uid: 15869 components: - type: Transform - pos: -10.5,0.5 + pos: 59.5,39.5 parent: 2 - - uid: 16340 + - uid: 15871 components: - type: Transform - pos: -9.5,-0.5 + pos: 54.5,38.5 parent: 2 - - uid: 16342 + - uid: 15872 components: - type: Transform - pos: -9.5,-1.5 + pos: 53.5,38.5 parent: 2 - - uid: 16343 + - uid: 15873 components: - type: Transform - pos: -9.5,-2.5 + pos: 52.5,38.5 parent: 2 - - uid: 16344 + - uid: 15874 components: - type: Transform - pos: -9.5,-3.5 + pos: 51.5,38.5 parent: 2 - - uid: 16345 + - uid: 15875 components: - type: Transform - pos: -9.5,-4.5 + pos: 50.5,38.5 parent: 2 - - uid: 16346 + - uid: 15876 components: - type: Transform - pos: -9.5,-5.5 + pos: 49.5,38.5 parent: 2 - - uid: 16347 + - uid: 15877 components: - type: Transform - pos: -9.5,-6.5 + pos: 48.5,38.5 parent: 2 - - uid: 16348 + - uid: 15879 components: - type: Transform - pos: -9.5,-7.5 + pos: 47.5,38.5 parent: 2 - - uid: 16349 + - uid: 15880 components: - type: Transform - pos: -9.5,-8.5 + pos: 46.5,38.5 parent: 2 - - uid: 16350 + - uid: 15881 components: - type: Transform - pos: -8.5,-8.5 + pos: 45.5,38.5 parent: 2 - - uid: 16357 + - uid: 15882 components: - type: Transform - pos: -8.5,-9.5 + pos: 44.5,38.5 parent: 2 - - uid: 16358 + - uid: 15883 components: - type: Transform - pos: -7.5,-9.5 + pos: 43.5,38.5 parent: 2 - - uid: 16359 + - uid: 15885 components: - type: Transform - pos: -7.5,-10.5 + pos: 42.5,38.5 parent: 2 - - uid: 16365 + - uid: 15919 components: - type: Transform - pos: -6.5,-10.5 + pos: 42.5,37.5 parent: 2 - - uid: 16366 + - uid: 15920 components: - type: Transform - pos: -5.5,-10.5 + pos: 42.5,36.5 parent: 2 - - uid: 16367 + - uid: 15921 components: - type: Transform - pos: -4.5,-10.5 + pos: 42.5,35.5 parent: 2 - - uid: 16368 + - uid: 15922 components: - type: Transform - pos: -3.5,-10.5 + pos: 42.5,34.5 parent: 2 - - uid: 16369 + - uid: 15923 components: - type: Transform - pos: -2.5,-10.5 + pos: 42.5,33.5 parent: 2 - - uid: 16370 + - uid: 15924 components: - type: Transform - pos: -1.5,-10.5 + pos: 42.5,32.5 parent: 2 - - uid: 16376 + - uid: 15925 components: - type: Transform - pos: -1.5,-11.5 + pos: 42.5,31.5 parent: 2 - - uid: 16382 + - uid: 15926 components: - type: Transform - pos: -1.5,-9.5 + pos: 42.5,30.5 parent: 2 - - uid: 16383 + - uid: 15927 components: - type: Transform - pos: -0.5,-9.5 + pos: 42.5,29.5 parent: 2 - - uid: 16384 + - uid: 15928 components: - type: Transform - pos: 0.5,-9.5 + pos: 41.5,29.5 parent: 2 - - uid: 16385 + - uid: 15929 components: - type: Transform - pos: -0.5,-8.5 + pos: 41.5,28.5 parent: 2 - - uid: 16389 + - uid: 15930 components: - type: Transform - pos: -8.5,0.5 + pos: 40.5,28.5 parent: 2 - - uid: 16390 + - uid: 15931 components: - type: Transform - pos: -7.5,0.5 + pos: 39.5,28.5 parent: 2 - - uid: 16391 + - uid: 15932 components: - type: Transform - pos: -6.5,0.5 + pos: 38.5,28.5 parent: 2 - - uid: 16392 + - uid: 15933 components: - type: Transform - pos: -5.5,0.5 + pos: 38.5,27.5 parent: 2 - - uid: 16393 + - uid: 15934 components: - type: Transform - pos: -4.5,0.5 + pos: 38.5,26.5 parent: 2 - - uid: 16394 + - uid: 15935 components: - type: Transform - pos: -3.5,0.5 + pos: 23.5,52.5 parent: 2 - - uid: 16395 + - uid: 15936 components: - type: Transform - pos: -2.5,0.5 + pos: 19.5,56.5 parent: 2 - - uid: 16396 + - uid: 15937 components: - type: Transform - pos: -1.5,0.5 + pos: 36.5,26.5 parent: 2 - - uid: 16397 + - uid: 15938 components: - type: Transform - pos: -7.5,9.5 + pos: 36.5,24.5 parent: 2 - - uid: 16398 + - uid: 15939 components: - type: Transform - pos: -6.5,9.5 + pos: 36.5,23.5 parent: 2 - - uid: 16399 + - uid: 15940 components: - type: Transform - pos: -6.5,10.5 + pos: 36.5,22.5 parent: 2 - - uid: 16400 + - uid: 15951 components: - type: Transform - pos: -5.5,10.5 + pos: 57.5,38.5 parent: 2 - - uid: 16401 + - uid: 15952 components: - type: Transform - pos: -4.5,10.5 + pos: 58.5,38.5 parent: 2 - - uid: 16402 + - uid: 15953 components: - type: Transform - pos: -3.5,10.5 + pos: 59.5,38.5 parent: 2 - - uid: 16403 + - uid: 15974 components: - type: Transform - pos: -2.5,10.5 + pos: -56.5,59.5 parent: 2 - - uid: 16404 + - uid: 15976 components: - type: Transform - pos: -1.5,10.5 + pos: -55.5,59.5 parent: 2 - - uid: 16405 + - uid: 15977 components: - type: Transform - pos: -0.5,10.5 + pos: -54.5,59.5 parent: 2 - - uid: 16406 + - uid: 15990 components: - type: Transform - pos: 0.5,10.5 + pos: -54.5,61.5 parent: 2 - - uid: 16407 + - uid: 15991 components: - type: Transform - pos: 1.5,10.5 + pos: -55.5,61.5 parent: 2 - - uid: 16408 + - uid: 15992 components: - type: Transform - pos: 2.5,10.5 + pos: -56.5,61.5 parent: 2 - - uid: 16409 + - uid: 15993 components: - type: Transform - pos: 3.5,10.5 + pos: -57.5,61.5 parent: 2 - - uid: 16410 + - uid: 15994 components: - type: Transform - pos: 4.5,10.5 + pos: -58.5,61.5 parent: 2 - - uid: 16411 + - uid: 15995 components: - type: Transform - pos: 5.5,10.5 + pos: -59.5,61.5 parent: 2 - - uid: 16412 + - uid: 15996 components: - type: Transform - pos: 5.5,9.5 + pos: -60.5,61.5 parent: 2 - - uid: 16413 + - uid: 15998 components: - type: Transform - pos: 6.5,9.5 + pos: -54.5,60.5 parent: 2 - - uid: 16414 + - uid: 15999 components: - type: Transform - pos: 5.5,7.5 + pos: -53.5,60.5 parent: 2 - - uid: 16415 + - uid: 16000 components: - type: Transform - pos: 5.5,8.5 + pos: -59.5,57.5 parent: 2 - - uid: 16416 + - uid: 16001 components: - type: Transform - pos: 4.5,8.5 + pos: -58.5,57.5 parent: 2 - - uid: 16417 + - uid: 16002 components: - type: Transform - pos: 3.5,8.5 + pos: -57.5,57.5 parent: 2 - - uid: 16418 + - uid: 16003 components: - type: Transform - pos: 2.5,8.5 + pos: -56.5,57.5 parent: 2 - - uid: 16419 + - uid: 16004 components: - type: Transform - pos: 1.5,8.5 + pos: -55.5,57.5 parent: 2 - - uid: 16420 + - uid: 16005 components: - type: Transform - pos: 0.5,8.5 + pos: -54.5,57.5 parent: 2 - - uid: 16421 + - uid: 16006 components: - type: Transform - pos: -0.5,8.5 + pos: -54.5,55.5 parent: 2 - - uid: 16422 + - uid: 16007 components: - type: Transform - pos: -1.5,8.5 + pos: -55.5,55.5 parent: 2 - - uid: 16423 + - uid: 16008 components: - type: Transform - pos: -2.5,8.5 + pos: -56.5,55.5 parent: 2 - - uid: 16424 + - uid: 16009 components: - type: Transform - pos: -3.5,8.5 + pos: -57.5,55.5 parent: 2 - - uid: 16425 + - uid: 16010 components: - type: Transform - pos: -4.5,8.5 + pos: -58.5,55.5 parent: 2 - - uid: 16426 + - uid: 16011 components: - type: Transform - pos: -5.5,8.5 + pos: -59.5,55.5 parent: 2 - - uid: 16427 + - uid: 16012 components: - type: Transform - pos: -6.5,8.5 + pos: -54.5,56.5 parent: 2 - - uid: 16429 + - uid: 16013 components: - type: Transform - pos: -6.5,7.5 + pos: -53.5,56.5 parent: 2 - - uid: 16436 + - uid: 16014 components: - type: Transform - pos: -0.5,7.5 + pos: -51.5,56.5 parent: 2 - - uid: 16437 + - uid: 16015 components: - type: Transform - pos: -0.5,6.5 + pos: -50.5,56.5 parent: 2 - - uid: 16438 + - uid: 16016 components: - type: Transform - pos: -0.5,5.5 + pos: -50.5,57.5 parent: 2 - - uid: 16439 + - uid: 16017 components: - type: Transform - pos: -0.5,4.5 + pos: -49.5,57.5 parent: 2 - - uid: 16440 + - uid: 16018 components: - type: Transform - pos: -0.5,3.5 + pos: -48.5,57.5 parent: 2 - - uid: 16441 + - uid: 16019 components: - type: Transform - pos: -1.5,3.5 + pos: -47.5,57.5 parent: 2 - - uid: 16442 + - uid: 16020 components: - type: Transform - pos: 0.5,3.5 + pos: -46.5,57.5 parent: 2 - - uid: 16443 + - uid: 16021 components: - type: Transform - pos: 0.5,2.5 + pos: -45.5,57.5 parent: 2 - - uid: 16444 + - uid: 16022 components: - type: Transform - pos: -1.5,2.5 + pos: -45.5,55.5 parent: 2 - - uid: 16445 + - uid: 16023 components: - type: Transform - pos: -1.5,1.5 + pos: -46.5,55.5 parent: 2 - - uid: 16446 + - uid: 16024 components: - type: Transform - pos: 0.5,1.5 + pos: -47.5,55.5 parent: 2 - - uid: 16462 + - uid: 16025 components: - type: Transform - pos: -22.5,24.5 + pos: -48.5,55.5 parent: 2 - - uid: 16463 + - uid: 16026 components: - type: Transform - pos: -22.5,25.5 + pos: -49.5,55.5 parent: 2 - - uid: 16465 + - uid: 16027 components: - type: Transform - pos: -20.5,24.5 + pos: -50.5,55.5 parent: 2 - - uid: 16466 + - uid: 16028 components: - type: Transform - pos: -20.5,25.5 + pos: -50.5,59.5 parent: 2 - - uid: 16467 + - uid: 16029 components: - type: Transform - pos: -21.5,25.5 + pos: -49.5,59.5 parent: 2 - - uid: 16468 + - uid: 16030 components: - type: Transform - pos: -21.5,26.5 + pos: -48.5,59.5 parent: 2 - - uid: 16469 + - uid: 16031 components: - type: Transform - pos: -21.5,27.5 + pos: -47.5,59.5 parent: 2 - - uid: 16470 + - uid: 16032 components: - type: Transform - pos: -21.5,28.5 + pos: -46.5,59.5 parent: 2 - - uid: 16471 + - uid: 16033 components: - type: Transform - pos: -21.5,29.5 + pos: -45.5,59.5 parent: 2 - - uid: 16472 + - uid: 16034 components: - type: Transform - pos: -21.5,30.5 + pos: -44.5,59.5 parent: 2 - - uid: 16473 + - uid: 16035 components: - type: Transform - pos: -21.5,31.5 + pos: -44.5,61.5 parent: 2 - - uid: 16474 + - uid: 16036 components: - type: Transform - pos: -22.5,32.5 + pos: -45.5,61.5 parent: 2 - - uid: 16475 + - uid: 16037 components: - type: Transform - pos: -21.5,32.5 + pos: -46.5,61.5 parent: 2 - - uid: 16476 + - uid: 16038 components: - type: Transform - pos: -20.5,32.5 + pos: -47.5,61.5 parent: 2 - - uid: 16477 + - uid: 16039 components: - type: Transform - pos: -20.5,33.5 + pos: -48.5,61.5 parent: 2 - - uid: 16478 + - uid: 16040 components: - type: Transform - pos: -20.5,34.5 + pos: -49.5,61.5 parent: 2 - - uid: 16479 + - uid: 16041 components: - type: Transform - pos: -22.5,33.5 + pos: -50.5,61.5 parent: 2 - - uid: 16480 + - uid: 16042 components: - type: Transform - pos: -22.5,34.5 + pos: -50.5,60.5 parent: 2 - - uid: 16481 + - uid: 16043 components: - type: Transform - pos: -21.5,34.5 + pos: -51.5,60.5 parent: 2 - - uid: 16501 + - uid: 16044 components: - type: Transform - pos: -22.5,23.5 + pos: -51.5,64.5 parent: 2 - - uid: 16505 + - uid: 16046 components: - type: Transform - pos: -20.5,23.5 + pos: -50.5,64.5 parent: 2 - - uid: 16508 + - uid: 16047 components: - type: Transform - pos: -21.5,35.5 + pos: -49.5,63.5 parent: 2 - - uid: 16509 + - uid: 16048 components: - type: Transform - pos: -21.5,36.5 + pos: -48.5,63.5 parent: 2 - - uid: 16510 + - uid: 16049 components: - type: Transform - pos: -21.5,37.5 + pos: -47.5,63.5 parent: 2 - - uid: 16511 + - uid: 16050 components: - type: Transform - pos: -21.5,38.5 + pos: -46.5,63.5 parent: 2 - - uid: 16512 + - uid: 16051 components: - type: Transform - pos: -21.5,39.5 + pos: -45.5,63.5 parent: 2 - - uid: 16513 + - uid: 16053 components: - type: Transform - pos: -21.5,40.5 + pos: -45.5,65.5 parent: 2 - - uid: 16514 + - uid: 16054 components: - type: Transform - pos: -21.5,41.5 + pos: -46.5,65.5 parent: 2 - - uid: 16515 + - uid: 16056 components: - type: Transform - pos: -21.5,42.5 + pos: -47.5,65.5 parent: 2 - - uid: 16516 + - uid: 16057 components: - type: Transform - pos: -21.5,43.5 + pos: -48.5,65.5 parent: 2 - - uid: 16517 + - uid: 16058 components: - type: Transform - pos: -21.5,44.5 + pos: -49.5,65.5 parent: 2 - - uid: 16518 + - uid: 16059 components: - type: Transform - pos: -21.5,45.5 + pos: -50.5,65.5 parent: 2 - - uid: 16520 + - uid: 16062 components: - type: Transform - pos: -21.5,46.5 + pos: -59.5,63.5 parent: 2 - - uid: 16521 + - uid: 16063 components: - type: Transform - pos: -21.5,47.5 + pos: -58.5,63.5 parent: 2 - - uid: 16522 + - uid: 16064 components: - type: Transform - pos: -21.5,48.5 + pos: -57.5,63.5 parent: 2 - - uid: 16523 + - uid: 16065 components: - type: Transform - pos: -21.5,49.5 + pos: -56.5,63.5 parent: 2 - - uid: 16524 + - uid: 16066 components: - type: Transform - pos: -21.5,50.5 + pos: -55.5,63.5 parent: 2 - - uid: 16525 + - uid: 16067 components: - type: Transform - pos: -21.5,51.5 + pos: -54.5,63.5 parent: 2 - - uid: 16529 + - uid: 16068 components: - type: Transform - pos: -1.5,-20.5 + pos: -54.5,64.5 parent: 2 - - uid: 16530 + - uid: 16069 components: - type: Transform - pos: -2.5,-20.5 + pos: -54.5,65.5 parent: 2 - - uid: 16531 + - uid: 16070 components: - type: Transform - pos: -3.5,-20.5 + pos: -55.5,65.5 parent: 2 - - uid: 16532 + - uid: 16071 components: - type: Transform - pos: -4.5,-20.5 + pos: -56.5,65.5 parent: 2 - - uid: 16533 + - uid: 16072 components: - type: Transform - pos: -5.5,-20.5 + pos: -57.5,65.5 parent: 2 - - uid: 16534 + - uid: 16073 components: - type: Transform - pos: -6.5,-20.5 + pos: -58.5,65.5 parent: 2 - - uid: 16535 + - uid: 16074 components: - type: Transform - pos: -7.5,-20.5 + pos: -59.5,65.5 parent: 2 - - uid: 16536 + - uid: 16075 components: - type: Transform - pos: -8.5,-20.5 + pos: -53.5,64.5 parent: 2 - - uid: 16537 + - uid: 16076 components: - type: Transform - pos: -9.5,-20.5 + pos: -59.5,72.5 parent: 2 - - uid: 16538 + - uid: 16077 components: - type: Transform - pos: -10.5,-20.5 + pos: -59.5,71.5 parent: 2 - - uid: 16539 + - uid: 16078 components: - type: Transform - pos: -11.5,-20.5 + pos: -59.5,70.5 parent: 2 - - uid: 16540 + - uid: 16079 components: - type: Transform - pos: -12.5,-20.5 + pos: -59.5,69.5 parent: 2 - - uid: 16541 + - uid: 16081 components: - type: Transform - pos: -13.5,-20.5 + pos: -57.5,72.5 parent: 2 - - uid: 16542 + - uid: 16082 components: - type: Transform - pos: -14.5,-20.5 + pos: -57.5,71.5 parent: 2 - - uid: 16543 + - uid: 16083 components: - type: Transform - pos: -15.5,-20.5 + pos: -57.5,70.5 parent: 2 - - uid: 16544 + - uid: 16085 components: - type: Transform - pos: -16.5,-20.5 + pos: -57.5,69.5 parent: 2 - - uid: 16545 + - uid: 16087 components: - type: Transform - pos: -17.5,-20.5 + pos: -58.5,69.5 parent: 2 - - uid: 16546 + - uid: 16089 components: - type: Transform - pos: -18.5,-20.5 + pos: -58.5,68.5 parent: 2 - - uid: 16547 + - uid: 16090 components: - type: Transform - pos: -19.5,-20.5 + pos: -58.5,67.5 parent: 2 - - uid: 16548 + - uid: 16091 components: - type: Transform - pos: -20.5,-20.5 + pos: -47.5,72.5 parent: 2 - - uid: 16558 + - uid: 16092 components: - type: Transform - pos: -18.5,-12.5 + pos: -47.5,71.5 parent: 2 - - uid: 16559 + - uid: 16093 components: - type: Transform - pos: -18.5,-13.5 + pos: -47.5,70.5 parent: 2 - - uid: 16561 + - uid: 16094 components: - type: Transform - pos: -18.5,-11.5 + pos: -47.5,69.5 parent: 2 - - uid: 16562 + - uid: 16095 components: - type: Transform - pos: -17.5,-11.5 + pos: -45.5,72.5 parent: 2 - - uid: 16563 + - uid: 16096 components: - type: Transform - pos: -16.5,-11.5 + pos: -45.5,71.5 parent: 2 - - uid: 16564 + - uid: 16097 components: - type: Transform - pos: -15.5,-11.5 + pos: -45.5,70.5 parent: 2 - - uid: 16565 + - uid: 16098 components: - type: Transform - pos: -14.5,-11.5 + pos: -45.5,69.5 parent: 2 - - uid: 16566 + - uid: 16099 components: - type: Transform - pos: -13.5,-11.5 + pos: -46.5,69.5 parent: 2 - - uid: 16567 + - uid: 16100 components: - type: Transform - pos: -12.5,-11.5 + pos: -46.5,68.5 parent: 2 - - uid: 16568 + - uid: 16101 components: - type: Transform - pos: -11.5,-11.5 + pos: -52.5,70.5 parent: 2 - - uid: 16570 + - uid: 16103 components: - type: Transform - pos: -11.5,-12.5 + pos: -52.5,69.5 parent: 2 - - uid: 16571 + - uid: 16104 components: - type: Transform - pos: -10.5,-12.5 + pos: -52.5,68.5 parent: 2 - - uid: 16572 + - uid: 16105 components: - type: Transform - pos: -9.5,-12.5 + pos: -57.5,67.5 parent: 2 - - uid: 16583 + - uid: 16106 components: - type: Transform - pos: -9.5,-13.5 + pos: -56.5,67.5 parent: 2 - - uid: 16584 + - uid: 16107 components: - type: Transform - pos: -8.5,-13.5 + pos: -55.5,67.5 parent: 2 - - uid: 16585 + - uid: 16108 components: - type: Transform - pos: -7.5,-13.5 + pos: -54.5,67.5 parent: 2 - - uid: 16586 + - uid: 16109 components: - type: Transform - pos: -6.5,-13.5 + pos: -46.5,67.5 parent: 2 - - uid: 16587 + - uid: 16110 components: - type: Transform - pos: -5.5,-13.5 + pos: -47.5,67.5 parent: 2 - - uid: 16588 + - uid: 16115 components: - type: Transform - pos: -4.5,-13.5 + pos: -48.5,67.5 parent: 2 - - uid: 16589 + - uid: 16116 components: - type: Transform - pos: -3.5,-13.5 + pos: -49.5,67.5 parent: 2 - - uid: 16590 + - uid: 16117 components: - type: Transform - pos: -2.5,-13.5 + pos: -50.5,67.5 parent: 2 - - uid: 16591 + - uid: 16122 components: - type: Transform - pos: -1.5,-13.5 + pos: -52.5,54.5 parent: 2 - - uid: 16596 + - uid: 16123 components: - type: Transform - pos: 0.5,-13.5 + pos: -47.5,40.5 parent: 2 - - uid: 16597 + - uid: 16124 components: - type: Transform - pos: 1.5,-13.5 + pos: -46.5,40.5 parent: 2 - - uid: 16598 + - uid: 16125 components: - type: Transform - pos: 2.5,-13.5 + pos: -45.5,40.5 parent: 2 - - uid: 16599 + - uid: 16126 components: - type: Transform - pos: 3.5,-13.5 + pos: -45.5,41.5 parent: 2 - - uid: 16600 + - uid: 16127 components: - type: Transform - pos: 4.5,-13.5 + pos: -44.5,41.5 parent: 2 - - uid: 16601 + - uid: 16128 components: - type: Transform - pos: 5.5,-13.5 + pos: -43.5,41.5 parent: 2 - - uid: 16602 + - uid: 16129 components: - type: Transform - pos: 6.5,-13.5 + pos: -43.5,42.5 parent: 2 - - uid: 16603 + - uid: 16130 components: - type: Transform - pos: 7.5,-13.5 + pos: -42.5,42.5 parent: 2 - - uid: 16604 + - uid: 16131 components: - type: Transform - pos: 8.5,-13.5 + pos: -42.5,43.5 parent: 2 - - uid: 16605 + - uid: 16132 components: - type: Transform - pos: 8.5,-12.5 + pos: -42.5,44.5 parent: 2 - - uid: 16606 + - uid: 16133 components: - type: Transform - pos: 9.5,-12.5 + pos: -42.5,45.5 parent: 2 - - uid: 16607 + - uid: 16134 components: - type: Transform - pos: 9.5,-11.5 + pos: -41.5,45.5 parent: 2 - - uid: 16608 + - uid: 16135 components: - type: Transform - pos: 10.5,-11.5 + pos: -41.5,46.5 parent: 2 - - uid: 16616 + - uid: 16136 components: - type: Transform - pos: 10.5,-10.5 + pos: -41.5,47.5 parent: 2 - - uid: 16623 + - uid: 16137 components: - type: Transform - pos: 10.5,-8.5 + pos: -40.5,47.5 parent: 2 - - uid: 16624 + - uid: 16138 components: - type: Transform - pos: 9.5,-8.5 + pos: -39.5,47.5 parent: 2 - - uid: 16625 + - uid: 16139 components: - type: Transform - pos: 9.5,0.5 + pos: -38.5,47.5 parent: 2 - - uid: 16626 + - uid: 16151 components: - type: Transform - pos: 10.5,0.5 + pos: -36.5,47.5 parent: 2 - - uid: 16627 + - uid: 16152 components: - type: Transform - pos: 11.5,0.5 + pos: -35.5,47.5 parent: 2 - - uid: 16628 + - uid: 16153 components: - type: Transform - pos: 12.5,0.5 + pos: -34.5,47.5 parent: 2 - - uid: 16629 + - uid: 16154 components: - type: Transform - pos: 13.5,0.5 + pos: -33.5,47.5 parent: 2 - - uid: 16630 + - uid: 16155 components: - type: Transform - pos: 14.5,0.5 + pos: -33.5,46.5 parent: 2 - - uid: 16631 + - uid: 16156 components: - type: Transform - pos: 15.5,0.5 + pos: -32.5,46.5 parent: 2 - - uid: 16632 + - uid: 16157 components: - type: Transform - pos: 16.5,0.5 + pos: -31.5,46.5 parent: 2 - - uid: 16633 + - uid: 16158 components: - type: Transform - pos: 17.5,0.5 + pos: -30.5,46.5 parent: 2 - - uid: 16634 + - uid: 16159 components: - type: Transform - pos: 18.5,0.5 + pos: -30.5,47.5 parent: 2 - - uid: 16635 + - uid: 16160 components: - type: Transform - pos: 19.5,0.5 + pos: -30.5,48.5 parent: 2 - - uid: 16664 + - uid: 16161 components: - type: Transform - pos: -41.5,21.5 + pos: -30.5,49.5 parent: 2 - - uid: 16665 + - uid: 16162 components: - type: Transform - pos: -41.5,20.5 + pos: -30.5,50.5 parent: 2 - - uid: 16666 + - uid: 16164 components: - type: Transform - pos: -41.5,19.5 + pos: -30.5,51.5 parent: 2 - - uid: 16667 + - uid: 16166 components: - type: Transform - pos: -41.5,18.5 + pos: -30.5,52.5 parent: 2 - - uid: 16668 + - uid: 16171 components: - type: Transform - pos: -41.5,17.5 + pos: 23.5,53.5 parent: 2 - - uid: 16669 + - uid: 16174 components: - type: Transform - pos: -41.5,16.5 + pos: -29.5,52.5 parent: 2 - - uid: 16670 + - uid: 16175 components: - type: Transform - pos: -41.5,15.5 + pos: -28.5,52.5 parent: 2 - - uid: 16671 + - uid: 16176 components: - type: Transform - pos: -41.5,14.5 + pos: -27.5,52.5 parent: 2 - - uid: 16672 + - uid: 16177 components: - type: Transform - pos: -41.5,13.5 + pos: -26.5,52.5 parent: 2 - - uid: 16673 + - uid: 16178 components: - type: Transform - pos: -41.5,12.5 + pos: -25.5,52.5 parent: 2 - - uid: 16674 + - uid: 16179 components: - type: Transform - pos: -41.5,11.5 + pos: -24.5,52.5 parent: 2 - - uid: 16675 + - uid: 16180 components: - type: Transform - pos: -41.5,10.5 + pos: -23.5,52.5 parent: 2 - - uid: 16676 + - uid: 16181 components: - type: Transform - pos: -40.5,10.5 + pos: -22.5,52.5 parent: 2 - - uid: 16677 + - uid: 16182 components: - type: Transform - pos: -39.5,10.5 + pos: -21.5,52.5 parent: 2 - - uid: 16678 + - uid: 16183 components: - type: Transform - pos: -39.5,9.5 + pos: -20.5,52.5 parent: 2 - - uid: 16679 + - uid: 16184 components: - type: Transform - pos: -39.5,8.5 + pos: -19.5,52.5 parent: 2 - - uid: 16680 + - uid: 16185 components: - type: Transform - pos: -39.5,7.5 + pos: -18.5,52.5 parent: 2 - - uid: 16681 + - uid: 16186 components: - type: Transform - pos: -39.5,6.5 + pos: -17.5,52.5 parent: 2 - - uid: 16682 + - uid: 16187 components: - type: Transform - pos: -39.5,5.5 + pos: -16.5,52.5 parent: 2 - - uid: 16683 + - uid: 16188 components: - type: Transform - pos: -39.5,4.5 + pos: -15.5,52.5 parent: 2 - - uid: 16684 + - uid: 16189 components: - type: Transform - pos: -39.5,3.5 + pos: -14.5,52.5 parent: 2 - - uid: 16685 + - uid: 16190 components: - type: Transform - pos: -39.5,2.5 + pos: -13.5,52.5 parent: 2 - - uid: 16686 + - uid: 16191 components: - type: Transform - pos: -39.5,1.5 + pos: -13.5,51.5 parent: 2 - - uid: 16687 + - uid: 16200 components: - type: Transform - pos: -45.5,-0.5 + pos: -57.5,-13.5 parent: 2 - - uid: 16688 + - uid: 16201 components: - type: Transform - pos: -45.5,-1.5 + pos: -57.5,-16.5 parent: 2 - - uid: 16689 + - uid: 16202 components: - type: Transform - pos: -45.5,-2.5 + pos: -57.5,-14.5 parent: 2 - - uid: 16690 + - uid: 16203 components: - type: Transform - pos: -45.5,-3.5 + pos: -57.5,-15.5 parent: 2 - - uid: 16691 + - uid: 16204 components: - type: Transform - pos: -45.5,-4.5 + pos: -56.5,-16.5 parent: 2 - - uid: 16692 + - uid: 16216 components: - type: Transform - pos: -45.5,-5.5 + pos: -22.5,0.5 parent: 2 - - uid: 16693 + - uid: 16217 components: - type: Transform - pos: -45.5,-6.5 + pos: -23.5,0.5 parent: 2 - - uid: 16694 + - uid: 16218 components: - type: Transform - pos: -46.5,-6.5 + pos: -24.5,0.5 parent: 2 - - uid: 16695 + - uid: 16219 components: - type: Transform - pos: -46.5,-7.5 + pos: -25.5,0.5 parent: 2 - - uid: 16696 + - uid: 16220 components: - type: Transform - pos: -46.5,-8.5 + pos: -26.5,0.5 parent: 2 - - uid: 16697 + - uid: 16221 components: - type: Transform - pos: -47.5,-8.5 + pos: -27.5,0.5 parent: 2 - - uid: 16698 + - uid: 16222 components: - type: Transform - pos: -48.5,-8.5 + pos: -28.5,0.5 parent: 2 - - uid: 16699 + - uid: 16223 components: - type: Transform - pos: -49.5,-8.5 + pos: -29.5,0.5 parent: 2 - - uid: 16700 + - uid: 16224 components: - type: Transform - pos: -50.5,-8.5 + pos: -30.5,0.5 parent: 2 - - uid: 16701 + - uid: 16225 components: - type: Transform - pos: -51.5,-8.5 + pos: -31.5,0.5 parent: 2 - - uid: 16702 + - uid: 16226 components: - type: Transform - pos: -52.5,-8.5 + pos: -32.5,0.5 parent: 2 - - uid: 16703 + - uid: 16227 components: - type: Transform - pos: -53.5,-8.5 + pos: -33.5,0.5 parent: 2 - - uid: 16704 + - uid: 16228 components: - type: Transform - pos: -54.5,-8.5 + pos: -34.5,0.5 parent: 2 - - uid: 16705 + - uid: 16229 components: - type: Transform - pos: -55.5,-8.5 + pos: -35.5,0.5 parent: 2 - - uid: 16706 + - uid: 16230 components: - type: Transform - pos: -55.5,-9.5 + pos: -36.5,0.5 parent: 2 - - uid: 16707 + - uid: 16231 components: - type: Transform - pos: -55.5,-10.5 + pos: -37.5,0.5 parent: 2 - - uid: 16708 + - uid: 16232 components: - type: Transform - pos: -55.5,-11.5 + pos: -38.5,0.5 parent: 2 - - uid: 16709 + - uid: 16233 components: - type: Transform - pos: -55.5,-12.5 + pos: -39.5,0.5 parent: 2 - - uid: 16710 + - uid: 16234 components: - type: Transform - pos: -56.5,-12.5 + pos: -40.5,0.5 parent: 2 - - uid: 16711 + - uid: 16235 components: - type: Transform - pos: -57.5,-12.5 + pos: -41.5,0.5 parent: 2 - - uid: 16720 + - uid: 16236 components: - type: Transform - pos: -54.5,-56.5 + pos: -42.5,0.5 parent: 2 - - uid: 16721 + - uid: 16237 components: - type: Transform - pos: -68.5,-56.5 + pos: -43.5,0.5 parent: 2 - - uid: 16722 + - uid: 16238 components: - type: Transform - pos: -68.5,-57.5 + pos: -44.5,0.5 parent: 2 - - uid: 16723 + - uid: 16239 components: - type: Transform - pos: -68.5,-58.5 + pos: -45.5,0.5 parent: 2 - - uid: 16724 + - uid: 16240 components: - type: Transform - pos: -68.5,-59.5 + pos: -46.5,0.5 parent: 2 - - uid: 16725 + - uid: 16241 components: - type: Transform - pos: -68.5,-60.5 + pos: -47.5,0.5 parent: 2 - - uid: 16726 + - uid: 16242 components: - type: Transform - pos: -68.5,-61.5 + pos: -48.5,0.5 parent: 2 - - uid: 16727 + - uid: 16243 components: - type: Transform - pos: -69.5,-58.5 + pos: -49.5,0.5 parent: 2 - - uid: 16728 + - uid: 16244 components: - type: Transform - pos: -69.5,-59.5 + pos: -50.5,0.5 parent: 2 - - uid: 16729 + - uid: 16245 components: - type: Transform - pos: -66.5,-56.5 + pos: -51.5,0.5 parent: 2 - - uid: 16730 + - uid: 16246 components: - type: Transform - pos: -66.5,-57.5 + pos: -52.5,0.5 parent: 2 - - uid: 16731 + - uid: 16247 components: - type: Transform - pos: -66.5,-58.5 + pos: -53.5,0.5 parent: 2 - - uid: 16732 + - uid: 16248 components: - type: Transform - pos: -66.5,-59.5 + pos: -54.5,0.5 parent: 2 - - uid: 16734 + - uid: 16249 components: - type: Transform - pos: -66.5,-60.5 + pos: -55.5,0.5 parent: 2 - - uid: 16735 + - uid: 16250 components: - type: Transform - pos: -66.5,-61.5 + pos: -56.5,0.5 parent: 2 - - uid: 16736 + - uid: 16251 components: - type: Transform - pos: -65.5,-58.5 + pos: -57.5,0.5 parent: 2 - - uid: 16737 + - uid: 16252 components: - type: Transform - pos: -65.5,-59.5 + pos: -58.5,0.5 parent: 2 - - uid: 16738 + - uid: 16253 components: - type: Transform - pos: -67.5,-61.5 + pos: -59.5,0.5 parent: 2 - - uid: 16739 + - uid: 16254 components: - type: Transform - pos: -67.5,-62.5 + pos: -58.5,-13.5 parent: 2 - - uid: 16740 + - uid: 16255 components: - type: Transform - pos: -67.5,-63.5 + pos: -59.5,-13.5 parent: 2 - - uid: 16741 + - uid: 16256 components: - type: Transform - pos: -62.5,-55.5 + pos: -60.5,-13.5 parent: 2 - - uid: 16742 + - uid: 16257 components: - type: Transform - pos: -62.5,-56.5 + pos: -61.5,-13.5 parent: 2 - - uid: 16743 + - uid: 16258 components: - type: Transform - pos: -62.5,-57.5 + pos: -62.5,-13.5 parent: 2 - - uid: 16744 + - uid: 16259 components: - type: Transform - pos: -62.5,-58.5 + pos: -63.5,-13.5 parent: 2 - - uid: 16745 + - uid: 16260 components: - type: Transform - pos: -62.5,-59.5 + pos: -64.5,-13.5 parent: 2 - - uid: 16746 + - uid: 16261 components: - type: Transform - pos: -62.5,-60.5 + pos: -65.5,-13.5 parent: 2 - - uid: 16747 + - uid: 16262 components: - type: Transform - pos: -62.5,-61.5 + pos: -66.5,-13.5 parent: 2 - - uid: 16763 + - uid: 16263 components: - type: Transform - pos: -63.5,-57.5 + pos: -67.5,-13.5 parent: 2 - - uid: 16764 + - uid: 16264 components: - type: Transform - pos: -63.5,-58.5 + pos: -68.5,-13.5 parent: 2 - - uid: 16765 + - uid: 16265 components: - type: Transform - pos: -63.5,-59.5 + pos: -69.5,-13.5 parent: 2 - - uid: 16766 + - uid: 16266 components: - type: Transform - pos: -60.5,-55.5 + pos: -69.5,-14.5 parent: 2 - - uid: 16767 + - uid: 16267 components: - type: Transform - pos: -60.5,-56.5 + pos: -69.5,-15.5 parent: 2 - - uid: 16768 + - uid: 16268 components: - type: Transform - pos: -60.5,-57.5 + pos: -70.5,-15.5 parent: 2 - - uid: 16769 + - uid: 16269 components: - type: Transform - pos: -60.5,-58.5 + pos: -71.5,-15.5 parent: 2 - - uid: 16770 + - uid: 16270 components: - type: Transform - pos: -60.5,-59.5 + pos: -71.5,-14.5 parent: 2 - - uid: 16771 + - uid: 16271 components: - type: Transform - pos: -60.5,-60.5 + pos: -72.5,-14.5 parent: 2 - - uid: 16772 + - uid: 16272 components: - type: Transform - pos: -60.5,-61.5 + pos: -72.5,-13.5 parent: 2 - - uid: 16773 + - uid: 16273 components: - type: Transform - pos: -59.5,-57.5 + pos: -72.5,-12.5 parent: 2 - - uid: 16774 + - uid: 16274 components: - type: Transform - pos: -59.5,-58.5 + pos: -72.5,-11.5 parent: 2 - - uid: 16775 + - uid: 16275 components: - type: Transform - pos: -59.5,-59.5 + pos: -72.5,-10.5 parent: 2 - - uid: 16776 + - uid: 16276 components: - type: Transform - pos: -61.5,-61.5 + pos: -72.5,-9.5 parent: 2 - - uid: 16778 + - uid: 16277 components: - type: Transform - pos: -61.5,-62.5 + pos: -72.5,-8.5 parent: 2 - - uid: 16780 + - uid: 16278 components: - type: Transform - pos: -61.5,-63.5 + pos: -72.5,-7.5 parent: 2 - - uid: 16781 + - uid: 16279 components: - type: Transform - pos: -57.5,-58.5 + pos: -72.5,-6.5 parent: 2 - - uid: 16782 + - uid: 16280 components: - type: Transform - pos: -57.5,-59.5 + pos: -72.5,-5.5 parent: 2 - - uid: 16786 + - uid: 16281 components: - type: Transform - pos: -56.5,-56.5 + pos: -72.5,-4.5 parent: 2 - - uid: 16787 + - uid: 16282 components: - type: Transform - pos: -56.5,-57.5 + pos: -71.5,-4.5 parent: 2 - - uid: 16788 + - uid: 16283 components: - type: Transform - pos: -56.5,-58.5 + pos: -70.5,-4.5 parent: 2 - - uid: 16789 + - uid: 16284 components: - type: Transform - pos: -56.5,-59.5 + pos: -69.5,-4.5 parent: 2 - - uid: 16790 + - uid: 16285 components: - type: Transform - pos: -56.5,-60.5 + pos: -68.5,-4.5 parent: 2 - - uid: 16791 + - uid: 16286 components: - type: Transform - pos: -56.5,-61.5 + pos: -67.5,-4.5 parent: 2 - - uid: 16792 + - uid: 16287 components: - type: Transform - pos: -54.5,-57.5 + pos: -66.5,-4.5 parent: 2 - - uid: 16793 + - uid: 16288 components: - type: Transform - pos: -54.5,-58.5 + pos: -65.5,-4.5 parent: 2 - - uid: 16794 + - uid: 16289 components: - type: Transform - pos: -54.5,-59.5 + pos: -64.5,-4.5 parent: 2 - - uid: 16795 + - uid: 16290 components: - type: Transform - pos: -54.5,-60.5 + pos: -63.5,-4.5 parent: 2 - - uid: 16796 + - uid: 16291 components: - type: Transform - pos: -54.5,-61.5 + pos: -63.5,-3.5 parent: 2 - - uid: 16797 + - uid: 16292 components: - type: Transform - pos: -53.5,-58.5 + pos: -62.5,-3.5 parent: 2 - - uid: 16798 + - uid: 16293 components: - type: Transform - pos: -53.5,-59.5 + pos: -61.5,-3.5 parent: 2 - - uid: 16799 + - uid: 16294 components: - type: Transform - pos: -55.5,-61.5 + pos: -60.5,-3.5 parent: 2 - - uid: 16800 + - uid: 16295 components: - type: Transform - pos: -55.5,-62.5 + pos: -59.5,-3.5 parent: 2 - - uid: 16801 + - uid: 16296 components: - type: Transform - pos: -55.5,-63.5 + pos: -59.5,-2.5 parent: 2 - - uid: 16802 + - uid: 16297 components: - type: Transform - pos: -55.5,-66.5 + pos: -59.5,-1.5 parent: 2 - - uid: 16803 + - uid: 16298 components: - type: Transform - pos: -68.5,-72.5 + pos: -59.5,-0.5 parent: 2 - - uid: 16804 + - uid: 16300 components: - type: Transform - pos: -68.5,-71.5 + pos: -1.5,12.5 parent: 2 - - uid: 16805 + - uid: 16302 components: - type: Transform - pos: -68.5,-70.5 + pos: -2.5,12.5 parent: 2 - - uid: 16806 + - uid: 16303 components: - type: Transform - pos: -68.5,-69.5 + pos: -3.5,12.5 parent: 2 - - uid: 16807 + - uid: 16304 components: - type: Transform - pos: -68.5,-68.5 + pos: -4.5,12.5 parent: 2 - - uid: 16808 + - uid: 16305 components: - type: Transform - pos: -68.5,-67.5 + pos: -5.5,12.5 parent: 2 - - uid: 16809 + - uid: 16306 components: - type: Transform - pos: -69.5,-70.5 + pos: -6.5,12.5 parent: 2 - - uid: 16810 + - uid: 16307 components: - type: Transform - pos: -69.5,-69.5 + pos: -7.5,12.5 parent: 2 - - uid: 16812 + - uid: 16308 components: - type: Transform - pos: -66.5,-72.5 + pos: -7.5,11.5 parent: 2 - - uid: 16813 + - uid: 16309 components: - type: Transform - pos: -66.5,-71.5 + pos: -8.5,11.5 parent: 2 - - uid: 16814 + - uid: 16310 components: - type: Transform - pos: -66.5,-70.5 + pos: -8.5,10.5 parent: 2 - - uid: 16815 + - uid: 16311 components: - type: Transform - pos: -66.5,-69.5 + pos: -9.5,10.5 parent: 2 - - uid: 16816 + - uid: 16312 components: - type: Transform - pos: -66.5,-68.5 + pos: -9.5,9.5 parent: 2 - - uid: 16817 + - uid: 16313 components: - type: Transform - pos: -66.5,-67.5 + pos: -9.5,8.5 parent: 2 - - uid: 16818 + - uid: 16314 components: - type: Transform - pos: -65.5,-69.5 + pos: -9.5,7.5 parent: 2 - - uid: 16819 + - uid: 16315 components: - type: Transform - pos: -65.5,-70.5 + pos: -9.5,6.5 parent: 2 - - uid: 16820 + - uid: 16316 components: - type: Transform - pos: -67.5,-67.5 + pos: -9.5,5.5 parent: 2 - - uid: 16821 + - uid: 16317 components: - type: Transform - pos: -67.5,-66.5 + pos: -9.5,4.5 parent: 2 - - uid: 16822 + - uid: 16318 components: - type: Transform - pos: -67.5,-65.5 + pos: -9.5,3.5 parent: 2 - - uid: 16823 + - uid: 16319 components: - type: Transform - pos: -61.5,-65.5 + pos: -9.5,2.5 parent: 2 - - uid: 16824 + - uid: 16320 components: - type: Transform - pos: -61.5,-66.5 + pos: -9.5,1.5 parent: 2 - - uid: 16825 + - uid: 16321 components: - type: Transform - pos: -61.5,-67.5 + pos: -9.5,0.5 parent: 2 - - uid: 16826 + - uid: 16324 components: - type: Transform - pos: -62.5,-67.5 + pos: -20.5,0.5 parent: 2 - - uid: 16827 + - uid: 16325 components: - type: Transform - pos: -62.5,-68.5 + pos: -19.5,0.5 parent: 2 - - uid: 16828 + - uid: 16326 components: - type: Transform - pos: -62.5,-69.5 + pos: -18.5,0.5 parent: 2 - - uid: 16829 + - uid: 16327 components: - type: Transform - pos: -62.5,-70.5 + pos: -17.5,0.5 parent: 2 - - uid: 16830 + - uid: 16328 components: - type: Transform - pos: -62.5,-71.5 + pos: -16.5,0.5 parent: 2 - - uid: 16831 + - uid: 16329 components: - type: Transform - pos: -62.5,-72.5 + pos: -15.5,0.5 parent: 2 - - uid: 16832 + - uid: 16330 components: - type: Transform - pos: -62.5,-73.5 + pos: -14.5,0.5 parent: 2 - - uid: 16833 + - uid: 16331 components: - type: Transform - pos: -60.5,-67.5 + pos: -13.5,0.5 parent: 2 - - uid: 16834 + - uid: 16332 components: - type: Transform - pos: -60.5,-68.5 + pos: -12.5,0.5 parent: 2 - - uid: 16835 + - uid: 16333 components: - type: Transform - pos: -60.5,-69.5 + pos: -11.5,0.5 parent: 2 - - uid: 16836 + - uid: 16334 components: - type: Transform - pos: -60.5,-70.5 + pos: -10.5,0.5 parent: 2 - - uid: 16837 + - uid: 16340 components: - type: Transform - pos: -60.5,-71.5 + pos: -9.5,-0.5 parent: 2 - - uid: 16838 + - uid: 16342 components: - type: Transform - pos: -60.5,-72.5 + pos: -9.5,-1.5 parent: 2 - - uid: 16839 + - uid: 16343 components: - type: Transform - pos: -60.5,-73.5 + pos: -9.5,-2.5 parent: 2 - - uid: 16840 + - uid: 16344 components: - type: Transform - pos: -59.5,-71.5 + pos: -9.5,-3.5 parent: 2 - - uid: 16841 + - uid: 16345 components: - type: Transform - pos: -59.5,-70.5 + pos: -9.5,-4.5 parent: 2 - - uid: 16842 + - uid: 16346 components: - type: Transform - pos: -59.5,-69.5 + pos: -9.5,-5.5 parent: 2 - - uid: 16843 + - uid: 16347 components: - type: Transform - pos: -63.5,-71.5 + pos: -9.5,-6.5 parent: 2 - - uid: 16844 + - uid: 16348 components: - type: Transform - pos: -63.5,-70.5 + pos: -9.5,-7.5 parent: 2 - - uid: 16845 + - uid: 16349 components: - type: Transform - pos: -63.5,-69.5 + pos: -9.5,-8.5 parent: 2 - - uid: 16846 + - uid: 16350 components: - type: Transform - pos: -57.5,-69.5 + pos: -8.5,-8.5 parent: 2 - - uid: 16847 + - uid: 16357 components: - type: Transform - pos: -57.5,-70.5 + pos: -8.5,-9.5 parent: 2 - - uid: 16848 + - uid: 16358 components: - type: Transform - pos: -56.5,-67.5 + pos: -7.5,-9.5 parent: 2 - - uid: 16849 + - uid: 16359 components: - type: Transform - pos: -56.5,-68.5 + pos: -7.5,-10.5 parent: 2 - - uid: 16850 + - uid: 16365 components: - type: Transform - pos: -56.5,-69.5 + pos: -6.5,-10.5 parent: 2 - - uid: 16851 + - uid: 16366 components: - type: Transform - pos: -56.5,-70.5 + pos: -5.5,-10.5 parent: 2 - - uid: 16852 + - uid: 16367 components: - type: Transform - pos: -56.5,-71.5 + pos: -4.5,-10.5 parent: 2 - - uid: 16853 + - uid: 16368 components: - type: Transform - pos: -56.5,-72.5 + pos: -3.5,-10.5 parent: 2 - - uid: 16854 + - uid: 16369 components: - type: Transform - pos: -54.5,-67.5 + pos: -2.5,-10.5 parent: 2 - - uid: 16855 + - uid: 16370 components: - type: Transform - pos: -54.5,-68.5 + pos: -1.5,-10.5 parent: 2 - - uid: 16856 + - uid: 16376 components: - type: Transform - pos: -54.5,-69.5 + pos: -1.5,-11.5 parent: 2 - - uid: 16857 + - uid: 16382 components: - type: Transform - pos: -54.5,-70.5 + pos: -1.5,-9.5 parent: 2 - - uid: 16858 + - uid: 16383 components: - type: Transform - pos: -54.5,-71.5 + pos: -0.5,-9.5 parent: 2 - - uid: 16859 + - uid: 16384 components: - type: Transform - pos: -54.5,-72.5 + pos: 0.5,-9.5 parent: 2 - - uid: 16860 + - uid: 16385 components: - type: Transform - pos: -53.5,-70.5 + pos: -0.5,-8.5 parent: 2 - - uid: 16861 + - uid: 16389 components: - type: Transform - pos: -53.5,-69.5 + pos: -8.5,0.5 parent: 2 - - uid: 16862 + - uid: 16390 components: - type: Transform - pos: -55.5,-65.5 + pos: -7.5,0.5 parent: 2 - - uid: 16863 + - uid: 16391 components: - type: Transform - pos: -69.5,-64.5 + pos: -6.5,0.5 parent: 2 - - uid: 16864 + - uid: 16392 components: - type: Transform - pos: -68.5,-64.5 + pos: -5.5,0.5 parent: 2 - - uid: 16865 + - uid: 16393 components: - type: Transform - pos: 48.5,-47.5 + pos: -4.5,0.5 parent: 2 - - uid: 16866 + - uid: 16394 components: - type: Transform - pos: -72.5,7.5 + pos: -3.5,0.5 parent: 2 - - uid: 16867 + - uid: 16395 components: - type: Transform - pos: -73.5,7.5 + pos: -2.5,0.5 parent: 2 - - uid: 16868 + - uid: 16396 components: - type: Transform - pos: -73.5,8.5 + pos: -1.5,0.5 parent: 2 - - uid: 16869 + - uid: 16397 components: - type: Transform - pos: -74.5,8.5 + pos: -7.5,9.5 parent: 2 - - uid: 16870 + - uid: 16398 components: - type: Transform - pos: -72.5,2.5 + pos: -6.5,9.5 parent: 2 - - uid: 16871 + - uid: 16399 components: - type: Transform - pos: -73.5,2.5 + pos: -6.5,10.5 parent: 2 - - uid: 16872 + - uid: 16400 components: - type: Transform - pos: -73.5,1.5 + pos: -5.5,10.5 parent: 2 - - uid: 16873 + - uid: 16401 components: - type: Transform - pos: -74.5,1.5 + pos: -4.5,10.5 parent: 2 - - uid: 16874 + - uid: 16402 components: - type: Transform - pos: -69.5,-16.5 + pos: -3.5,10.5 parent: 2 - - uid: 16875 + - uid: 16403 components: - type: Transform - pos: -68.5,-16.5 + pos: -2.5,10.5 parent: 2 - - uid: 16876 + - uid: 16404 components: - type: Transform - pos: -67.5,-16.5 + pos: -1.5,10.5 parent: 2 - - uid: 16877 + - uid: 16405 components: - type: Transform - pos: -67.5,-17.5 + pos: -0.5,10.5 parent: 2 - - uid: 16878 + - uid: 16406 components: - type: Transform - pos: -67.5,-18.5 + pos: 0.5,10.5 parent: 2 - - uid: 16879 + - uid: 16407 components: - type: Transform - pos: -67.5,-19.5 + pos: 1.5,10.5 parent: 2 - - uid: 16881 + - uid: 16408 components: - type: Transform - pos: -67.5,-20.5 + pos: 2.5,10.5 parent: 2 - - uid: 16882 + - uid: 16409 components: - type: Transform - pos: -67.5,-21.5 + pos: 3.5,10.5 parent: 2 - - uid: 16883 + - uid: 16410 components: - type: Transform - pos: -67.5,-22.5 + pos: 4.5,10.5 parent: 2 - - uid: 16884 + - uid: 16411 components: - type: Transform - pos: -72.5,1.5 + pos: 5.5,10.5 parent: 2 - - uid: 16885 + - uid: 16412 components: - type: Transform - pos: -66.5,-22.5 + pos: 5.5,9.5 parent: 2 - - uid: 16886 + - uid: 16413 components: - type: Transform - pos: -66.5,-23.5 + pos: 6.5,9.5 parent: 2 - - uid: 16887 + - uid: 16414 components: - type: Transform - pos: -65.5,-23.5 + pos: 5.5,7.5 parent: 2 - - uid: 16888 + - uid: 16415 components: - type: Transform - pos: -72.5,8.5 + pos: 5.5,8.5 parent: 2 - - uid: 16889 + - uid: 16416 components: - type: Transform - pos: -64.5,-23.5 + pos: 4.5,8.5 parent: 2 - - uid: 16890 + - uid: 16417 components: - type: Transform - pos: -63.5,-23.5 + pos: 3.5,8.5 parent: 2 - - uid: 16891 + - uid: 16418 components: - type: Transform - pos: -62.5,-23.5 + pos: 2.5,8.5 parent: 2 - - uid: 16892 + - uid: 16419 components: - type: Transform - pos: -61.5,-23.5 + pos: 1.5,8.5 parent: 2 - - uid: 16893 + - uid: 16420 components: - type: Transform - pos: -60.5,-23.5 + pos: 0.5,8.5 parent: 2 - - uid: 16894 + - uid: 16421 components: - type: Transform - pos: -59.5,-23.5 + pos: -0.5,8.5 parent: 2 - - uid: 16895 + - uid: 16422 components: - type: Transform - pos: -58.5,-23.5 + pos: -1.5,8.5 parent: 2 - - uid: 16896 + - uid: 16423 components: - type: Transform - pos: -57.5,-23.5 + pos: -2.5,8.5 parent: 2 - - uid: 16897 + - uid: 16424 components: - type: Transform - pos: -56.5,-23.5 + pos: -3.5,8.5 parent: 2 - - uid: 16898 + - uid: 16425 components: - type: Transform - pos: -55.5,-23.5 + pos: -4.5,8.5 parent: 2 - - uid: 16899 + - uid: 16426 components: - type: Transform - pos: -54.5,-23.5 + pos: -5.5,8.5 parent: 2 - - uid: 16900 + - uid: 16427 components: - type: Transform - pos: -53.5,-23.5 + pos: -6.5,8.5 parent: 2 - - uid: 16901 + - uid: 16429 components: - type: Transform - pos: -52.5,-23.5 + pos: -6.5,7.5 parent: 2 - - uid: 16902 + - uid: 16436 components: - type: Transform - pos: -51.5,-23.5 + pos: -0.5,7.5 parent: 2 - - uid: 16903 + - uid: 16437 components: - type: Transform - pos: -50.5,-23.5 + pos: -0.5,6.5 parent: 2 - - uid: 16904 + - uid: 16438 components: - type: Transform - pos: -49.5,-23.5 + pos: -0.5,5.5 parent: 2 - - uid: 16905 + - uid: 16439 components: - type: Transform - pos: -74.5,4.5 + pos: -0.5,4.5 parent: 2 - - uid: 16906 + - uid: 16440 components: - type: Transform - pos: -49.5,-24.5 + pos: -0.5,3.5 parent: 2 - - uid: 16907 + - uid: 16443 components: - type: Transform - pos: -74.5,5.5 + pos: -0.5,1.5 parent: 2 - - uid: 16908 + - uid: 16462 components: - type: Transform - pos: -44.5,-28.5 + pos: -22.5,24.5 parent: 2 - - uid: 16909 + - uid: 16463 components: - type: Transform - pos: -73.5,6.5 + pos: -22.5,25.5 parent: 2 - - uid: 16910 + - uid: 16465 components: - type: Transform - pos: -48.5,-24.5 + pos: -20.5,24.5 parent: 2 - - uid: 16911 + - uid: 16466 components: - type: Transform - pos: -47.5,-24.5 + pos: -20.5,25.5 parent: 2 - - uid: 16912 + - uid: 16467 components: - type: Transform - pos: -47.5,-25.5 + pos: -21.5,25.5 parent: 2 - - uid: 16913 + - uid: 16468 components: - type: Transform - pos: -47.5,-26.5 + pos: -21.5,26.5 parent: 2 - - uid: 16914 + - uid: 16469 components: - type: Transform - pos: -74.5,6.5 + pos: -21.5,27.5 parent: 2 - - uid: 16915 + - uid: 16470 components: - type: Transform - pos: -46.5,-26.5 + pos: -21.5,28.5 parent: 2 - - uid: 16916 + - uid: 16471 components: - type: Transform - pos: -45.5,-26.5 + pos: -21.5,29.5 parent: 2 - - uid: 16917 + - uid: 16472 components: - type: Transform - pos: -74.5,3.5 + pos: -21.5,30.5 parent: 2 - - uid: 16918 + - uid: 16473 components: - type: Transform - pos: -73.5,3.5 + pos: -21.5,31.5 parent: 2 - - uid: 16919 + - uid: 16474 components: - type: Transform - pos: -45.5,-27.5 + pos: -22.5,32.5 parent: 2 - - uid: 16920 + - uid: 16475 components: - type: Transform - pos: -45.5,-28.5 + pos: -21.5,32.5 parent: 2 - - uid: 16921 + - uid: 16476 components: - type: Transform - pos: -43.5,-28.5 + pos: -20.5,32.5 parent: 2 - - uid: 16922 + - uid: 16477 components: - type: Transform - pos: -42.5,-28.5 + pos: -20.5,33.5 parent: 2 - - uid: 16923 + - uid: 16478 components: - type: Transform - pos: -41.5,-28.5 + pos: -20.5,34.5 parent: 2 - - uid: 16924 + - uid: 16479 components: - type: Transform - pos: -41.5,-29.5 + pos: -22.5,33.5 parent: 2 - - uid: 16925 + - uid: 16480 components: - type: Transform - pos: -41.5,-30.5 + pos: -22.5,34.5 parent: 2 - - uid: 16926 + - uid: 16481 components: - type: Transform - pos: -41.5,-31.5 + pos: -21.5,34.5 parent: 2 - - uid: 16927 + - uid: 16501 components: - type: Transform - pos: -41.5,-32.5 + pos: -22.5,23.5 parent: 2 - - uid: 16928 + - uid: 16505 components: - type: Transform - pos: -41.5,-33.5 + pos: -20.5,23.5 parent: 2 - - uid: 16929 + - uid: 16508 components: - type: Transform - pos: -41.5,-34.5 + pos: -21.5,35.5 parent: 2 - - uid: 16930 + - uid: 16509 components: - type: Transform - pos: -40.5,-34.5 + pos: -21.5,36.5 parent: 2 - - uid: 16931 + - uid: 16510 components: - type: Transform - pos: -39.5,-34.5 + pos: -21.5,37.5 parent: 2 - - uid: 16932 + - uid: 16511 components: - type: Transform - pos: -38.5,-34.5 + pos: -21.5,38.5 parent: 2 - - uid: 16933 + - uid: 16512 components: - type: Transform - pos: -37.5,-34.5 + pos: -21.5,39.5 parent: 2 - - uid: 16934 + - uid: 16513 components: - type: Transform - pos: -37.5,-33.5 + pos: -21.5,40.5 parent: 2 - - uid: 16935 + - uid: 16514 components: - type: Transform - pos: -37.5,-32.5 + pos: -21.5,41.5 parent: 2 - - uid: 16936 + - uid: 16515 components: - type: Transform - pos: -36.5,-32.5 + pos: -21.5,42.5 parent: 2 - - uid: 16937 + - uid: 16516 components: - type: Transform - pos: -35.5,-32.5 + pos: -21.5,43.5 parent: 2 - - uid: 16938 + - uid: 16517 components: - type: Transform - pos: -34.5,-32.5 + pos: -21.5,44.5 parent: 2 - - uid: 16939 + - uid: 16518 components: - type: Transform - pos: -33.5,-32.5 + pos: -21.5,45.5 parent: 2 - - uid: 16940 + - uid: 16520 components: - type: Transform - pos: -32.5,-32.5 + pos: -21.5,46.5 parent: 2 - - uid: 16941 + - uid: 16521 components: - type: Transform - pos: -31.5,-32.5 + pos: -21.5,47.5 parent: 2 - - uid: 16942 + - uid: 16522 components: - type: Transform - pos: -30.5,-32.5 + pos: -21.5,48.5 parent: 2 - - uid: 16943 + - uid: 16523 components: - type: Transform - pos: -29.5,-32.5 + pos: -21.5,49.5 parent: 2 - - uid: 16944 + - uid: 16524 components: - type: Transform - pos: -28.5,-32.5 + pos: -21.5,50.5 parent: 2 - - uid: 16945 + - uid: 16525 components: - type: Transform - pos: -27.5,-32.5 + pos: -21.5,51.5 parent: 2 - - uid: 16946 + - uid: 16529 components: - type: Transform - pos: -26.5,-32.5 + pos: -1.5,-20.5 parent: 2 - - uid: 16947 + - uid: 16530 components: - type: Transform - pos: -25.5,-32.5 + pos: -2.5,-20.5 parent: 2 - - uid: 16948 + - uid: 16531 components: - type: Transform - pos: -32.5,-46.5 + pos: -3.5,-20.5 parent: 2 - - uid: 16949 + - uid: 16532 components: - type: Transform - pos: -32.5,-47.5 + pos: -4.5,-20.5 parent: 2 - - uid: 16950 + - uid: 16533 components: - type: Transform - pos: -31.5,-47.5 + pos: -5.5,-20.5 parent: 2 - - uid: 16951 + - uid: 16534 components: - type: Transform - pos: -31.5,-48.5 + pos: -6.5,-20.5 parent: 2 - - uid: 16952 + - uid: 16535 components: - type: Transform - pos: -31.5,-49.5 + pos: -7.5,-20.5 parent: 2 - - uid: 16953 + - uid: 16536 components: - type: Transform - pos: -31.5,-50.5 + pos: -8.5,-20.5 parent: 2 - - uid: 16954 + - uid: 16537 components: - type: Transform - pos: -30.5,-50.5 + pos: -9.5,-20.5 parent: 2 - - uid: 16955 + - uid: 16538 components: - type: Transform - pos: -29.5,-50.5 + pos: -10.5,-20.5 parent: 2 - - uid: 16956 + - uid: 16539 components: - type: Transform - pos: -28.5,-50.5 + pos: -11.5,-20.5 parent: 2 - - uid: 16957 + - uid: 16540 components: - type: Transform - pos: -27.5,-50.5 + pos: -12.5,-20.5 parent: 2 - - uid: 16958 + - uid: 16541 components: - type: Transform - pos: -26.5,-50.5 + pos: -13.5,-20.5 parent: 2 - - uid: 16959 + - uid: 16542 components: - type: Transform - pos: -25.5,-50.5 + pos: -14.5,-20.5 parent: 2 - - uid: 16960 + - uid: 16543 components: - type: Transform - pos: -25.5,-51.5 + pos: -15.5,-20.5 parent: 2 - - uid: 16961 + - uid: 16544 components: - type: Transform - pos: -25.5,-52.5 + pos: -16.5,-20.5 parent: 2 - - uid: 16962 + - uid: 16545 components: - type: Transform - pos: -25.5,-53.5 + pos: -17.5,-20.5 parent: 2 - - uid: 16963 + - uid: 16546 components: - type: Transform - pos: -26.5,-53.5 + pos: -18.5,-20.5 parent: 2 - - uid: 16964 + - uid: 16547 components: - type: Transform - pos: -26.5,-54.5 + pos: -19.5,-20.5 parent: 2 - - uid: 16965 + - uid: 16548 components: - type: Transform - pos: -26.5,-55.5 + pos: -20.5,-20.5 parent: 2 - - uid: 16966 + - uid: 16557 components: - type: Transform - pos: -25.5,-55.5 + pos: -16.5,-12.5 parent: 2 - - uid: 16967 + - uid: 16558 components: - type: Transform - pos: -5.5,-73.5 + pos: -18.5,-12.5 parent: 2 - - uid: 16968 + - uid: 16559 components: - type: Transform - pos: -5.5,-72.5 + pos: -18.5,-13.5 parent: 2 - - uid: 16969 + - uid: 16570 components: - type: Transform - pos: -6.5,-72.5 + pos: -11.5,-12.5 parent: 2 - - uid: 16970 + - uid: 16571 components: - type: Transform - pos: -6.5,-71.5 + pos: -10.5,-12.5 parent: 2 - - uid: 16971 + - uid: 16572 components: - type: Transform - pos: -6.5,-70.5 + pos: -9.5,-12.5 parent: 2 - - uid: 16972 + - uid: 16583 components: - type: Transform - pos: -6.5,-69.5 + pos: -9.5,-13.5 parent: 2 - - uid: 16975 + - uid: 16584 components: - type: Transform - pos: -49.5,-65.5 + pos: -8.5,-13.5 parent: 2 - - uid: 16976 + - uid: 16585 components: - type: Transform - pos: -50.5,-65.5 + pos: -7.5,-13.5 parent: 2 - - uid: 16977 + - uid: 16586 components: - type: Transform - pos: -50.5,-64.5 + pos: -6.5,-13.5 parent: 2 - - uid: 16978 + - uid: 16587 components: - type: Transform - pos: -51.5,-64.5 + pos: -5.5,-13.5 parent: 2 - - uid: 16979 + - uid: 16588 components: - type: Transform - pos: -52.5,-64.5 + pos: -4.5,-13.5 parent: 2 - - uid: 16980 + - uid: 16589 components: - type: Transform - pos: -53.5,-64.5 + pos: -3.5,-13.5 parent: 2 - - uid: 16981 + - uid: 16590 components: - type: Transform - pos: -54.5,-64.5 + pos: -2.5,-13.5 parent: 2 - - uid: 16985 + - uid: 16591 components: - type: Transform - pos: -48.5,-65.5 + pos: -1.5,-13.5 parent: 2 - - uid: 16986 + - uid: 16596 components: - type: Transform - pos: -48.5,-64.5 + pos: 0.5,-13.5 parent: 2 - - uid: 16988 + - uid: 16597 components: - type: Transform - pos: -47.5,-64.5 + pos: 1.5,-13.5 parent: 2 - - uid: 16989 + - uid: 16598 components: - type: Transform - pos: -46.5,-64.5 + pos: 2.5,-13.5 parent: 2 - - uid: 16990 + - uid: 16599 components: - type: Transform - pos: -45.5,-64.5 + pos: 3.5,-13.5 parent: 2 - - uid: 16999 + - uid: 16600 components: - type: Transform - pos: -46.5,-63.5 + pos: 4.5,-13.5 parent: 2 - - uid: 17000 + - uid: 16601 components: - type: Transform - pos: -46.5,-62.5 + pos: 5.5,-13.5 parent: 2 - - uid: 17001 + - uid: 16602 components: - type: Transform - pos: -46.5,-61.5 + pos: 6.5,-13.5 parent: 2 - - uid: 17004 + - uid: 16603 components: - type: Transform - pos: -45.5,-61.5 + pos: 7.5,-13.5 parent: 2 - - uid: 17005 + - uid: 16604 components: - type: Transform - pos: -44.5,-61.5 + pos: 8.5,-13.5 parent: 2 - - uid: 17006 + - uid: 16605 components: - type: Transform - pos: -44.5,-60.5 + pos: 8.5,-12.5 parent: 2 - - uid: 17007 + - uid: 16606 components: - type: Transform - pos: -44.5,-59.5 + pos: 9.5,-12.5 parent: 2 - - uid: 17008 + - uid: 16607 components: - type: Transform - pos: -44.5,-58.5 + pos: 9.5,-11.5 parent: 2 - - uid: 17009 + - uid: 16608 components: - type: Transform - pos: -44.5,-57.5 + pos: 10.5,-11.5 parent: 2 - - uid: 17010 + - uid: 16616 components: - type: Transform - pos: -44.5,-56.5 + pos: 10.5,-10.5 parent: 2 - - uid: 17011 + - uid: 16623 components: - type: Transform - pos: -44.5,-55.5 + pos: 10.5,-8.5 parent: 2 - - uid: 17012 + - uid: 16624 components: - type: Transform - pos: -43.5,-55.5 + pos: 9.5,-8.5 parent: 2 - - uid: 17013 + - uid: 16625 components: - type: Transform - pos: -42.5,-55.5 + pos: 9.5,0.5 parent: 2 - - uid: 17014 + - uid: 16626 components: - type: Transform - pos: -41.5,-55.5 + pos: 10.5,0.5 parent: 2 - - uid: 17015 + - uid: 16627 components: - type: Transform - pos: -41.5,-54.5 + pos: 11.5,0.5 parent: 2 - - uid: 17016 + - uid: 16628 components: - type: Transform - pos: -41.5,-53.5 + pos: 12.5,0.5 parent: 2 - - uid: 17017 + - uid: 16629 components: - type: Transform - pos: -41.5,-52.5 + pos: 13.5,0.5 parent: 2 - - uid: 17018 + - uid: 16630 components: - type: Transform - pos: -41.5,-51.5 + pos: 14.5,0.5 parent: 2 - - uid: 17019 + - uid: 16631 components: - type: Transform - pos: -40.5,-51.5 + pos: 15.5,0.5 parent: 2 - - uid: 17020 + - uid: 16632 components: - type: Transform - pos: -40.5,-50.5 + pos: 16.5,0.5 parent: 2 - - uid: 17021 + - uid: 16633 components: - type: Transform - pos: -40.5,-49.5 + pos: 17.5,0.5 parent: 2 - - uid: 17022 + - uid: 16634 components: - type: Transform - pos: -40.5,-48.5 + pos: 18.5,0.5 parent: 2 - - uid: 17023 + - uid: 16635 components: - type: Transform - pos: -40.5,-47.5 + pos: 19.5,0.5 parent: 2 - - uid: 17024 + - uid: 16664 components: - type: Transform - pos: -41.5,-47.5 + pos: -41.5,21.5 parent: 2 - - uid: 17025 + - uid: 16665 components: - type: Transform - pos: -41.5,-46.5 + pos: -41.5,20.5 parent: 2 - - uid: 17026 + - uid: 16666 components: - type: Transform - pos: -41.5,-45.5 + pos: -41.5,19.5 parent: 2 - - uid: 17027 + - uid: 16667 components: - type: Transform - pos: -41.5,-44.5 + pos: -41.5,18.5 parent: 2 - - uid: 17028 + - uid: 16668 components: - type: Transform - pos: -41.5,-43.5 + pos: -41.5,17.5 parent: 2 - - uid: 17029 + - uid: 16669 components: - type: Transform - pos: -41.5,-42.5 + pos: -41.5,16.5 parent: 2 - - uid: 17030 + - uid: 16670 components: - type: Transform - pos: -41.5,-41.5 + pos: -41.5,15.5 parent: 2 - - uid: 17031 + - uid: 16671 components: - type: Transform - pos: -41.5,-40.5 + pos: -41.5,14.5 parent: 2 - - uid: 17032 + - uid: 16672 components: - type: Transform - pos: -41.5,-39.5 + pos: -41.5,13.5 parent: 2 - - uid: 17033 + - uid: 16673 components: - type: Transform - pos: -41.5,-38.5 + pos: -41.5,12.5 parent: 2 - - uid: 17034 + - uid: 16674 components: - type: Transform - pos: -41.5,-37.5 + pos: -41.5,11.5 parent: 2 - - uid: 17035 + - uid: 16675 components: - type: Transform - pos: -41.5,-36.5 + pos: -41.5,10.5 parent: 2 - - uid: 17036 + - uid: 16676 components: - type: Transform - pos: -41.5,-35.5 + pos: -40.5,10.5 parent: 2 - - uid: 17037 + - uid: 16677 components: - type: Transform - pos: -44.5,-64.5 + pos: -39.5,10.5 parent: 2 - - uid: 17038 + - uid: 16678 components: - type: Transform - pos: -44.5,-65.5 + pos: -39.5,9.5 parent: 2 - - uid: 17039 + - uid: 16679 components: - type: Transform - pos: -43.5,-65.5 + pos: -39.5,8.5 parent: 2 - - uid: 17040 + - uid: 16680 components: - type: Transform - pos: -42.5,-65.5 + pos: -39.5,7.5 parent: 2 - - uid: 17041 + - uid: 16681 components: - type: Transform - pos: -41.5,-65.5 + pos: -39.5,6.5 parent: 2 - - uid: 17042 + - uid: 16682 components: - type: Transform - pos: -40.5,-65.5 + pos: -39.5,5.5 parent: 2 - - uid: 17043 + - uid: 16683 components: - type: Transform - pos: -39.5,-65.5 + pos: -39.5,4.5 parent: 2 - - uid: 17044 + - uid: 16684 components: - type: Transform - pos: -38.5,-65.5 + pos: -39.5,3.5 parent: 2 - - uid: 17045 + - uid: 16685 components: - type: Transform - pos: -37.5,-65.5 + pos: -39.5,2.5 parent: 2 - - uid: 17046 + - uid: 16686 components: - type: Transform - pos: -37.5,-66.5 + pos: -39.5,1.5 parent: 2 - - uid: 17047 + - uid: 16687 components: - type: Transform - pos: -37.5,-67.5 + pos: -45.5,-0.5 parent: 2 - - uid: 17048 + - uid: 16688 components: - type: Transform - pos: -37.5,-68.5 + pos: -45.5,-1.5 parent: 2 - - uid: 17049 + - uid: 16689 components: - type: Transform - pos: -37.5,-69.5 + pos: -45.5,-2.5 parent: 2 - - uid: 17050 + - uid: 16690 components: - type: Transform - pos: -37.5,-70.5 + pos: -45.5,-3.5 parent: 2 - - uid: 17051 + - uid: 16691 components: - type: Transform - pos: -36.5,-70.5 + pos: -45.5,-4.5 parent: 2 - - uid: 17052 + - uid: 16692 components: - type: Transform - pos: -35.5,-70.5 + pos: -45.5,-5.5 parent: 2 - - uid: 17054 + - uid: 16693 components: - type: Transform - pos: -34.5,-70.5 + pos: -45.5,-6.5 parent: 2 - - uid: 17055 + - uid: 16694 components: - type: Transform - pos: -33.5,-70.5 + pos: -46.5,-6.5 parent: 2 - - uid: 17056 + - uid: 16695 components: - type: Transform - pos: -32.5,-70.5 + pos: -46.5,-7.5 parent: 2 - - uid: 17057 + - uid: 16696 components: - type: Transform - pos: -31.5,-70.5 + pos: -46.5,-8.5 parent: 2 - - uid: 17058 + - uid: 16697 components: - type: Transform - pos: -30.5,-70.5 + pos: -47.5,-8.5 parent: 2 - - uid: 17059 + - uid: 16698 components: - type: Transform - pos: -30.5,-71.5 + pos: -48.5,-8.5 parent: 2 - - uid: 17060 + - uid: 16699 components: - type: Transform - pos: -30.5,-72.5 + pos: -49.5,-8.5 parent: 2 - - uid: 17061 + - uid: 16700 components: - type: Transform - pos: -29.5,-72.5 + pos: -50.5,-8.5 parent: 2 - - uid: 17062 + - uid: 16701 components: - type: Transform - pos: -28.5,-72.5 + pos: -51.5,-8.5 parent: 2 - - uid: 17063 + - uid: 16702 components: - type: Transform - pos: -27.5,-72.5 + pos: -52.5,-8.5 parent: 2 - - uid: 17064 + - uid: 16703 components: - type: Transform - pos: -26.5,-72.5 + pos: -53.5,-8.5 parent: 2 - - uid: 17065 + - uid: 16704 components: - type: Transform - pos: -25.5,-72.5 + pos: -54.5,-8.5 parent: 2 - - uid: 17066 + - uid: 16705 components: - type: Transform - pos: -24.5,-72.5 + pos: -55.5,-8.5 parent: 2 - - uid: 17067 + - uid: 16706 components: - type: Transform - pos: -24.5,-71.5 + pos: -55.5,-9.5 parent: 2 - - uid: 17068 + - uid: 16707 components: - type: Transform - pos: -23.5,-71.5 + pos: -55.5,-10.5 parent: 2 - - uid: 17069 + - uid: 16708 components: - type: Transform - pos: -23.5,-70.5 + pos: -55.5,-11.5 parent: 2 - - uid: 17070 + - uid: 16709 components: - type: Transform - pos: -22.5,-70.5 + pos: -55.5,-12.5 parent: 2 - - uid: 17071 + - uid: 16710 components: - type: Transform - pos: -21.5,-70.5 + pos: -56.5,-12.5 parent: 2 - - uid: 17072 + - uid: 16711 components: - type: Transform - pos: -20.5,-70.5 + pos: -57.5,-12.5 parent: 2 - - uid: 17073 + - uid: 16720 components: - type: Transform - pos: -19.5,-70.5 + pos: -54.5,-56.5 parent: 2 - - uid: 17074 + - uid: 16721 components: - type: Transform - pos: -18.5,-70.5 + pos: -68.5,-56.5 parent: 2 - - uid: 17075 + - uid: 16722 components: - type: Transform - pos: -17.5,-70.5 + pos: -68.5,-57.5 parent: 2 - - uid: 17076 + - uid: 16723 components: - type: Transform - pos: -17.5,-69.5 + pos: -68.5,-58.5 parent: 2 - - uid: 17077 + - uid: 16724 components: - type: Transform - pos: -17.5,-68.5 + pos: -68.5,-59.5 parent: 2 - - uid: 17078 + - uid: 16725 components: - type: Transform - pos: -17.5,-67.5 + pos: -68.5,-60.5 parent: 2 - - uid: 17079 + - uid: 16726 components: - type: Transform - pos: -16.5,-67.5 + pos: -68.5,-61.5 parent: 2 - - uid: 17080 + - uid: 16727 components: - type: Transform - pos: -15.5,-67.5 + pos: -69.5,-58.5 parent: 2 - - uid: 17081 + - uid: 16728 components: - type: Transform - pos: -14.5,-67.5 + pos: -69.5,-59.5 parent: 2 - - uid: 17082 + - uid: 16729 components: - type: Transform - pos: -14.5,-66.5 + pos: -66.5,-56.5 parent: 2 - - uid: 17083 + - uid: 16730 components: - type: Transform - pos: -13.5,-66.5 + pos: -66.5,-57.5 parent: 2 - - uid: 17084 + - uid: 16731 components: - type: Transform - pos: -12.5,-66.5 + pos: -66.5,-58.5 parent: 2 - - uid: 17085 + - uid: 16732 components: - type: Transform - pos: -11.5,-66.5 + pos: -66.5,-59.5 parent: 2 - - uid: 17086 + - uid: 16734 components: - type: Transform - pos: -11.5,-67.5 + pos: -66.5,-60.5 parent: 2 - - uid: 17087 + - uid: 16735 components: - type: Transform - pos: -11.5,-68.5 + pos: -66.5,-61.5 parent: 2 - - uid: 17088 + - uid: 16736 components: - type: Transform - pos: -11.5,-69.5 + pos: -65.5,-58.5 parent: 2 - - uid: 17094 + - uid: 16737 components: - type: Transform - pos: -24.5,-55.5 + pos: -65.5,-59.5 parent: 2 - - uid: 17095 + - uid: 16738 components: - type: Transform - pos: -23.5,-55.5 + pos: -67.5,-61.5 parent: 2 - - uid: 17096 + - uid: 16739 components: - type: Transform - pos: -22.5,-55.5 + pos: -67.5,-62.5 parent: 2 - - uid: 17097 + - uid: 16740 components: - type: Transform - pos: -21.5,-55.5 + pos: -67.5,-63.5 parent: 2 - - uid: 17098 + - uid: 16741 components: - type: Transform - pos: -20.5,-55.5 + pos: -62.5,-55.5 parent: 2 - - uid: 17099 + - uid: 16742 components: - type: Transform - pos: -19.5,-55.5 + pos: -62.5,-56.5 parent: 2 - - uid: 17100 + - uid: 16743 components: - type: Transform - pos: -18.5,-55.5 + pos: -62.5,-57.5 parent: 2 - - uid: 17101 + - uid: 16744 components: - type: Transform - pos: -17.5,-55.5 + pos: -62.5,-58.5 parent: 2 - - uid: 17102 + - uid: 16745 components: - type: Transform - pos: -16.5,-55.5 + pos: -62.5,-59.5 parent: 2 - - uid: 17103 + - uid: 16746 components: - type: Transform - pos: -15.5,-55.5 + pos: -62.5,-60.5 parent: 2 - - uid: 17104 + - uid: 16747 components: - type: Transform - pos: -14.5,-55.5 + pos: -62.5,-61.5 parent: 2 - - uid: 17105 + - uid: 16763 components: - type: Transform - pos: -13.5,-55.5 + pos: -63.5,-57.5 parent: 2 - - uid: 17106 + - uid: 16764 components: - type: Transform - pos: -12.5,-55.5 + pos: -63.5,-58.5 parent: 2 - - uid: 17107 + - uid: 16765 components: - type: Transform - pos: -12.5,-56.5 + pos: -63.5,-59.5 parent: 2 - - uid: 17108 + - uid: 16766 components: - type: Transform - pos: -12.5,-57.5 + pos: -60.5,-55.5 parent: 2 - - uid: 17109 + - uid: 16767 components: - type: Transform - pos: -12.5,-58.5 + pos: -60.5,-56.5 parent: 2 - - uid: 17110 + - uid: 16768 components: - type: Transform - pos: -12.5,-59.5 + pos: -60.5,-57.5 parent: 2 - - uid: 17111 + - uid: 16769 components: - type: Transform - pos: -12.5,-60.5 + pos: -60.5,-58.5 parent: 2 - - uid: 17112 + - uid: 16770 components: - type: Transform - pos: -12.5,-61.5 + pos: -60.5,-59.5 parent: 2 - - uid: 17113 + - uid: 16771 components: - type: Transform - pos: -12.5,-62.5 + pos: -60.5,-60.5 parent: 2 - - uid: 17114 + - uid: 16772 components: - type: Transform - pos: -12.5,-63.5 + pos: -60.5,-61.5 parent: 2 - - uid: 17115 + - uid: 16773 components: - type: Transform - pos: -12.5,-64.5 + pos: -59.5,-57.5 parent: 2 - - uid: 17116 + - uid: 16774 components: - type: Transform - pos: -12.5,-65.5 + pos: -59.5,-58.5 parent: 2 - - uid: 17118 + - uid: 16775 components: - type: Transform - pos: -10.5,-69.5 + pos: -59.5,-59.5 parent: 2 - - uid: 17119 + - uid: 16776 components: - type: Transform - pos: -9.5,-69.5 + pos: -61.5,-61.5 parent: 2 - - uid: 17120 + - uid: 16778 components: - type: Transform - pos: -8.5,-69.5 + pos: -61.5,-62.5 parent: 2 - - uid: 17121 + - uid: 16780 components: - type: Transform - pos: -7.5,-69.5 + pos: -61.5,-63.5 parent: 2 - - uid: 17122 + - uid: 16781 components: - type: Transform - pos: -5.5,-69.5 + pos: -57.5,-58.5 parent: 2 - - uid: 17123 + - uid: 16782 components: - type: Transform - pos: -4.5,-69.5 + pos: -57.5,-59.5 parent: 2 - - uid: 17124 + - uid: 16786 components: - type: Transform - pos: -3.5,-69.5 + pos: -56.5,-56.5 parent: 2 - - uid: 17125 + - uid: 16787 components: - type: Transform - pos: -3.5,-70.5 + pos: -56.5,-57.5 parent: 2 - - uid: 17130 + - uid: 16788 components: - type: Transform - pos: -2.5,-70.5 + pos: -56.5,-58.5 parent: 2 - - uid: 17131 + - uid: 16789 components: - type: Transform - pos: -1.5,-70.5 + pos: -56.5,-59.5 parent: 2 - - uid: 17132 + - uid: 16790 components: - type: Transform - pos: -0.5,-70.5 + pos: -56.5,-60.5 parent: 2 - - uid: 17133 + - uid: 16791 components: - type: Transform - pos: 0.5,-70.5 + pos: -56.5,-61.5 parent: 2 - - uid: 17134 + - uid: 16792 components: - type: Transform - pos: 1.5,-70.5 + pos: -54.5,-57.5 parent: 2 - - uid: 17135 + - uid: 16793 components: - type: Transform - pos: 2.5,-70.5 + pos: -54.5,-58.5 parent: 2 - - uid: 17136 + - uid: 16794 components: - type: Transform - pos: 3.5,-70.5 + pos: -54.5,-59.5 parent: 2 - - uid: 17137 + - uid: 16795 components: - type: Transform - pos: 4.5,-70.5 + pos: -54.5,-60.5 parent: 2 - - uid: 17138 + - uid: 16796 components: - type: Transform - pos: 5.5,-70.5 + pos: -54.5,-61.5 parent: 2 - - uid: 17139 + - uid: 16797 components: - type: Transform - pos: 6.5,-70.5 + pos: -53.5,-58.5 parent: 2 - - uid: 17140 + - uid: 16798 components: - type: Transform - pos: 7.5,-70.5 + pos: -53.5,-59.5 parent: 2 - - uid: 17141 + - uid: 16799 components: - type: Transform - pos: 8.5,-70.5 + pos: -55.5,-61.5 parent: 2 - - uid: 17142 + - uid: 16800 components: - type: Transform - pos: 9.5,-70.5 + pos: -55.5,-62.5 parent: 2 - - uid: 17143 + - uid: 16801 components: - type: Transform - pos: 10.5,-70.5 + pos: -55.5,-63.5 parent: 2 - - uid: 17144 + - uid: 16802 components: - type: Transform - pos: 11.5,-70.5 + pos: -55.5,-66.5 parent: 2 - - uid: 17145 + - uid: 16803 components: - type: Transform - pos: 12.5,-70.5 + pos: -68.5,-72.5 parent: 2 - - uid: 17146 + - uid: 16804 components: - type: Transform - pos: 13.5,-70.5 + pos: -68.5,-71.5 parent: 2 - - uid: 17147 + - uid: 16805 components: - type: Transform - pos: 14.5,-70.5 + pos: -68.5,-70.5 parent: 2 - - uid: 17148 + - uid: 16806 components: - type: Transform - pos: 15.5,-70.5 + pos: -68.5,-69.5 parent: 2 - - uid: 17149 + - uid: 16807 components: - type: Transform - pos: 16.5,-70.5 + pos: -68.5,-68.5 parent: 2 - - uid: 17150 + - uid: 16808 components: - type: Transform - pos: 17.5,-70.5 + pos: -68.5,-67.5 parent: 2 - - uid: 17151 + - uid: 16809 components: - type: Transform - pos: 18.5,-70.5 + pos: -69.5,-70.5 parent: 2 - - uid: 17156 + - uid: 16810 components: - type: Transform - pos: 18.5,-69.5 + pos: -69.5,-69.5 parent: 2 - - uid: 17157 + - uid: 16812 components: - type: Transform - pos: 18.5,-68.5 + pos: -66.5,-72.5 parent: 2 - - uid: 17158 + - uid: 16813 components: - type: Transform - pos: 18.5,-67.5 + pos: -66.5,-71.5 parent: 2 - - uid: 17159 + - uid: 16814 components: - type: Transform - pos: 18.5,-66.5 + pos: -66.5,-70.5 parent: 2 - - uid: 17160 + - uid: 16815 components: - type: Transform - pos: 29.5,-64.5 + pos: -66.5,-69.5 parent: 2 - - uid: 17161 + - uid: 16816 components: - type: Transform - pos: 29.5,-65.5 + pos: -66.5,-68.5 parent: 2 - - uid: 17163 + - uid: 16817 components: - type: Transform - pos: 28.5,-64.5 + pos: -66.5,-67.5 parent: 2 - - uid: 17164 + - uid: 16818 components: - type: Transform - pos: 27.5,-64.5 + pos: -65.5,-69.5 parent: 2 - - uid: 17165 + - uid: 16819 components: - type: Transform - pos: 26.5,-64.5 + pos: -65.5,-70.5 parent: 2 - - uid: 17166 + - uid: 16820 components: - type: Transform - pos: 25.5,-64.5 + pos: -67.5,-67.5 parent: 2 - - uid: 17167 + - uid: 16821 components: - type: Transform - pos: 24.5,-64.5 + pos: -67.5,-66.5 parent: 2 - - uid: 17168 + - uid: 16822 components: - type: Transform - pos: 24.5,-65.5 + pos: -67.5,-65.5 parent: 2 - - uid: 17177 + - uid: 16823 components: - type: Transform - pos: 18.5,-65.5 + pos: -61.5,-65.5 parent: 2 - - uid: 17178 + - uid: 16824 components: - type: Transform - pos: 18.5,-64.5 + pos: -61.5,-66.5 parent: 2 - - uid: 17179 + - uid: 16825 components: - type: Transform - pos: 18.5,-63.5 + pos: -61.5,-67.5 parent: 2 - - uid: 17180 + - uid: 16826 components: - type: Transform - pos: 18.5,-62.5 + pos: -62.5,-67.5 parent: 2 - - uid: 17181 + - uid: 16827 components: - type: Transform - pos: 18.5,-61.5 + pos: -62.5,-68.5 parent: 2 - - uid: 17182 + - uid: 16828 components: - type: Transform - pos: 18.5,-60.5 + pos: -62.5,-69.5 parent: 2 - - uid: 17183 + - uid: 16829 components: - type: Transform - pos: 18.5,-59.5 + pos: -62.5,-70.5 parent: 2 - - uid: 17191 + - uid: 16830 components: - type: Transform - pos: 19.5,-59.5 + pos: -62.5,-71.5 parent: 2 - - uid: 17192 + - uid: 16831 components: - type: Transform - pos: 19.5,-58.5 + pos: -62.5,-72.5 parent: 2 - - uid: 17193 + - uid: 16832 components: - type: Transform - pos: 19.5,-57.5 + pos: -62.5,-73.5 parent: 2 - - uid: 17194 + - uid: 16833 components: - type: Transform - pos: 19.5,-56.5 + pos: -60.5,-67.5 parent: 2 - - uid: 17195 + - uid: 16834 components: - type: Transform - pos: 19.5,-55.5 + pos: -60.5,-68.5 parent: 2 - - uid: 17196 + - uid: 16835 components: - type: Transform - pos: 19.5,-54.5 + pos: -60.5,-69.5 parent: 2 - - uid: 17197 + - uid: 16836 components: - type: Transform - pos: 19.5,-53.5 + pos: -60.5,-70.5 parent: 2 - - uid: 17198 + - uid: 16837 components: - type: Transform - pos: 19.5,-52.5 + pos: -60.5,-71.5 parent: 2 - - uid: 17199 + - uid: 16838 components: - type: Transform - pos: 19.5,-51.5 + pos: -60.5,-72.5 parent: 2 - - uid: 17200 + - uid: 16839 components: - type: Transform - pos: 19.5,-50.5 + pos: -60.5,-73.5 parent: 2 - - uid: 17201 + - uid: 16840 components: - type: Transform - pos: 19.5,-49.5 + pos: -59.5,-71.5 parent: 2 - - uid: 17202 + - uid: 16841 components: - type: Transform - pos: 19.5,-48.5 + pos: -59.5,-70.5 parent: 2 - - uid: 17203 + - uid: 16842 components: - type: Transform - pos: 19.5,-47.5 + pos: -59.5,-69.5 parent: 2 - - uid: 17204 + - uid: 16843 components: - type: Transform - pos: 19.5,-46.5 + pos: -63.5,-71.5 parent: 2 - - uid: 17205 + - uid: 16844 components: - type: Transform - pos: 19.5,-45.5 + pos: -63.5,-70.5 parent: 2 - - uid: 17206 + - uid: 16845 components: - type: Transform - pos: 19.5,-44.5 + pos: -63.5,-69.5 parent: 2 - - uid: 17207 + - uid: 16846 components: - type: Transform - pos: 19.5,-43.5 + pos: -57.5,-69.5 parent: 2 - - uid: 17208 + - uid: 16847 components: - type: Transform - pos: 19.5,-42.5 + pos: -57.5,-70.5 parent: 2 - - uid: 17209 + - uid: 16848 components: - type: Transform - pos: 19.5,-41.5 + pos: -56.5,-67.5 parent: 2 - - uid: 17210 + - uid: 16849 components: - type: Transform - pos: 19.5,-40.5 + pos: -56.5,-68.5 parent: 2 - - uid: 17215 + - uid: 16850 components: - type: Transform - pos: 19.5,-39.5 + pos: -56.5,-69.5 parent: 2 - - uid: 17216 + - uid: 16851 components: - type: Transform - pos: 20.5,-39.5 + pos: -56.5,-70.5 parent: 2 - - uid: 17217 + - uid: 16852 components: - type: Transform - pos: 21.5,-39.5 + pos: -56.5,-71.5 parent: 2 - - uid: 17218 + - uid: 16853 components: - type: Transform - pos: 22.5,-39.5 + pos: -56.5,-72.5 parent: 2 - - uid: 17219 + - uid: 16854 components: - type: Transform - pos: 22.5,-38.5 + pos: -54.5,-67.5 parent: 2 - - uid: 17224 + - uid: 16855 components: - type: Transform - pos: 49.5,-47.5 + pos: -54.5,-68.5 parent: 2 - - uid: 17226 + - uid: 16856 components: - type: Transform - pos: 48.5,-46.5 + pos: -54.5,-69.5 parent: 2 - - uid: 17227 + - uid: 16857 components: - type: Transform - pos: 48.5,-45.5 + pos: -54.5,-70.5 parent: 2 - - uid: 17228 + - uid: 16858 components: - type: Transform - pos: 48.5,-44.5 + pos: -54.5,-71.5 parent: 2 - - uid: 17229 + - uid: 16859 components: - type: Transform - pos: 48.5,-43.5 + pos: -54.5,-72.5 parent: 2 - - uid: 17230 + - uid: 16860 components: - type: Transform - pos: 33.5,-36.5 + pos: -53.5,-70.5 parent: 2 - - uid: 17231 + - uid: 16861 components: - type: Transform - pos: 34.5,-36.5 + pos: -53.5,-69.5 parent: 2 - - uid: 17232 + - uid: 16862 components: - type: Transform - pos: 47.5,-43.5 + pos: -55.5,-65.5 parent: 2 - - uid: 17233 + - uid: 16863 components: - type: Transform - pos: 46.5,-43.5 + pos: -69.5,-64.5 parent: 2 - - uid: 17234 + - uid: 16864 components: - type: Transform - pos: 45.5,-43.5 + pos: -68.5,-64.5 parent: 2 - - uid: 17235 + - uid: 16865 components: - type: Transform - pos: 44.5,-43.5 + pos: 48.5,-47.5 parent: 2 - - uid: 17236 + - uid: 16866 components: - type: Transform - pos: 43.5,-43.5 + pos: -72.5,7.5 parent: 2 - - uid: 17237 + - uid: 16867 components: - type: Transform - pos: 42.5,-43.5 + pos: -73.5,7.5 parent: 2 - - uid: 17238 + - uid: 16868 components: - type: Transform - pos: 41.5,-43.5 + pos: -73.5,8.5 parent: 2 - - uid: 17239 + - uid: 16869 components: - type: Transform - pos: 40.5,-43.5 + pos: -74.5,8.5 parent: 2 - - uid: 17240 + - uid: 16870 components: - type: Transform - pos: 39.5,-43.5 + pos: -72.5,2.5 parent: 2 - - uid: 17241 + - uid: 16871 components: - type: Transform - pos: 39.5,-44.5 + pos: -73.5,2.5 parent: 2 - - uid: 17242 + - uid: 16872 components: - type: Transform - pos: 38.5,-44.5 + pos: -73.5,1.5 parent: 2 - - uid: 17243 + - uid: 16873 components: - type: Transform - pos: 37.5,-44.5 + pos: -74.5,1.5 parent: 2 - - uid: 17244 + - uid: 16874 components: - type: Transform - pos: 36.5,-44.5 + pos: -69.5,-16.5 parent: 2 - - uid: 17245 + - uid: 16875 components: - type: Transform - pos: 35.5,-44.5 + pos: -68.5,-16.5 parent: 2 - - uid: 17246 + - uid: 16876 components: - type: Transform - pos: 35.5,-43.5 + pos: -67.5,-16.5 parent: 2 - - uid: 17247 + - uid: 16877 components: - type: Transform - pos: 35.5,-42.5 + pos: -67.5,-17.5 parent: 2 - - uid: 17248 + - uid: 16878 components: - type: Transform - pos: 35.5,-41.5 + pos: -67.5,-18.5 parent: 2 - - uid: 17249 + - uid: 16879 components: - type: Transform - pos: 35.5,-40.5 + pos: -67.5,-19.5 parent: 2 - - uid: 17250 + - uid: 16881 components: - type: Transform - pos: 35.5,-39.5 + pos: -67.5,-20.5 parent: 2 - - uid: 17251 + - uid: 16882 components: - type: Transform - pos: 35.5,-38.5 + pos: -67.5,-21.5 parent: 2 - - uid: 17252 + - uid: 16883 components: - type: Transform - pos: 34.5,-38.5 + pos: -67.5,-22.5 parent: 2 - - uid: 17253 + - uid: 16884 components: - type: Transform - pos: 34.5,-37.5 + pos: -72.5,1.5 parent: 2 - - uid: 17254 + - uid: 16885 components: - type: Transform - pos: 33.5,-38.5 + pos: -66.5,-22.5 parent: 2 - - uid: 17256 + - uid: 16886 components: - type: Transform - pos: 32.5,-38.5 + pos: -66.5,-23.5 parent: 2 - - uid: 17259 + - uid: 16887 components: - type: Transform - pos: 32.5,-37.5 + pos: -65.5,-23.5 parent: 2 - - uid: 17260 + - uid: 16888 components: - type: Transform - pos: 24.5,-31.5 + pos: -72.5,8.5 parent: 2 - - uid: 17261 + - uid: 16889 components: - type: Transform - pos: -0.5,-21.5 + pos: -64.5,-23.5 parent: 2 - - uid: 17262 + - uid: 16890 components: - type: Transform - pos: 31.5,-37.5 + pos: -63.5,-23.5 parent: 2 - - uid: 17263 + - uid: 16891 components: - type: Transform - pos: 30.5,-37.5 + pos: -62.5,-23.5 parent: 2 - - uid: 17264 + - uid: 16892 components: - type: Transform - pos: 29.5,-37.5 + pos: -61.5,-23.5 parent: 2 - - uid: 17265 + - uid: 16893 components: - type: Transform - pos: 28.5,-37.5 + pos: -60.5,-23.5 parent: 2 - - uid: 17266 + - uid: 16894 components: - type: Transform - pos: 27.5,-37.5 + pos: -59.5,-23.5 parent: 2 - - uid: 17267 + - uid: 16895 components: - type: Transform - pos: 26.5,-37.5 + pos: -58.5,-23.5 parent: 2 - - uid: 17268 + - uid: 16896 components: - type: Transform - pos: 25.5,-37.5 + pos: -57.5,-23.5 parent: 2 - - uid: 17269 + - uid: 16897 components: - type: Transform - pos: 24.5,-37.5 + pos: -56.5,-23.5 parent: 2 - - uid: 17271 + - uid: 16898 components: - type: Transform - pos: 24.5,-36.5 + pos: -55.5,-23.5 parent: 2 - - uid: 17272 + - uid: 16899 components: - type: Transform - pos: 24.5,-35.5 + pos: -54.5,-23.5 parent: 2 - - uid: 17273 + - uid: 16900 components: - type: Transform - pos: 24.5,-34.5 + pos: -53.5,-23.5 parent: 2 - - uid: 17274 + - uid: 16901 components: - type: Transform - pos: -0.5,-22.5 + pos: -52.5,-23.5 parent: 2 - - uid: 17275 + - uid: 16902 components: - type: Transform - pos: 24.5,-33.5 + pos: -51.5,-23.5 parent: 2 - - uid: 17276 + - uid: 16903 components: - type: Transform - pos: 24.5,-32.5 + pos: -50.5,-23.5 parent: 2 - - uid: 17277 + - uid: 16904 components: - type: Transform - pos: 22.5,-37.5 + pos: -49.5,-23.5 parent: 2 - - uid: 17278 + - uid: 16905 components: - type: Transform - pos: 22.5,-36.5 + pos: -74.5,4.5 parent: 2 - - uid: 17279 + - uid: 16906 components: - type: Transform - pos: 22.5,-35.5 + pos: -49.5,-24.5 parent: 2 - - uid: 17280 + - uid: 16907 components: - type: Transform - pos: 22.5,-34.5 + pos: -74.5,5.5 parent: 2 - - uid: 17281 + - uid: 16908 components: - type: Transform - pos: 23.5,-34.5 + pos: -44.5,-28.5 parent: 2 - - uid: 17282 + - uid: 16909 components: - type: Transform - pos: 49.5,-43.5 + pos: -73.5,6.5 parent: 2 - - uid: 17283 + - uid: 16910 components: - type: Transform - pos: 50.5,-43.5 + pos: -48.5,-24.5 parent: 2 - - uid: 17284 + - uid: 16911 components: - type: Transform - pos: 51.5,-43.5 + pos: -47.5,-24.5 parent: 2 - - uid: 17285 + - uid: 16912 components: - type: Transform - pos: 52.5,-43.5 + pos: -47.5,-25.5 parent: 2 - - uid: 17286 + - uid: 16913 components: - type: Transform - pos: 53.5,-43.5 + pos: -47.5,-26.5 parent: 2 - - uid: 17287 + - uid: 16914 components: - type: Transform - pos: 54.5,-43.5 + pos: -74.5,6.5 parent: 2 - - uid: 17292 + - uid: 16915 components: - type: Transform - pos: -0.5,-23.5 + pos: -46.5,-26.5 parent: 2 - - uid: 17293 + - uid: 16917 components: - type: Transform - pos: -0.5,-24.5 + pos: -74.5,3.5 parent: 2 - - uid: 17294 + - uid: 16918 components: - type: Transform - pos: -0.5,-25.5 + pos: -73.5,3.5 parent: 2 - - uid: 17295 + - uid: 16919 components: - type: Transform - pos: -0.5,-26.5 + pos: -45.5,-27.5 parent: 2 - - uid: 17296 + - uid: 16920 components: - type: Transform - pos: -0.5,-27.5 + pos: -45.5,-28.5 parent: 2 - - uid: 17297 + - uid: 16921 components: - type: Transform - pos: -0.5,-28.5 + pos: -43.5,-28.5 parent: 2 - - uid: 17298 + - uid: 16922 components: - type: Transform - pos: -0.5,-29.5 + pos: -42.5,-28.5 parent: 2 - - uid: 17300 + - uid: 16923 components: - type: Transform - pos: -0.5,-30.5 + pos: -41.5,-28.5 parent: 2 - - uid: 17301 + - uid: 16924 components: - type: Transform - pos: -0.5,-31.5 + pos: -41.5,-29.5 parent: 2 - - uid: 17302 + - uid: 16925 components: - type: Transform - pos: 24.5,-30.5 + pos: -41.5,-30.5 parent: 2 - - uid: 17303 + - uid: 16926 components: - type: Transform - pos: 24.5,-29.5 + pos: -41.5,-31.5 parent: 2 - - uid: 17304 + - uid: 16927 components: - type: Transform - pos: 23.5,-29.5 + pos: -41.5,-32.5 parent: 2 - - uid: 17305 + - uid: 16928 components: - type: Transform - pos: 22.5,-29.5 + pos: -41.5,-33.5 parent: 2 - - uid: 17306 + - uid: 16929 components: - type: Transform - pos: 21.5,-29.5 + pos: -41.5,-34.5 parent: 2 - - uid: 17307 + - uid: 16930 components: - type: Transform - pos: 20.5,-29.5 + pos: -40.5,-34.5 parent: 2 - - uid: 17308 + - uid: 16931 components: - type: Transform - pos: 19.5,-29.5 + pos: -39.5,-34.5 parent: 2 - - uid: 17309 + - uid: 16932 components: - type: Transform - pos: 18.5,-29.5 + pos: -38.5,-34.5 parent: 2 - - uid: 17310 + - uid: 16933 components: - type: Transform - pos: 17.5,-29.5 + pos: -37.5,-34.5 parent: 2 - - uid: 17311 + - uid: 16934 components: - type: Transform - pos: 16.5,-29.5 + pos: -37.5,-33.5 parent: 2 - - uid: 17312 + - uid: 16935 components: - type: Transform - pos: 15.5,-29.5 + pos: -37.5,-32.5 parent: 2 - - uid: 17313 + - uid: 16936 components: - type: Transform - pos: 14.5,-29.5 + pos: -36.5,-32.5 parent: 2 - - uid: 17314 + - uid: 16937 components: - type: Transform - pos: 13.5,-29.5 + pos: -35.5,-32.5 parent: 2 - - uid: 17315 + - uid: 16938 components: - type: Transform - pos: 12.5,-29.5 + pos: -34.5,-32.5 parent: 2 - - uid: 17316 + - uid: 16939 components: - type: Transform - pos: 11.5,-29.5 + pos: -33.5,-32.5 parent: 2 - - uid: 17317 + - uid: 16940 components: - type: Transform - pos: 10.5,-29.5 + pos: -32.5,-32.5 parent: 2 - - uid: 17318 + - uid: 16941 components: - type: Transform - pos: 9.5,-29.5 + pos: -31.5,-32.5 parent: 2 - - uid: 17319 + - uid: 16942 components: - type: Transform - pos: 8.5,-29.5 + pos: -30.5,-32.5 parent: 2 - - uid: 17320 + - uid: 16943 components: - type: Transform - pos: 8.5,-30.5 + pos: -29.5,-32.5 parent: 2 - - uid: 17326 + - uid: 16944 components: - type: Transform - pos: 7.5,-30.5 + pos: -28.5,-32.5 parent: 2 - - uid: 17327 + - uid: 16945 components: - type: Transform - pos: 6.5,-30.5 + pos: -27.5,-32.5 parent: 2 - - uid: 17328 + - uid: 16946 components: - type: Transform - pos: 5.5,-30.5 + pos: -26.5,-32.5 parent: 2 - - uid: 17329 + - uid: 16947 components: - type: Transform - pos: 4.5,-30.5 + pos: -25.5,-32.5 parent: 2 - - uid: 17330 + - uid: 16948 components: - type: Transform - pos: 3.5,-30.5 + pos: -32.5,-46.5 parent: 2 - - uid: 17331 + - uid: 16949 components: - type: Transform - pos: 2.5,-30.5 + pos: -32.5,-47.5 parent: 2 - - uid: 17332 + - uid: 16950 components: - type: Transform - pos: 1.5,-30.5 + pos: -31.5,-47.5 parent: 2 - - uid: 17333 + - uid: 16951 components: - type: Transform - pos: 0.5,-30.5 + pos: -31.5,-48.5 parent: 2 - - uid: 17334 + - uid: 16952 components: - type: Transform - pos: -0.5,-32.5 + pos: -31.5,-49.5 parent: 2 - - uid: 17335 + - uid: 16953 components: - type: Transform - pos: -0.5,-33.5 + pos: -31.5,-50.5 parent: 2 - - uid: 17336 + - uid: 16954 components: - type: Transform - pos: -0.5,-34.5 + pos: -30.5,-50.5 parent: 2 - - uid: 17337 + - uid: 16955 components: - type: Transform - pos: -0.5,-35.5 + pos: -29.5,-50.5 parent: 2 - - uid: 17338 + - uid: 16956 components: - type: Transform - pos: -16.5,-31.5 + pos: -28.5,-50.5 parent: 2 - - uid: 17339 + - uid: 16957 components: - type: Transform - pos: -17.5,-31.5 + pos: -27.5,-50.5 parent: 2 - - uid: 17340 + - uid: 16958 components: - type: Transform - pos: -18.5,-31.5 + pos: -26.5,-50.5 parent: 2 - - uid: 17341 + - uid: 16959 components: - type: Transform - pos: -19.5,-31.5 + pos: -25.5,-50.5 parent: 2 - - uid: 17342 + - uid: 16960 components: - type: Transform - pos: -20.5,-31.5 + pos: -25.5,-51.5 parent: 2 - - uid: 17347 + - uid: 16961 components: - type: Transform - pos: -22.5,-33.5 + pos: -25.5,-52.5 parent: 2 - - uid: 17348 + - uid: 16962 components: - type: Transform - pos: -21.5,-33.5 + pos: -25.5,-53.5 parent: 2 - - uid: 17349 + - uid: 16963 components: - type: Transform - pos: -21.5,-32.5 + pos: -26.5,-53.5 parent: 2 - - uid: 17350 + - uid: 16964 components: - type: Transform - pos: -21.5,-31.5 + pos: -26.5,-54.5 parent: 2 - - uid: 17351 + - uid: 16965 components: - type: Transform - pos: -10.5,-27.5 + pos: -26.5,-55.5 parent: 2 - - uid: 17352 + - uid: 16966 components: - type: Transform - pos: -11.5,-27.5 + pos: -25.5,-55.5 parent: 2 - - uid: 17353 + - uid: 16967 components: - type: Transform - pos: -12.5,-27.5 + pos: -5.5,-73.5 parent: 2 - - uid: 17354 + - uid: 16968 components: - type: Transform - pos: -13.5,-27.5 + pos: -5.5,-72.5 parent: 2 - - uid: 17355 + - uid: 16969 components: - type: Transform - pos: -14.5,-27.5 + pos: -6.5,-72.5 parent: 2 - - uid: 17356 + - uid: 16970 components: - type: Transform - pos: -15.5,-27.5 + pos: -6.5,-71.5 parent: 2 - - uid: 17357 + - uid: 16971 components: - type: Transform - pos: -16.5,-27.5 + pos: -6.5,-70.5 parent: 2 - - uid: 17358 + - uid: 16972 components: - type: Transform - pos: -17.5,-27.5 + pos: -6.5,-69.5 parent: 2 - - uid: 17359 + - uid: 16975 components: - type: Transform - pos: -18.5,-27.5 + pos: -49.5,-65.5 parent: 2 - - uid: 17360 + - uid: 16976 components: - type: Transform - pos: -19.5,-27.5 + pos: -50.5,-65.5 parent: 2 - - uid: 17361 + - uid: 16977 components: - type: Transform - pos: -20.5,-27.5 + pos: -50.5,-64.5 parent: 2 - - uid: 17362 + - uid: 16978 components: - type: Transform - pos: -21.5,-27.5 + pos: -51.5,-64.5 parent: 2 - - uid: 17363 + - uid: 16979 components: - type: Transform - pos: -21.5,-28.5 + pos: -52.5,-64.5 parent: 2 - - uid: 17364 + - uid: 16980 components: - type: Transform - pos: -21.5,-29.5 + pos: -53.5,-64.5 parent: 2 - - uid: 17365 + - uid: 16981 components: - type: Transform - pos: -21.5,-30.5 + pos: -54.5,-64.5 parent: 2 - - uid: 17411 + - uid: 16985 components: - type: Transform - pos: 54.5,-44.5 + pos: -48.5,-65.5 parent: 2 - - uid: 17412 + - uid: 16986 components: - type: Transform - pos: 54.5,-45.5 + pos: -48.5,-64.5 parent: 2 - - uid: 17413 + - uid: 16988 components: - type: Transform - pos: 54.5,-46.5 + pos: -47.5,-64.5 parent: 2 - - uid: 17414 + - uid: 16989 components: - type: Transform - pos: 54.5,-47.5 + pos: -46.5,-64.5 parent: 2 - - uid: 17415 + - uid: 16990 components: - type: Transform - pos: 54.5,-48.5 + pos: -45.5,-64.5 parent: 2 - - uid: 17416 + - uid: 16999 components: - type: Transform - pos: 54.5,-49.5 + pos: -46.5,-63.5 parent: 2 - - uid: 17417 + - uid: 17000 components: - type: Transform - pos: 54.5,-50.5 + pos: -46.5,-62.5 parent: 2 - - uid: 17418 + - uid: 17001 components: - type: Transform - pos: 54.5,-51.5 + pos: -46.5,-61.5 parent: 2 - - uid: 17419 + - uid: 17004 components: - type: Transform - pos: 55.5,-51.5 + pos: -45.5,-61.5 parent: 2 - - uid: 17421 + - uid: 17005 components: - type: Transform - pos: 56.5,-51.5 + pos: -44.5,-61.5 parent: 2 - - uid: 17422 + - uid: 17006 components: - type: Transform - pos: 57.5,-51.5 + pos: -44.5,-60.5 parent: 2 - - uid: 17423 + - uid: 17007 components: - type: Transform - pos: 58.5,-51.5 + pos: -44.5,-59.5 parent: 2 - - uid: 17424 + - uid: 17008 components: - type: Transform - pos: 59.5,-51.5 + pos: -44.5,-58.5 parent: 2 - - uid: 17425 + - uid: 17009 components: - type: Transform - pos: 60.5,-51.5 + pos: -44.5,-57.5 parent: 2 - - uid: 17426 + - uid: 17010 components: - type: Transform - pos: 61.5,-51.5 + pos: -44.5,-56.5 parent: 2 - - uid: 17427 + - uid: 17011 components: - type: Transform - pos: 62.5,-51.5 + pos: -44.5,-55.5 parent: 2 - - uid: 17428 + - uid: 17012 components: - type: Transform - pos: 63.5,-51.5 + pos: -43.5,-55.5 parent: 2 - - uid: 17429 + - uid: 17013 components: - type: Transform - pos: 64.5,-51.5 + pos: -42.5,-55.5 parent: 2 - - uid: 17430 + - uid: 17014 components: - type: Transform - pos: 65.5,-51.5 + pos: -41.5,-55.5 parent: 2 - - uid: 17431 + - uid: 17015 components: - type: Transform - pos: 66.5,-51.5 + pos: -41.5,-54.5 parent: 2 - - uid: 17432 + - uid: 17016 components: - type: Transform - pos: 67.5,-51.5 + pos: -41.5,-53.5 parent: 2 - - uid: 17433 + - uid: 17017 components: - type: Transform - pos: 68.5,-51.5 + pos: -41.5,-52.5 parent: 2 - - uid: 17434 + - uid: 17018 components: - type: Transform - pos: 69.5,-51.5 + pos: -41.5,-51.5 parent: 2 - - uid: 17435 + - uid: 17019 components: - type: Transform - pos: 69.5,-50.5 + pos: -40.5,-51.5 parent: 2 - - uid: 17436 + - uid: 17020 components: - type: Transform - pos: 70.5,-50.5 + pos: -40.5,-50.5 parent: 2 - - uid: 17437 + - uid: 17021 components: - type: Transform - pos: 70.5,-49.5 + pos: -40.5,-49.5 parent: 2 - - uid: 17438 + - uid: 17022 components: - type: Transform - pos: 71.5,-49.5 + pos: -40.5,-48.5 parent: 2 - - uid: 17439 + - uid: 17023 components: - type: Transform - pos: 71.5,-48.5 + pos: -40.5,-47.5 parent: 2 - - uid: 17440 + - uid: 17024 components: - type: Transform - pos: 71.5,-47.5 + pos: -41.5,-47.5 parent: 2 - - uid: 17441 + - uid: 17025 components: - type: Transform - pos: 71.5,-46.5 + pos: -41.5,-46.5 parent: 2 - - uid: 17442 + - uid: 17026 components: - type: Transform - pos: 71.5,-45.5 + pos: -41.5,-45.5 parent: 2 - - uid: 17443 + - uid: 17027 components: - type: Transform - pos: 71.5,-44.5 + pos: -41.5,-44.5 parent: 2 - - uid: 17444 + - uid: 17028 components: - type: Transform - pos: 71.5,-43.5 + pos: -41.5,-43.5 parent: 2 - - uid: 17445 + - uid: 17029 components: - type: Transform - pos: 71.5,-42.5 + pos: -41.5,-42.5 parent: 2 - - uid: 17446 + - uid: 17030 components: - type: Transform - pos: 71.5,-41.5 + pos: -41.5,-41.5 parent: 2 - - uid: 17447 + - uid: 17031 components: - type: Transform - pos: 71.5,-40.5 + pos: -41.5,-40.5 parent: 2 - - uid: 17448 + - uid: 17032 components: - type: Transform - pos: 72.5,-40.5 + pos: -41.5,-39.5 parent: 2 - - uid: 17449 + - uid: 17033 components: - type: Transform - pos: 72.5,-39.5 + pos: -41.5,-38.5 parent: 2 - - uid: 17450 + - uid: 17034 components: - type: Transform - pos: 72.5,-38.5 + pos: -41.5,-37.5 parent: 2 - - uid: 17451 + - uid: 17035 components: - type: Transform - pos: 71.5,-38.5 + pos: -41.5,-36.5 parent: 2 - - uid: 17452 + - uid: 17036 components: - type: Transform - pos: 71.5,-37.5 + pos: -41.5,-35.5 parent: 2 - - uid: 17453 + - uid: 17037 components: - type: Transform - pos: 71.5,-36.5 + pos: -44.5,-64.5 parent: 2 - - uid: 17454 + - uid: 17038 components: - type: Transform - pos: 71.5,-35.5 + pos: -44.5,-65.5 parent: 2 - - uid: 17455 + - uid: 17039 components: - type: Transform - pos: 71.5,-34.5 + pos: -43.5,-65.5 parent: 2 - - uid: 17456 + - uid: 17040 components: - type: Transform - pos: 71.5,-33.5 + pos: -42.5,-65.5 parent: 2 - - uid: 17457 + - uid: 17041 components: - type: Transform - pos: 71.5,-32.5 + pos: -41.5,-65.5 parent: 2 - - uid: 17460 + - uid: 17042 components: - type: Transform - pos: 71.5,-31.5 + pos: -40.5,-65.5 parent: 2 - - uid: 17461 + - uid: 17043 components: - type: Transform - pos: 71.5,-30.5 + pos: -39.5,-65.5 parent: 2 - - uid: 17462 + - uid: 17044 components: - type: Transform - pos: 71.5,-29.5 + pos: -38.5,-65.5 parent: 2 - - uid: 17463 + - uid: 17045 components: - type: Transform - pos: 71.5,-28.5 + pos: -37.5,-65.5 parent: 2 - - uid: 17464 + - uid: 17046 components: - type: Transform - pos: 71.5,-27.5 + pos: -37.5,-66.5 parent: 2 - - uid: 17465 + - uid: 17047 components: - type: Transform - pos: 71.5,-26.5 + pos: -37.5,-67.5 parent: 2 - - uid: 17466 + - uid: 17048 components: - type: Transform - pos: 70.5,-26.5 + pos: -37.5,-68.5 parent: 2 - - uid: 17467 + - uid: 17049 components: - type: Transform - pos: 70.5,-25.5 + pos: -37.5,-69.5 parent: 2 - - uid: 17468 + - uid: 17050 components: - type: Transform - pos: 70.5,-24.5 + pos: -37.5,-70.5 parent: 2 - - uid: 17469 + - uid: 17051 components: - type: Transform - pos: 70.5,-23.5 + pos: -36.5,-70.5 parent: 2 - - uid: 17470 + - uid: 17052 components: - type: Transform - pos: 70.5,-22.5 + pos: -35.5,-70.5 parent: 2 - - uid: 17476 + - uid: 17054 components: - type: Transform - pos: 69.5,-22.5 + pos: -34.5,-70.5 parent: 2 - - uid: 17477 + - uid: 17055 components: - type: Transform - pos: 68.5,-22.5 + pos: -33.5,-70.5 parent: 2 - - uid: 17478 + - uid: 17056 components: - type: Transform - pos: 67.5,-22.5 + pos: -32.5,-70.5 parent: 2 - - uid: 17479 + - uid: 17057 components: - type: Transform - pos: 66.5,-22.5 + pos: -31.5,-70.5 parent: 2 - - uid: 17480 + - uid: 17058 components: - type: Transform - pos: 65.5,-22.5 + pos: -30.5,-70.5 parent: 2 - - uid: 17496 + - uid: 17059 components: - type: Transform - pos: 65.5,-21.5 + pos: -30.5,-71.5 parent: 2 - - uid: 17497 + - uid: 17060 components: - type: Transform - pos: 65.5,-20.5 + pos: -30.5,-72.5 parent: 2 - - uid: 17498 + - uid: 17061 components: - type: Transform - pos: 65.5,-19.5 + pos: -29.5,-72.5 parent: 2 - - uid: 17514 + - uid: 17062 components: - type: Transform - pos: 64.5,-19.5 + pos: -28.5,-72.5 parent: 2 - - uid: 17515 + - uid: 17063 components: - type: Transform - pos: 64.5,-18.5 + pos: -27.5,-72.5 parent: 2 - - uid: 17516 + - uid: 17064 components: - type: Transform - pos: 64.5,-17.5 + pos: -26.5,-72.5 parent: 2 - - uid: 17517 + - uid: 17065 components: - type: Transform - pos: 64.5,-16.5 + pos: -25.5,-72.5 parent: 2 - - uid: 17518 + - uid: 17066 components: - type: Transform - pos: 64.5,-15.5 + pos: -24.5,-72.5 parent: 2 - - uid: 17519 + - uid: 17067 components: - type: Transform - pos: 63.5,-15.5 + pos: -24.5,-71.5 parent: 2 - - uid: 17523 + - uid: 17068 components: - type: Transform - pos: 63.5,-14.5 + pos: -23.5,-71.5 parent: 2 - - uid: 17524 + - uid: 17069 components: - type: Transform - pos: 63.5,-13.5 + pos: -23.5,-70.5 parent: 2 - - uid: 17525 + - uid: 17070 components: - type: Transform - pos: 63.5,-12.5 + pos: -22.5,-70.5 parent: 2 - - uid: 17526 + - uid: 17071 components: - type: Transform - pos: 63.5,-11.5 + pos: -21.5,-70.5 parent: 2 - - uid: 17527 + - uid: 17072 components: - type: Transform - pos: 63.5,-10.5 + pos: -20.5,-70.5 parent: 2 - - uid: 17528 + - uid: 17073 components: - type: Transform - pos: 62.5,-10.5 + pos: -19.5,-70.5 parent: 2 - - uid: 17529 + - uid: 17074 components: - type: Transform - pos: 61.5,-10.5 + pos: -18.5,-70.5 parent: 2 - - uid: 17530 + - uid: 17075 components: - type: Transform - pos: 61.5,-9.5 + pos: -17.5,-70.5 parent: 2 - - uid: 17531 + - uid: 17076 components: - type: Transform - pos: 60.5,-9.5 + pos: -17.5,-69.5 parent: 2 - - uid: 17532 + - uid: 17077 components: - type: Transform - pos: 59.5,-9.5 + pos: -17.5,-68.5 parent: 2 - - uid: 17533 + - uid: 17078 components: - type: Transform - pos: 58.5,-9.5 + pos: -17.5,-67.5 parent: 2 - - uid: 17534 + - uid: 17079 components: - type: Transform - pos: 58.5,-8.5 + pos: -16.5,-67.5 parent: 2 - - uid: 17535 + - uid: 17080 components: - type: Transform - pos: 58.5,-7.5 + pos: -15.5,-67.5 parent: 2 - - uid: 17537 + - uid: 17081 components: - type: Transform - pos: 58.5,-6.5 + pos: -14.5,-67.5 parent: 2 - - uid: 17538 + - uid: 17082 components: - type: Transform - pos: 58.5,-5.5 + pos: -14.5,-66.5 parent: 2 - - uid: 17539 + - uid: 17083 components: - type: Transform - pos: 58.5,-4.5 + pos: -13.5,-66.5 parent: 2 - - uid: 17540 + - uid: 17084 components: - type: Transform - pos: 58.5,-3.5 + pos: -12.5,-66.5 parent: 2 - - uid: 17545 + - uid: 17085 components: - type: Transform - pos: 45.5,4.5 + pos: -11.5,-66.5 parent: 2 - - uid: 17547 + - uid: 17086 components: - type: Transform - pos: 46.5,4.5 + pos: -11.5,-67.5 parent: 2 - - uid: 17548 + - uid: 17087 components: - type: Transform - pos: 47.5,4.5 + pos: -11.5,-68.5 parent: 2 - - uid: 17549 + - uid: 17088 components: - type: Transform - pos: 48.5,4.5 + pos: -11.5,-69.5 parent: 2 - - uid: 17550 + - uid: 17094 components: - type: Transform - pos: 49.5,4.5 + pos: -24.5,-55.5 parent: 2 - - uid: 17551 + - uid: 17095 components: - type: Transform - pos: 50.5,4.5 + pos: -23.5,-55.5 parent: 2 - - uid: 17552 + - uid: 17096 components: - type: Transform - pos: 51.5,4.5 + pos: -22.5,-55.5 parent: 2 - - uid: 17553 + - uid: 17097 components: - type: Transform - pos: 52.5,4.5 + pos: -21.5,-55.5 parent: 2 - - uid: 17554 + - uid: 17098 components: - type: Transform - pos: 53.5,4.5 + pos: -20.5,-55.5 parent: 2 - - uid: 17555 + - uid: 17099 components: - type: Transform - pos: 54.5,4.5 + pos: -19.5,-55.5 parent: 2 - - uid: 17556 + - uid: 17100 components: - type: Transform - pos: 54.5,3.5 + pos: -18.5,-55.5 parent: 2 - - uid: 17557 + - uid: 17101 components: - type: Transform - pos: 54.5,2.5 + pos: -17.5,-55.5 parent: 2 - - uid: 17558 + - uid: 17102 components: - type: Transform - pos: 54.5,1.5 + pos: -16.5,-55.5 parent: 2 - - uid: 17559 + - uid: 17103 components: - type: Transform - pos: 54.5,0.5 + pos: -15.5,-55.5 parent: 2 - - uid: 17560 + - uid: 17104 components: - type: Transform - pos: 54.5,-0.5 + pos: -14.5,-55.5 parent: 2 - - uid: 17561 + - uid: 17105 components: - type: Transform - pos: 54.5,-1.5 + pos: -13.5,-55.5 parent: 2 - - uid: 17562 + - uid: 17106 components: - type: Transform - pos: 54.5,-2.5 + pos: -12.5,-55.5 parent: 2 - - uid: 17563 + - uid: 17107 components: - type: Transform - pos: 55.5,-2.5 + pos: -12.5,-56.5 parent: 2 - - uid: 17564 + - uid: 17108 components: - type: Transform - pos: 56.5,-2.5 + pos: -12.5,-57.5 parent: 2 - - uid: 17565 + - uid: 17109 components: - type: Transform - pos: 57.5,-2.5 + pos: -12.5,-58.5 parent: 2 - - uid: 17566 + - uid: 17110 components: - type: Transform - pos: 58.5,-2.5 + pos: -12.5,-59.5 parent: 2 - - uid: 17595 + - uid: 17111 components: - type: Transform - pos: -49.5,23.5 + pos: -12.5,-60.5 parent: 2 - - uid: 17596 + - uid: 17112 components: - type: Transform - pos: -49.5,24.5 + pos: -12.5,-61.5 parent: 2 - - uid: 17597 + - uid: 17113 components: - type: Transform - pos: -48.5,24.5 + pos: -12.5,-62.5 parent: 2 - - uid: 17598 + - uid: 17114 components: - type: Transform - pos: -47.5,24.5 + pos: -12.5,-63.5 parent: 2 - - uid: 17599 + - uid: 17115 components: - type: Transform - pos: -46.5,24.5 + pos: -12.5,-64.5 parent: 2 - - uid: 17600 + - uid: 17116 components: - type: Transform - pos: -46.5,23.5 + pos: -12.5,-65.5 parent: 2 - - uid: 17640 + - uid: 17118 components: - type: Transform - pos: -0.5,-36.5 + pos: -10.5,-69.5 parent: 2 - - uid: 17641 + - uid: 17119 components: - type: Transform - pos: -1.5,-36.5 + pos: -9.5,-69.5 parent: 2 - - uid: 17643 + - uid: 17120 components: - type: Transform - pos: -1.5,-37.5 + pos: -8.5,-69.5 parent: 2 - - uid: 17660 + - uid: 17121 components: - type: Transform - pos: -1.5,-38.5 + pos: -7.5,-69.5 parent: 2 - - uid: 17661 + - uid: 17122 components: - type: Transform - pos: -0.5,-38.5 + pos: -5.5,-69.5 parent: 2 - - uid: 17662 + - uid: 17123 components: - type: Transform - pos: 0.5,-38.5 + pos: -4.5,-69.5 parent: 2 - - uid: 17668 + - uid: 17124 components: - type: Transform - pos: 0.5,-36.5 + pos: -3.5,-69.5 parent: 2 - - uid: 17669 + - uid: 17125 components: - type: Transform - pos: 0.5,-37.5 + pos: -3.5,-70.5 parent: 2 - - uid: 17676 + - uid: 17130 components: - type: Transform - pos: -0.5,-39.5 + pos: -2.5,-70.5 parent: 2 - - uid: 17677 + - uid: 17131 components: - type: Transform - pos: -0.5,-40.5 + pos: -1.5,-70.5 parent: 2 - - uid: 17678 + - uid: 17132 components: - type: Transform - pos: -0.5,-41.5 + pos: -0.5,-70.5 parent: 2 - - uid: 17679 + - uid: 17133 components: - type: Transform - pos: -0.5,-42.5 + pos: 0.5,-70.5 parent: 2 - - uid: 17723 + - uid: 17134 components: - type: Transform - pos: -11.5,-56.5 + pos: 1.5,-70.5 parent: 2 - - uid: 17724 + - uid: 17135 components: - type: Transform - pos: -10.5,-56.5 + pos: 2.5,-70.5 parent: 2 - - uid: 17725 + - uid: 17136 components: - type: Transform - pos: -10.5,-55.5 + pos: 3.5,-70.5 parent: 2 - - uid: 17726 + - uid: 17137 components: - type: Transform - pos: -10.5,-54.5 + pos: 4.5,-70.5 parent: 2 - - uid: 17727 + - uid: 17138 components: - type: Transform - pos: -9.5,-54.5 + pos: 5.5,-70.5 parent: 2 - - uid: 17728 + - uid: 17139 components: - type: Transform - pos: -9.5,-53.5 + pos: 6.5,-70.5 parent: 2 - - uid: 17729 + - uid: 17140 components: - type: Transform - pos: -9.5,-52.5 + pos: 7.5,-70.5 parent: 2 - - uid: 17730 + - uid: 17141 components: - type: Transform - pos: -9.5,-51.5 + pos: 8.5,-70.5 parent: 2 - - uid: 17731 + - uid: 17142 components: - type: Transform - pos: -8.5,-51.5 + pos: 9.5,-70.5 parent: 2 - - uid: 17732 + - uid: 17143 components: - type: Transform - pos: -7.5,-51.5 + pos: 10.5,-70.5 parent: 2 - - uid: 17733 + - uid: 17144 components: - type: Transform - pos: -6.5,-51.5 + pos: 11.5,-70.5 parent: 2 - - uid: 17734 + - uid: 17145 components: - type: Transform - pos: -5.5,-51.5 + pos: 12.5,-70.5 parent: 2 - - uid: 17735 + - uid: 17146 components: - type: Transform - pos: -4.5,-51.5 + pos: 13.5,-70.5 parent: 2 - - uid: 17736 + - uid: 17147 components: - type: Transform - pos: -4.5,-50.5 + pos: 14.5,-70.5 parent: 2 - - uid: 17737 + - uid: 17148 components: - type: Transform - pos: -4.5,-49.5 + pos: 15.5,-70.5 parent: 2 - - uid: 17738 + - uid: 17149 components: - type: Transform - pos: -4.5,-48.5 + pos: 16.5,-70.5 parent: 2 - - uid: 17739 + - uid: 17150 components: - type: Transform - pos: -4.5,-47.5 + pos: 17.5,-70.5 parent: 2 - - uid: 17740 + - uid: 17151 components: - type: Transform - pos: -4.5,-46.5 + pos: 18.5,-70.5 parent: 2 - - uid: 17741 + - uid: 17156 components: - type: Transform - pos: -4.5,-45.5 + pos: 18.5,-69.5 parent: 2 - - uid: 17742 + - uid: 17157 components: - type: Transform - pos: -4.5,-44.5 + pos: 18.5,-68.5 parent: 2 - - uid: 17743 + - uid: 17158 components: - type: Transform - pos: -4.5,-43.5 + pos: 18.5,-67.5 parent: 2 - - uid: 17744 + - uid: 17159 components: - type: Transform - pos: -3.5,-43.5 + pos: 18.5,-66.5 parent: 2 - - uid: 17745 + - uid: 17160 components: - type: Transform - pos: -2.5,-43.5 + pos: 29.5,-64.5 parent: 2 - - uid: 17746 + - uid: 17161 components: - type: Transform - pos: -1.5,-43.5 + pos: 29.5,-65.5 parent: 2 - - uid: 17747 + - uid: 17163 components: - type: Transform - pos: -0.5,-43.5 + pos: 28.5,-64.5 parent: 2 - - uid: 17907 + - uid: 17164 components: - type: Transform - pos: -51.5,37.5 + pos: 27.5,-64.5 parent: 2 - - uid: 17908 + - uid: 17165 components: - type: Transform - pos: -50.5,37.5 + pos: 26.5,-64.5 parent: 2 - - uid: 17909 + - uid: 17166 components: - type: Transform - pos: -50.5,36.5 + pos: 25.5,-64.5 parent: 2 - - uid: 17910 + - uid: 17167 components: - type: Transform - pos: -50.5,35.5 + pos: 24.5,-64.5 parent: 2 - - uid: 17911 + - uid: 17168 components: - type: Transform - pos: -50.5,34.5 + pos: 24.5,-65.5 parent: 2 - - uid: 17912 + - uid: 17177 components: - type: Transform - pos: -51.5,34.5 + pos: 18.5,-65.5 parent: 2 - - uid: 17913 + - uid: 17178 components: - type: Transform - pos: -52.5,34.5 + pos: 18.5,-64.5 parent: 2 - - uid: 17914 + - uid: 17179 components: - type: Transform - pos: -53.5,34.5 + pos: 18.5,-63.5 parent: 2 - - uid: 17915 + - uid: 17180 components: - type: Transform - pos: -49.5,34.5 + pos: 18.5,-62.5 parent: 2 - - uid: 17916 + - uid: 17181 components: - type: Transform - pos: -48.5,34.5 + pos: 18.5,-61.5 parent: 2 - - uid: 17917 + - uid: 17182 components: - type: Transform - pos: -47.5,34.5 + pos: 18.5,-60.5 parent: 2 - - uid: 17919 + - uid: 17183 components: - type: Transform - pos: -47.5,35.5 + pos: 18.5,-59.5 parent: 2 - - uid: 17920 + - uid: 17191 components: - type: Transform - pos: -47.5,36.5 + pos: 19.5,-59.5 parent: 2 - - uid: 17921 + - uid: 17192 components: - type: Transform - pos: -47.5,37.5 + pos: 19.5,-58.5 parent: 2 - - uid: 17973 + - uid: 17193 components: - type: Transform - pos: -39.5,27.5 + pos: 19.5,-57.5 parent: 2 - - uid: 17974 + - uid: 17194 components: - type: Transform - pos: -38.5,27.5 + pos: 19.5,-56.5 parent: 2 - - uid: 17975 + - uid: 17195 components: - type: Transform - pos: -37.5,27.5 + pos: 19.5,-55.5 parent: 2 - - uid: 17986 + - uid: 17196 components: - type: Transform - pos: -37.5,28.5 + pos: 19.5,-54.5 parent: 2 - - uid: 17987 + - uid: 17197 components: - type: Transform - pos: -37.5,29.5 + pos: 19.5,-53.5 parent: 2 - - uid: 17988 + - uid: 17198 components: - type: Transform - pos: -37.5,30.5 + pos: 19.5,-52.5 parent: 2 - - uid: 17989 + - uid: 17199 components: - type: Transform - pos: -37.5,31.5 + pos: 19.5,-51.5 parent: 2 - - uid: 17990 + - uid: 17200 components: - type: Transform - pos: -37.5,32.5 + pos: 19.5,-50.5 parent: 2 - - uid: 17992 + - uid: 17201 components: - type: Transform - pos: -38.5,32.5 + pos: 19.5,-49.5 parent: 2 - - uid: 17993 + - uid: 17202 components: - type: Transform - pos: -39.5,32.5 + pos: 19.5,-48.5 parent: 2 - - uid: 17994 + - uid: 17203 components: - type: Transform - pos: -40.5,32.5 + pos: 19.5,-47.5 parent: 2 - - uid: 17995 + - uid: 17204 components: - type: Transform - pos: -41.5,32.5 + pos: 19.5,-46.5 parent: 2 - - uid: 17996 + - uid: 17205 components: - type: Transform - pos: -42.5,32.5 + pos: 19.5,-45.5 parent: 2 - - uid: 17997 + - uid: 17206 components: - type: Transform - pos: -43.5,32.5 + pos: 19.5,-44.5 parent: 2 - - uid: 17999 + - uid: 17207 components: - type: Transform - pos: -43.5,33.5 + pos: 19.5,-43.5 parent: 2 - - uid: 18000 + - uid: 17208 components: - type: Transform - pos: -44.5,33.5 + pos: 19.5,-42.5 parent: 2 - - uid: 18003 + - uid: 17209 components: - type: Transform - pos: -45.5,33.5 + pos: 19.5,-41.5 parent: 2 - - uid: 18004 + - uid: 17210 components: - type: Transform - pos: -45.5,34.5 + pos: 19.5,-40.5 parent: 2 - - uid: 18006 + - uid: 17215 components: - type: Transform - pos: -46.5,34.5 + pos: 19.5,-39.5 parent: 2 - - uid: 18029 + - uid: 17216 components: - type: Transform - pos: -47.5,39.5 + pos: 20.5,-39.5 parent: 2 - - uid: 18031 + - uid: 17217 components: - type: Transform - pos: -47.5,38.5 + pos: 21.5,-39.5 parent: 2 - - uid: 18299 + - uid: 17218 components: - type: Transform - pos: 45.5,73.5 + pos: 22.5,-39.5 parent: 2 - - uid: 18633 + - uid: 17219 components: - type: Transform - pos: 58.5,37.5 + pos: 22.5,-38.5 parent: 2 - - uid: 18634 + - uid: 17224 components: - type: Transform - pos: 58.5,36.5 + pos: 49.5,-47.5 parent: 2 - - uid: 22083 + - uid: 17226 components: - type: Transform - pos: -50.5,50.5 + pos: 48.5,-46.5 parent: 2 - - uid: 47317 + - uid: 17227 components: - type: Transform - pos: 1.5,3.5 - parent: 32764 - - uid: 47318 + pos: 48.5,-45.5 + parent: 2 + - uid: 17228 components: - type: Transform - pos: 0.5,3.5 - parent: 32764 - - uid: 47319 + pos: 48.5,-44.5 + parent: 2 + - uid: 17229 components: - type: Transform - pos: -0.5,3.5 - parent: 32764 - - uid: 47320 + pos: 48.5,-43.5 + parent: 2 + - uid: 17230 components: - type: Transform - pos: 0.5,2.5 - parent: 32764 - - uid: 47321 + pos: 33.5,-36.5 + parent: 2 + - uid: 17231 components: - type: Transform - pos: 0.5,1.5 - parent: 32764 - - uid: 47322 + pos: 34.5,-36.5 + parent: 2 + - uid: 17232 components: - type: Transform - pos: 1.5,1.5 - parent: 32764 - - uid: 47323 + pos: 47.5,-43.5 + parent: 2 + - uid: 17233 components: - type: Transform - pos: -0.5,1.5 - parent: 32764 - - uid: 47365 + pos: 46.5,-43.5 + parent: 2 + - uid: 17234 components: - type: Transform - pos: 0.5,-0.5 - parent: 44868 - - uid: 47366 + pos: 45.5,-43.5 + parent: 2 + - uid: 17235 components: - type: Transform - pos: 1.5,-0.5 - parent: 44868 - - uid: 47367 + pos: 44.5,-43.5 + parent: 2 + - uid: 17236 components: - type: Transform - pos: 2.5,-0.5 - parent: 44868 - - uid: 47368 + pos: 43.5,-43.5 + parent: 2 + - uid: 17237 components: - type: Transform - pos: 1.5,-1.5 - parent: 44868 - - uid: 47369 + pos: 42.5,-43.5 + parent: 2 + - uid: 17238 components: - type: Transform - pos: 1.5,-2.5 - parent: 44868 - - uid: 47370 + pos: 41.5,-43.5 + parent: 2 + - uid: 17239 components: - type: Transform - pos: 1.5,-3.5 - parent: 44868 - - uid: 47371 + pos: 40.5,-43.5 + parent: 2 + - uid: 17240 components: - type: Transform - pos: 2.5,-3.5 - parent: 44868 - - uid: 47372 + pos: 39.5,-43.5 + parent: 2 + - uid: 17241 components: - type: Transform - pos: 3.5,-3.5 - parent: 44868 - - uid: 47373 + pos: 39.5,-44.5 + parent: 2 + - uid: 17242 components: - type: Transform - pos: 1.5,-4.5 - parent: 44868 - - uid: 47374 + pos: 38.5,-44.5 + parent: 2 + - uid: 17243 components: - type: Transform - pos: 1.5,-5.5 - parent: 44868 - - uid: 47375 + pos: 37.5,-44.5 + parent: 2 + - uid: 17244 components: - type: Transform - pos: 1.5,-6.5 - parent: 44868 - - uid: 47376 + pos: 36.5,-44.5 + parent: 2 + - uid: 17245 components: - type: Transform - pos: 2.5,-6.5 - parent: 44868 - - uid: 47377 + pos: 35.5,-44.5 + parent: 2 + - uid: 17246 components: - type: Transform - pos: 0.5,-6.5 - parent: 44868 - - uid: 47489 + pos: 35.5,-43.5 + parent: 2 + - uid: 17247 components: - type: Transform - pos: -2.5,2.5 - parent: 56108 - - uid: 47490 + pos: 35.5,-42.5 + parent: 2 + - uid: 17248 components: - type: Transform - pos: -1.5,2.5 - parent: 56108 - - uid: 47491 + pos: 35.5,-41.5 + parent: 2 + - uid: 17249 components: - type: Transform - pos: -0.5,2.5 - parent: 56108 - - uid: 47492 + pos: 35.5,-40.5 + parent: 2 + - uid: 17250 components: - type: Transform - pos: 0.5,2.5 - parent: 56108 - - uid: 47493 + pos: 35.5,-39.5 + parent: 2 + - uid: 17251 components: - type: Transform - pos: 1.5,2.5 - parent: 56108 - - uid: 47494 + pos: 35.5,-38.5 + parent: 2 + - uid: 17252 components: - type: Transform - pos: 2.5,2.5 - parent: 56108 - - uid: 47495 + pos: 34.5,-38.5 + parent: 2 + - uid: 17253 components: - type: Transform - pos: 3.5,2.5 - parent: 56108 - - uid: 47720 + pos: 34.5,-37.5 + parent: 2 + - uid: 17254 components: - type: Transform - pos: -40.5,-28.5 + pos: 33.5,-38.5 parent: 2 - - uid: 47721 + - uid: 17256 components: - type: Transform - pos: -39.5,-27.5 + pos: 32.5,-38.5 parent: 2 - - uid: 47722 + - uid: 17259 components: - type: Transform - pos: -39.5,-28.5 + pos: 32.5,-37.5 parent: 2 - - uid: 47723 + - uid: 17260 components: - type: Transform - pos: -39.5,-29.5 + pos: 24.5,-31.5 parent: 2 -- proto: CableHVStack - entities: - - uid: 26013 + - uid: 17261 components: - type: Transform - pos: 15.368215,9.651894 + pos: -0.5,-21.5 parent: 2 - - uid: 47710 + - uid: 17262 components: - type: Transform - pos: 36.337772,-18.25822 + pos: 31.5,-37.5 parent: 2 -- proto: CableHVStack1 - entities: - - uid: 7618 + - uid: 17263 components: - type: Transform - pos: 53.91986,-57.643635 + pos: 30.5,-37.5 parent: 2 - - uid: 7619 + - uid: 17264 components: - type: Transform - pos: 52.66986,-58.62801 + pos: 29.5,-37.5 parent: 2 - - uid: 7620 + - uid: 17265 components: - type: Transform - pos: 52.622986,-56.878014 + pos: 28.5,-37.5 parent: 2 - - uid: 42913 + - uid: 17266 components: - type: Transform - pos: -52.3747,60.473495 + pos: 27.5,-37.5 parent: 2 - - uid: 51209 + - uid: 17267 components: - type: Transform - pos: 23.77287,-65.90149 + pos: 26.5,-37.5 parent: 2 - - uid: 51210 + - uid: 17268 components: - type: Transform - pos: 22.600994,-66.510864 + pos: 25.5,-37.5 parent: 2 -- proto: CableHVStack10 - entities: - - uid: 30431 + - uid: 17269 components: - type: Transform - pos: 58.51976,-24.583872 + pos: 24.5,-37.5 parent: 2 - - uid: 36098 + - uid: 17271 components: - type: Transform - pos: 39.046944,13.800685 + pos: 24.5,-36.5 parent: 2 - - uid: 43342 + - uid: 17272 components: - type: Transform - pos: 49.68145,75.66459 + pos: 24.5,-35.5 parent: 2 - - uid: 43967 + - uid: 17273 components: - type: Transform - pos: -26.47073,4.974503 + pos: 24.5,-34.5 parent: 2 - - uid: 45374 + - uid: 17274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.152772,-1.4096315 - parent: 43176 - - uid: 55745 + pos: -0.5,-22.5 + parent: 2 + - uid: 17275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.13832,30.406006 - parent: 45711 - - uid: 55746 + pos: 24.5,-33.5 + parent: 2 + - uid: 17276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.81024,30.39032 - parent: 45711 -- proto: CableMV - entities: - - uid: 600 + pos: 24.5,-32.5 + parent: 2 + - uid: 17277 components: - type: Transform - pos: 22.5,-20.5 + pos: 22.5,-37.5 parent: 2 - - uid: 1066 + - uid: 17278 components: - type: Transform - pos: 56.5,-31.5 + pos: 22.5,-36.5 parent: 2 - - uid: 1237 + - uid: 17279 components: - type: Transform - pos: 40.5,-11.5 + pos: 22.5,-35.5 parent: 2 - - uid: 5464 + - uid: 17280 components: - type: Transform - pos: 56.5,-34.5 + pos: 22.5,-34.5 parent: 2 - - uid: 5636 + - uid: 17281 components: - type: Transform - pos: 40.5,35.5 + pos: 23.5,-34.5 parent: 2 - - uid: 5637 + - uid: 17282 components: - type: Transform - pos: -33.5,-70.5 + pos: 49.5,-43.5 parent: 2 - - uid: 5642 + - uid: 17283 components: - type: Transform - pos: -75.5,7.5 + pos: 50.5,-43.5 parent: 2 - - uid: 5643 + - uid: 17284 components: - type: Transform - pos: -75.5,5.5 + pos: 51.5,-43.5 parent: 2 - - uid: 6171 + - uid: 17285 components: - type: Transform - pos: -6.5,6.5 - parent: 45711 - - uid: 6172 + pos: 52.5,-43.5 + parent: 2 + - uid: 17286 components: - type: Transform - pos: -6.5,7.5 - parent: 45711 - - uid: 6173 + pos: 53.5,-43.5 + parent: 2 + - uid: 17287 components: - type: Transform - pos: -6.5,8.5 - parent: 45711 - - uid: 6175 + pos: 54.5,-43.5 + parent: 2 + - uid: 17292 components: - type: Transform - pos: -6.5,9.5 - parent: 45711 - - uid: 6179 + pos: -0.5,-23.5 + parent: 2 + - uid: 17293 components: - type: Transform - pos: -6.5,10.5 - parent: 45711 - - uid: 6180 + pos: -0.5,-24.5 + parent: 2 + - uid: 17294 components: - type: Transform - pos: -6.5,11.5 - parent: 45711 - - uid: 6181 + pos: -0.5,-25.5 + parent: 2 + - uid: 17295 components: - type: Transform - pos: -6.5,12.5 - parent: 45711 - - uid: 6183 + pos: -0.5,-26.5 + parent: 2 + - uid: 17296 components: - type: Transform - pos: -6.5,13.5 - parent: 45711 - - uid: 6185 + pos: -0.5,-27.5 + parent: 2 + - uid: 17297 components: - type: Transform - pos: -7.5,10.5 - parent: 45711 - - uid: 6187 + pos: -0.5,-28.5 + parent: 2 + - uid: 17298 components: - type: Transform - pos: -8.5,10.5 - parent: 45711 - - uid: 6189 + pos: -0.5,-29.5 + parent: 2 + - uid: 17300 components: - type: Transform - pos: -9.5,10.5 - parent: 45711 - - uid: 6190 + pos: -0.5,-30.5 + parent: 2 + - uid: 17301 components: - type: Transform - pos: -10.5,10.5 - parent: 45711 - - uid: 6191 + pos: -0.5,-31.5 + parent: 2 + - uid: 17302 components: - type: Transform - pos: -10.5,9.5 - parent: 45711 - - uid: 6192 + pos: 24.5,-30.5 + parent: 2 + - uid: 17303 components: - type: Transform - pos: -11.5,9.5 - parent: 45711 - - uid: 6193 + pos: 24.5,-29.5 + parent: 2 + - uid: 17304 components: - type: Transform - pos: -11.5,8.5 - parent: 45711 - - uid: 6194 + pos: 23.5,-29.5 + parent: 2 + - uid: 17305 components: - type: Transform - pos: -12.5,8.5 - parent: 45711 - - uid: 6195 + pos: 22.5,-29.5 + parent: 2 + - uid: 17306 components: - type: Transform - pos: -12.5,7.5 - parent: 45711 - - uid: 6196 + pos: 21.5,-29.5 + parent: 2 + - uid: 17307 components: - type: Transform - pos: -13.5,7.5 - parent: 45711 - - uid: 6197 + pos: 20.5,-29.5 + parent: 2 + - uid: 17308 components: - type: Transform - pos: -13.5,6.5 - parent: 45711 - - uid: 6198 + pos: 19.5,-29.5 + parent: 2 + - uid: 17309 components: - type: Transform - pos: -13.5,5.5 - parent: 45711 - - uid: 6199 + pos: 18.5,-29.5 + parent: 2 + - uid: 17310 components: - type: Transform - pos: -13.5,4.5 - parent: 45711 - - uid: 6200 + pos: 17.5,-29.5 + parent: 2 + - uid: 17311 components: - type: Transform - pos: -13.5,3.5 - parent: 45711 - - uid: 6201 + pos: 16.5,-29.5 + parent: 2 + - uid: 17312 components: - type: Transform - pos: -14.5,3.5 - parent: 45711 - - uid: 6202 + pos: 15.5,-29.5 + parent: 2 + - uid: 17313 components: - type: Transform - pos: -15.5,3.5 - parent: 45711 - - uid: 6203 + pos: 14.5,-29.5 + parent: 2 + - uid: 17314 components: - type: Transform - pos: -16.5,3.5 - parent: 45711 - - uid: 6204 + pos: 13.5,-29.5 + parent: 2 + - uid: 17315 components: - type: Transform - pos: -17.5,3.5 - parent: 45711 - - uid: 6205 + pos: 12.5,-29.5 + parent: 2 + - uid: 17316 components: - type: Transform - pos: -18.5,3.5 - parent: 45711 - - uid: 6206 + pos: 11.5,-29.5 + parent: 2 + - uid: 17317 components: - type: Transform - pos: -11.5,-9.5 - parent: 45711 - - uid: 6207 + pos: 10.5,-29.5 + parent: 2 + - uid: 17318 components: - type: Transform - pos: -11.5,-8.5 - parent: 45711 - - uid: 6208 + pos: 9.5,-29.5 + parent: 2 + - uid: 17319 components: - type: Transform - pos: -11.5,-7.5 - parent: 45711 - - uid: 6209 + pos: 8.5,-29.5 + parent: 2 + - uid: 17320 components: - type: Transform - pos: -11.5,-6.5 - parent: 45711 - - uid: 6210 + pos: 8.5,-30.5 + parent: 2 + - uid: 17326 components: - type: Transform - pos: -11.5,-5.5 - parent: 45711 - - uid: 6211 + pos: 7.5,-30.5 + parent: 2 + - uid: 17327 components: - type: Transform - pos: -11.5,-4.5 - parent: 45711 - - uid: 6212 + pos: 6.5,-30.5 + parent: 2 + - uid: 17328 components: - type: Transform - pos: -11.5,-3.5 - parent: 45711 - - uid: 6213 + pos: 5.5,-30.5 + parent: 2 + - uid: 17329 components: - type: Transform - pos: -11.5,-2.5 - parent: 45711 - - uid: 6214 + pos: 4.5,-30.5 + parent: 2 + - uid: 17330 components: - type: Transform - pos: -11.5,-1.5 - parent: 45711 - - uid: 6215 + pos: 3.5,-30.5 + parent: 2 + - uid: 17331 components: - type: Transform - pos: -11.5,-0.5 - parent: 45711 - - uid: 6216 + pos: 2.5,-30.5 + parent: 2 + - uid: 17332 components: - type: Transform - pos: -12.5,-0.5 - parent: 45711 - - uid: 6217 + pos: 1.5,-30.5 + parent: 2 + - uid: 17333 components: - type: Transform - pos: -13.5,-0.5 - parent: 45711 - - uid: 6218 + pos: 0.5,-30.5 + parent: 2 + - uid: 17334 components: - type: Transform - pos: -13.5,0.5 - parent: 45711 - - uid: 6219 + pos: -0.5,-32.5 + parent: 2 + - uid: 17335 components: - type: Transform - pos: -13.5,1.5 - parent: 45711 - - uid: 6220 + pos: -0.5,-33.5 + parent: 2 + - uid: 17336 components: - type: Transform - pos: -13.5,2.5 - parent: 45711 - - uid: 6222 + pos: -0.5,-34.5 + parent: 2 + - uid: 17337 components: - type: Transform - pos: 7.5,13.5 - parent: 45711 - - uid: 6223 + pos: -0.5,-35.5 + parent: 2 + - uid: 17338 components: - type: Transform - pos: 7.5,12.5 - parent: 45711 - - uid: 6228 + pos: -16.5,-31.5 + parent: 2 + - uid: 17339 components: - type: Transform - pos: 7.5,11.5 - parent: 45711 - - uid: 6230 + pos: -17.5,-31.5 + parent: 2 + - uid: 17340 components: - type: Transform - pos: 7.5,10.5 - parent: 45711 - - uid: 6233 + pos: -18.5,-31.5 + parent: 2 + - uid: 17341 components: - type: Transform - pos: 6.5,10.5 - parent: 45711 - - uid: 6234 + pos: -19.5,-31.5 + parent: 2 + - uid: 17342 components: - type: Transform - pos: 5.5,10.5 - parent: 45711 - - uid: 6236 + pos: -20.5,-31.5 + parent: 2 + - uid: 17347 components: - type: Transform - pos: 4.5,10.5 - parent: 45711 - - uid: 6237 + pos: -22.5,-33.5 + parent: 2 + - uid: 17348 components: - type: Transform - pos: 3.5,10.5 - parent: 45711 - - uid: 6238 + pos: -21.5,-33.5 + parent: 2 + - uid: 17349 components: - type: Transform - pos: 2.5,10.5 - parent: 45711 - - uid: 6241 + pos: -21.5,-32.5 + parent: 2 + - uid: 17350 components: - type: Transform - pos: 1.5,10.5 - parent: 45711 - - uid: 6242 + pos: -21.5,-31.5 + parent: 2 + - uid: 17351 components: - type: Transform - pos: 0.5,10.5 - parent: 45711 - - uid: 6243 + pos: -10.5,-27.5 + parent: 2 + - uid: 17352 components: - type: Transform - pos: -0.5,10.5 - parent: 45711 - - uid: 6244 + pos: -11.5,-27.5 + parent: 2 + - uid: 17353 components: - type: Transform - pos: -1.5,10.5 - parent: 45711 - - uid: 6245 + pos: -12.5,-27.5 + parent: 2 + - uid: 17354 components: - type: Transform - pos: -2.5,10.5 - parent: 45711 - - uid: 6246 + pos: -13.5,-27.5 + parent: 2 + - uid: 17355 components: - type: Transform - pos: -3.5,10.5 - parent: 45711 - - uid: 6248 + pos: -14.5,-27.5 + parent: 2 + - uid: 17356 components: - type: Transform - pos: -4.5,10.5 - parent: 45711 - - uid: 6249 + pos: -15.5,-27.5 + parent: 2 + - uid: 17357 components: - type: Transform - pos: -5.5,10.5 - parent: 45711 - - uid: 6250 + pos: -16.5,-27.5 + parent: 2 + - uid: 17358 components: - type: Transform - pos: 19.5,3.5 - parent: 45711 - - uid: 6251 + pos: -17.5,-27.5 + parent: 2 + - uid: 17359 components: - type: Transform - pos: 18.5,3.5 - parent: 45711 - - uid: 6253 + pos: -18.5,-27.5 + parent: 2 + - uid: 17360 components: - type: Transform - pos: 17.5,3.5 - parent: 45711 - - uid: 6254 + pos: -19.5,-27.5 + parent: 2 + - uid: 17361 components: - type: Transform - pos: 16.5,3.5 - parent: 45711 - - uid: 6255 + pos: -20.5,-27.5 + parent: 2 + - uid: 17362 components: - type: Transform - pos: 15.5,3.5 - parent: 45711 - - uid: 6259 + pos: -21.5,-27.5 + parent: 2 + - uid: 17363 components: - type: Transform - pos: 14.5,3.5 - parent: 45711 - - uid: 6260 + pos: -21.5,-28.5 + parent: 2 + - uid: 17364 components: - type: Transform - pos: 14.5,4.5 - parent: 45711 - - uid: 6261 + pos: -21.5,-29.5 + parent: 2 + - uid: 17365 components: - type: Transform - pos: 14.5,5.5 - parent: 45711 - - uid: 6263 + pos: -21.5,-30.5 + parent: 2 + - uid: 17411 components: - type: Transform - pos: 14.5,6.5 - parent: 45711 - - uid: 6264 + pos: 54.5,-44.5 + parent: 2 + - uid: 17412 components: - type: Transform - pos: 14.5,7.5 - parent: 45711 - - uid: 6265 + pos: 54.5,-45.5 + parent: 2 + - uid: 17413 components: - type: Transform - pos: 13.5,7.5 - parent: 45711 - - uid: 6266 + pos: 54.5,-46.5 + parent: 2 + - uid: 17414 components: - type: Transform - pos: 13.5,8.5 - parent: 45711 - - uid: 6267 + pos: 54.5,-47.5 + parent: 2 + - uid: 17415 components: - type: Transform - pos: 12.5,8.5 - parent: 45711 - - uid: 6268 + pos: 54.5,-48.5 + parent: 2 + - uid: 17416 components: - type: Transform - pos: 12.5,9.5 - parent: 45711 - - uid: 6269 + pos: 54.5,-49.5 + parent: 2 + - uid: 17417 components: - type: Transform - pos: 11.5,9.5 - parent: 45711 - - uid: 6270 + pos: 54.5,-50.5 + parent: 2 + - uid: 17418 components: - type: Transform - pos: 11.5,10.5 - parent: 45711 - - uid: 6271 + pos: 54.5,-51.5 + parent: 2 + - uid: 17419 components: - type: Transform - pos: 10.5,10.5 - parent: 45711 - - uid: 6272 + pos: 55.5,-51.5 + parent: 2 + - uid: 17421 components: - type: Transform - pos: 9.5,10.5 - parent: 45711 - - uid: 6273 + pos: 56.5,-51.5 + parent: 2 + - uid: 17422 components: - type: Transform - pos: 8.5,10.5 - parent: 45711 - - uid: 6274 + pos: 57.5,-51.5 + parent: 2 + - uid: 17423 components: - type: Transform - pos: 14.5,2.5 - parent: 45711 - - uid: 6275 + pos: 58.5,-51.5 + parent: 2 + - uid: 17424 components: - type: Transform - pos: 14.5,1.5 - parent: 45711 - - uid: 6276 + pos: 59.5,-51.5 + parent: 2 + - uid: 17425 components: - type: Transform - pos: 14.5,0.5 - parent: 45711 - - uid: 6277 + pos: 60.5,-51.5 + parent: 2 + - uid: 17426 components: - type: Transform - pos: 14.5,-0.5 - parent: 45711 - - uid: 6278 + pos: 61.5,-51.5 + parent: 2 + - uid: 17427 components: - type: Transform - pos: 13.5,-0.5 - parent: 45711 - - uid: 6279 + pos: 62.5,-51.5 + parent: 2 + - uid: 17428 components: - type: Transform - pos: 12.5,-0.5 - parent: 45711 - - uid: 6280 + pos: 63.5,-51.5 + parent: 2 + - uid: 17429 components: - type: Transform - pos: 12.5,-1.5 - parent: 45711 - - uid: 6281 + pos: 64.5,-51.5 + parent: 2 + - uid: 17430 components: - type: Transform - pos: 12.5,-2.5 - parent: 45711 - - uid: 6282 + pos: 65.5,-51.5 + parent: 2 + - uid: 17431 components: - type: Transform - pos: 12.5,-3.5 - parent: 45711 - - uid: 6283 + pos: 66.5,-51.5 + parent: 2 + - uid: 17432 components: - type: Transform - pos: 12.5,-4.5 - parent: 45711 - - uid: 6284 + pos: 67.5,-51.5 + parent: 2 + - uid: 17433 components: - type: Transform - pos: 12.5,-5.5 - parent: 45711 - - uid: 6285 + pos: 68.5,-51.5 + parent: 2 + - uid: 17434 components: - type: Transform - pos: 12.5,-6.5 - parent: 45711 - - uid: 6286 + pos: 69.5,-51.5 + parent: 2 + - uid: 17435 components: - type: Transform - pos: 12.5,-7.5 - parent: 45711 - - uid: 6287 + pos: 69.5,-50.5 + parent: 2 + - uid: 17436 components: - type: Transform - pos: 12.5,-8.5 - parent: 45711 - - uid: 6288 + pos: 70.5,-50.5 + parent: 2 + - uid: 17437 components: - type: Transform - pos: 12.5,-9.5 - parent: 45711 - - uid: 6289 + pos: 70.5,-49.5 + parent: 2 + - uid: 17438 components: - type: Transform - pos: -0.5,11.5 - parent: 45711 - - uid: 6290 + pos: 71.5,-49.5 + parent: 2 + - uid: 17439 components: - type: Transform - pos: -0.5,12.5 - parent: 45711 - - uid: 6291 + pos: 71.5,-48.5 + parent: 2 + - uid: 17440 components: - type: Transform - pos: -0.5,13.5 - parent: 45711 - - uid: 6292 + pos: 71.5,-47.5 + parent: 2 + - uid: 17441 components: - type: Transform - pos: -0.5,14.5 - parent: 45711 - - uid: 6293 + pos: 71.5,-46.5 + parent: 2 + - uid: 17442 components: - type: Transform - pos: 0.5,14.5 - parent: 45711 - - uid: 6294 + pos: 71.5,-45.5 + parent: 2 + - uid: 17443 components: - type: Transform - pos: 1.5,14.5 - parent: 45711 - - uid: 6295 + pos: 71.5,-44.5 + parent: 2 + - uid: 17444 components: - type: Transform - pos: -1.5,14.5 - parent: 45711 - - uid: 6296 + pos: 71.5,-43.5 + parent: 2 + - uid: 17445 components: - type: Transform - pos: -1.5,15.5 - parent: 45711 - - uid: 6297 + pos: 71.5,-42.5 + parent: 2 + - uid: 17446 components: - type: Transform - pos: -1.5,16.5 - parent: 45711 - - uid: 6298 + pos: 71.5,-41.5 + parent: 2 + - uid: 17447 components: - type: Transform - pos: -1.5,17.5 - parent: 45711 - - uid: 6301 + pos: 71.5,-40.5 + parent: 2 + - uid: 17448 components: - type: Transform - pos: -1.5,18.5 - parent: 45711 - - uid: 6302 + pos: 72.5,-40.5 + parent: 2 + - uid: 17449 components: - type: Transform - pos: -1.5,19.5 - parent: 45711 - - uid: 6303 + pos: 72.5,-39.5 + parent: 2 + - uid: 17450 components: - type: Transform - pos: -2.5,16.5 - parent: 45711 - - uid: 6304 + pos: 72.5,-38.5 + parent: 2 + - uid: 17451 components: - type: Transform - pos: -3.5,16.5 - parent: 45711 - - uid: 6305 + pos: 71.5,-38.5 + parent: 2 + - uid: 17452 components: - type: Transform - pos: -4.5,16.5 - parent: 45711 - - uid: 6306 + pos: 71.5,-37.5 + parent: 2 + - uid: 17453 components: - type: Transform - pos: -5.5,16.5 - parent: 45711 - - uid: 6307 + pos: 71.5,-36.5 + parent: 2 + - uid: 17454 components: - type: Transform - pos: -6.5,16.5 - parent: 45711 - - uid: 6308 + pos: 71.5,-35.5 + parent: 2 + - uid: 17455 components: - type: Transform - pos: -7.5,16.5 - parent: 45711 - - uid: 6309 + pos: 71.5,-34.5 + parent: 2 + - uid: 17456 components: - type: Transform - pos: -8.5,16.5 - parent: 45711 - - uid: 6310 + pos: 71.5,-33.5 + parent: 2 + - uid: 17457 components: - type: Transform - pos: -8.5,15.5 - parent: 45711 - - uid: 6314 + pos: 71.5,-32.5 + parent: 2 + - uid: 17460 components: - type: Transform - pos: -9.5,15.5 - parent: 45711 - - uid: 6315 + pos: 71.5,-31.5 + parent: 2 + - uid: 17461 components: - type: Transform - pos: -10.5,15.5 - parent: 45711 - - uid: 6316 + pos: 71.5,-30.5 + parent: 2 + - uid: 17462 components: - type: Transform - pos: -11.5,15.5 - parent: 45711 - - uid: 6317 + pos: 71.5,-29.5 + parent: 2 + - uid: 17463 components: - type: Transform - pos: -12.5,15.5 - parent: 45711 - - uid: 6318 + pos: 71.5,-28.5 + parent: 2 + - uid: 17464 components: - type: Transform - pos: -13.5,15.5 - parent: 45711 - - uid: 6319 + pos: 71.5,-27.5 + parent: 2 + - uid: 17465 components: - type: Transform - pos: -14.5,15.5 - parent: 45711 - - uid: 6320 + pos: 71.5,-26.5 + parent: 2 + - uid: 17466 components: - type: Transform - pos: -14.5,16.5 - parent: 45711 - - uid: 6321 + pos: 70.5,-26.5 + parent: 2 + - uid: 17467 components: - type: Transform - pos: -14.5,17.5 - parent: 45711 - - uid: 6322 + pos: 70.5,-25.5 + parent: 2 + - uid: 17468 components: - type: Transform - pos: -17.5,26.5 - parent: 45711 - - uid: 6323 + pos: 70.5,-24.5 + parent: 2 + - uid: 17469 components: - type: Transform - pos: -17.5,25.5 - parent: 45711 - - uid: 6324 + pos: 70.5,-23.5 + parent: 2 + - uid: 17470 components: - type: Transform - pos: -17.5,24.5 - parent: 45711 - - uid: 6325 + pos: 70.5,-22.5 + parent: 2 + - uid: 17476 components: - type: Transform - pos: -17.5,23.5 - parent: 45711 - - uid: 6326 + pos: 69.5,-22.5 + parent: 2 + - uid: 17477 components: - type: Transform - pos: -17.5,22.5 - parent: 45711 - - uid: 6327 + pos: 68.5,-22.5 + parent: 2 + - uid: 17478 components: - type: Transform - pos: -16.5,22.5 - parent: 45711 - - uid: 6328 + pos: 67.5,-22.5 + parent: 2 + - uid: 17479 components: - type: Transform - pos: -15.5,22.5 - parent: 45711 - - uid: 6329 + pos: 66.5,-22.5 + parent: 2 + - uid: 17480 components: - type: Transform - pos: -14.5,22.5 - parent: 45711 - - uid: 6330 + pos: 65.5,-22.5 + parent: 2 + - uid: 17496 components: - type: Transform - pos: -13.5,22.5 - parent: 45711 - - uid: 6331 + pos: 65.5,-21.5 + parent: 2 + - uid: 17497 components: - type: Transform - pos: -12.5,22.5 - parent: 45711 - - uid: 6332 + pos: 65.5,-20.5 + parent: 2 + - uid: 17498 components: - type: Transform - pos: -11.5,22.5 - parent: 45711 - - uid: 6333 + pos: 65.5,-19.5 + parent: 2 + - uid: 17514 components: - type: Transform - pos: -10.5,22.5 - parent: 45711 - - uid: 6334 + pos: 64.5,-19.5 + parent: 2 + - uid: 17515 components: - type: Transform - pos: -9.5,22.5 - parent: 45711 - - uid: 6335 + pos: 64.5,-18.5 + parent: 2 + - uid: 17516 components: - type: Transform - pos: -8.5,22.5 - parent: 45711 - - uid: 6336 + pos: 64.5,-17.5 + parent: 2 + - uid: 17517 components: - type: Transform - pos: -8.5,21.5 - parent: 45711 - - uid: 6337 + pos: 64.5,-16.5 + parent: 2 + - uid: 17518 components: - type: Transform - pos: -8.5,20.5 - parent: 45711 - - uid: 6338 + pos: 64.5,-15.5 + parent: 2 + - uid: 17519 components: - type: Transform - pos: -8.5,19.5 - parent: 45711 - - uid: 6339 + pos: 63.5,-15.5 + parent: 2 + - uid: 17523 components: - type: Transform - pos: -8.5,18.5 - parent: 45711 - - uid: 6340 + pos: 63.5,-14.5 + parent: 2 + - uid: 17524 components: - type: Transform - pos: -8.5,17.5 - parent: 45711 - - uid: 6341 + pos: 63.5,-13.5 + parent: 2 + - uid: 17525 components: - type: Transform - pos: -5.5,28.5 - parent: 45711 - - uid: 6342 + pos: 63.5,-12.5 + parent: 2 + - uid: 17526 components: - type: Transform - pos: -6.5,28.5 - parent: 45711 - - uid: 6343 + pos: 63.5,-11.5 + parent: 2 + - uid: 17527 components: - type: Transform - pos: -7.5,28.5 - parent: 45711 - - uid: 6344 + pos: 63.5,-10.5 + parent: 2 + - uid: 17528 components: - type: Transform - pos: -8.5,28.5 - parent: 45711 - - uid: 6345 + pos: 62.5,-10.5 + parent: 2 + - uid: 17529 components: - type: Transform - pos: -8.5,27.5 - parent: 45711 - - uid: 6346 + pos: 61.5,-10.5 + parent: 2 + - uid: 17530 components: - type: Transform - pos: -8.5,26.5 - parent: 45711 - - uid: 6347 + pos: 61.5,-9.5 + parent: 2 + - uid: 17531 components: - type: Transform - pos: -8.5,25.5 - parent: 45711 - - uid: 6348 + pos: 60.5,-9.5 + parent: 2 + - uid: 17532 components: - type: Transform - pos: -8.5,24.5 - parent: 45711 - - uid: 6349 + pos: 59.5,-9.5 + parent: 2 + - uid: 17533 components: - type: Transform - pos: -8.5,23.5 - parent: 45711 - - uid: 6350 + pos: 58.5,-9.5 + parent: 2 + - uid: 17534 components: - type: Transform - pos: 2.5,14.5 - parent: 45711 - - uid: 6351 + pos: 58.5,-8.5 + parent: 2 + - uid: 17535 components: - type: Transform - pos: 2.5,15.5 - parent: 45711 - - uid: 6352 + pos: 58.5,-7.5 + parent: 2 + - uid: 17537 components: - type: Transform - pos: 2.5,16.5 - parent: 45711 - - uid: 6353 + pos: 58.5,-6.5 + parent: 2 + - uid: 17538 components: - type: Transform - pos: 3.5,16.5 - parent: 45711 - - uid: 6354 + pos: 58.5,-5.5 + parent: 2 + - uid: 17539 components: - type: Transform - pos: 4.5,16.5 - parent: 45711 - - uid: 6355 + pos: 58.5,-4.5 + parent: 2 + - uid: 17540 components: - type: Transform - pos: 5.5,16.5 - parent: 45711 - - uid: 6357 + pos: 58.5,-3.5 + parent: 2 + - uid: 17545 components: - type: Transform - pos: 6.5,16.5 - parent: 45711 - - uid: 6358 + pos: 45.5,4.5 + parent: 2 + - uid: 17547 components: - type: Transform - pos: 7.5,16.5 - parent: 45711 - - uid: 6359 + pos: 46.5,4.5 + parent: 2 + - uid: 17548 components: - type: Transform - pos: 8.5,16.5 - parent: 45711 - - uid: 6360 + pos: 47.5,4.5 + parent: 2 + - uid: 17549 components: - type: Transform - pos: 9.5,16.5 - parent: 45711 - - uid: 6361 + pos: 48.5,4.5 + parent: 2 + - uid: 17550 components: - type: Transform - pos: 10.5,16.5 - parent: 45711 - - uid: 6362 + pos: 49.5,4.5 + parent: 2 + - uid: 17551 components: - type: Transform - pos: 11.5,16.5 - parent: 45711 - - uid: 6363 + pos: 50.5,4.5 + parent: 2 + - uid: 17552 components: - type: Transform - pos: 12.5,16.5 - parent: 45711 - - uid: 6364 + pos: 51.5,4.5 + parent: 2 + - uid: 17553 components: - type: Transform - pos: 13.5,16.5 - parent: 45711 - - uid: 6365 + pos: 52.5,4.5 + parent: 2 + - uid: 17554 components: - type: Transform - pos: 14.5,16.5 - parent: 45711 - - uid: 6366 + pos: 53.5,4.5 + parent: 2 + - uid: 17555 components: - type: Transform - pos: 15.5,16.5 - parent: 45711 - - uid: 6367 + pos: 54.5,4.5 + parent: 2 + - uid: 17556 components: - type: Transform - pos: 16.5,16.5 - parent: 45711 - - uid: 6368 + pos: 54.5,3.5 + parent: 2 + - uid: 17557 components: - type: Transform - pos: 16.5,17.5 - parent: 45711 - - uid: 6369 + pos: 54.5,2.5 + parent: 2 + - uid: 17558 components: - type: Transform - pos: 16.5,18.5 - parent: 45711 - - uid: 6370 + pos: 54.5,1.5 + parent: 2 + - uid: 17559 components: - type: Transform - pos: 16.5,19.5 - parent: 45711 - - uid: 6371 + pos: 54.5,0.5 + parent: 2 + - uid: 17560 components: - type: Transform - pos: 17.5,16.5 - parent: 45711 - - uid: 6372 + pos: 54.5,-0.5 + parent: 2 + - uid: 17561 components: - type: Transform - pos: 18.5,16.5 - parent: 45711 - - uid: 6373 + pos: 54.5,-1.5 + parent: 2 + - uid: 17562 components: - type: Transform - pos: 19.5,16.5 - parent: 45711 - - uid: 6374 + pos: 54.5,-2.5 + parent: 2 + - uid: 17563 components: - type: Transform - pos: 20.5,16.5 - parent: 45711 - - uid: 6375 + pos: 55.5,-2.5 + parent: 2 + - uid: 17564 components: - type: Transform - pos: 21.5,16.5 - parent: 45711 - - uid: 6376 + pos: 56.5,-2.5 + parent: 2 + - uid: 17565 components: - type: Transform - pos: 22.5,16.5 - parent: 45711 - - uid: 6377 + pos: 57.5,-2.5 + parent: 2 + - uid: 17566 components: - type: Transform - pos: 22.5,15.5 - parent: 45711 - - uid: 6378 + pos: 58.5,-2.5 + parent: 2 + - uid: 17595 components: - type: Transform - pos: 22.5,14.5 - parent: 45711 - - uid: 6379 + pos: -49.5,23.5 + parent: 2 + - uid: 17596 components: - type: Transform - pos: 20.5,17.5 - parent: 45711 - - uid: 6380 + pos: -49.5,24.5 + parent: 2 + - uid: 17597 components: - type: Transform - pos: 20.5,18.5 - parent: 45711 - - uid: 6383 + pos: -48.5,24.5 + parent: 2 + - uid: 17598 components: - type: Transform - pos: 20.5,19.5 - parent: 45711 - - uid: 6385 + pos: -47.5,24.5 + parent: 2 + - uid: 17599 components: - type: Transform - pos: 20.5,20.5 - parent: 45711 - - uid: 6388 + pos: -46.5,24.5 + parent: 2 + - uid: 17600 components: - type: Transform - pos: 20.5,21.5 - parent: 45711 - - uid: 6389 + pos: -46.5,23.5 + parent: 2 + - uid: 17640 components: - type: Transform - pos: 20.5,22.5 - parent: 45711 - - uid: 6390 + pos: -0.5,-36.5 + parent: 2 + - uid: 17641 components: - type: Transform - pos: 20.5,23.5 - parent: 45711 - - uid: 6392 + pos: -1.5,-36.5 + parent: 2 + - uid: 17643 components: - type: Transform - pos: 20.5,24.5 - parent: 45711 - - uid: 6395 + pos: -1.5,-37.5 + parent: 2 + - uid: 17660 components: - type: Transform - pos: 20.5,25.5 - parent: 45711 - - uid: 6396 + pos: -1.5,-38.5 + parent: 2 + - uid: 17661 components: - type: Transform - pos: 20.5,26.5 - parent: 45711 - - uid: 6399 + pos: -0.5,-38.5 + parent: 2 + - uid: 17662 components: - type: Transform - pos: 20.5,27.5 - parent: 45711 - - uid: 6400 + pos: 0.5,-38.5 + parent: 2 + - uid: 17668 components: - type: Transform - pos: 20.5,28.5 - parent: 45711 - - uid: 6401 + pos: 0.5,-36.5 + parent: 2 + - uid: 17669 components: - type: Transform - pos: 20.5,29.5 - parent: 45711 - - uid: 6402 + pos: 0.5,-37.5 + parent: 2 + - uid: 17676 components: - type: Transform - pos: 20.5,30.5 - parent: 45711 - - uid: 6403 + pos: -0.5,-39.5 + parent: 2 + - uid: 17677 components: - type: Transform - pos: 20.5,31.5 - parent: 45711 - - uid: 6404 + pos: -0.5,-40.5 + parent: 2 + - uid: 17678 components: - type: Transform - pos: 20.5,32.5 - parent: 45711 - - uid: 6405 + pos: -0.5,-41.5 + parent: 2 + - uid: 17679 components: - type: Transform - pos: 20.5,33.5 - parent: 45711 - - uid: 6406 + pos: -0.5,-42.5 + parent: 2 + - uid: 17723 components: - type: Transform - pos: 20.5,34.5 - parent: 45711 - - uid: 6407 + pos: -11.5,-56.5 + parent: 2 + - uid: 17724 components: - type: Transform - pos: 20.5,35.5 - parent: 45711 - - uid: 6408 + pos: -10.5,-56.5 + parent: 2 + - uid: 17725 components: - type: Transform - pos: 20.5,36.5 - parent: 45711 - - uid: 6409 + pos: -10.5,-55.5 + parent: 2 + - uid: 17726 components: - type: Transform - pos: 20.5,37.5 - parent: 45711 - - uid: 6410 + pos: -10.5,-54.5 + parent: 2 + - uid: 17727 components: - type: Transform - pos: 21.5,26.5 - parent: 45711 - - uid: 6411 + pos: -9.5,-54.5 + parent: 2 + - uid: 17728 components: - type: Transform - pos: 22.5,26.5 - parent: 45711 - - uid: 6412 + pos: -9.5,-53.5 + parent: 2 + - uid: 17729 components: - type: Transform - pos: 23.5,26.5 - parent: 45711 - - uid: 6413 + pos: -9.5,-52.5 + parent: 2 + - uid: 17730 components: - type: Transform - pos: 24.5,26.5 - parent: 45711 - - uid: 6414 + pos: -9.5,-51.5 + parent: 2 + - uid: 17731 components: - type: Transform - pos: 24.5,25.5 - parent: 45711 - - uid: 6416 + pos: -8.5,-51.5 + parent: 2 + - uid: 17732 components: - type: Transform - pos: 24.5,24.5 - parent: 45711 - - uid: 6417 + pos: -7.5,-51.5 + parent: 2 + - uid: 17733 components: - type: Transform - pos: 25.5,24.5 - parent: 45711 - - uid: 6418 + pos: -6.5,-51.5 + parent: 2 + - uid: 17734 components: - type: Transform - pos: 26.5,24.5 - parent: 45711 - - uid: 6419 + pos: -5.5,-51.5 + parent: 2 + - uid: 17735 components: - type: Transform - pos: 27.5,24.5 - parent: 45711 - - uid: 6424 + pos: -4.5,-51.5 + parent: 2 + - uid: 17736 components: - type: Transform - pos: 28.5,24.5 - parent: 45711 - - uid: 6426 + pos: -4.5,-50.5 + parent: 2 + - uid: 17737 components: - type: Transform - pos: 28.5,23.5 - parent: 45711 - - uid: 6427 + pos: -4.5,-49.5 + parent: 2 + - uid: 17738 components: - type: Transform - pos: 29.5,23.5 - parent: 45711 - - uid: 6428 + pos: -4.5,-48.5 + parent: 2 + - uid: 17739 components: - type: Transform - pos: 30.5,23.5 - parent: 45711 - - uid: 6429 + pos: -4.5,-47.5 + parent: 2 + - uid: 17740 components: - type: Transform - pos: 30.5,22.5 - parent: 45711 - - uid: 6430 + pos: -4.5,-46.5 + parent: 2 + - uid: 17741 components: - type: Transform - pos: 14.5,17.5 - parent: 45711 - - uid: 6431 + pos: -4.5,-45.5 + parent: 2 + - uid: 17742 components: - type: Transform - pos: 14.5,18.5 - parent: 45711 - - uid: 6432 + pos: -4.5,-44.5 + parent: 2 + - uid: 17743 components: - type: Transform - pos: 14.5,19.5 - parent: 45711 - - uid: 6433 + pos: -4.5,-43.5 + parent: 2 + - uid: 17744 components: - type: Transform - pos: 14.5,20.5 - parent: 45711 - - uid: 6434 + pos: -3.5,-43.5 + parent: 2 + - uid: 17745 components: - type: Transform - pos: 14.5,21.5 - parent: 45711 - - uid: 6435 + pos: -2.5,-43.5 + parent: 2 + - uid: 17746 components: - type: Transform - pos: 14.5,22.5 - parent: 45711 - - uid: 6436 + pos: -1.5,-43.5 + parent: 2 + - uid: 17747 components: - type: Transform - pos: 14.5,23.5 - parent: 45711 - - uid: 6440 + pos: -0.5,-43.5 + parent: 2 + - uid: 17907 components: - type: Transform - pos: 14.5,24.5 - parent: 45711 - - uid: 6441 + pos: -51.5,37.5 + parent: 2 + - uid: 17908 components: - type: Transform - pos: 14.5,25.5 - parent: 45711 - - uid: 6442 + pos: -50.5,37.5 + parent: 2 + - uid: 17909 components: - type: Transform - pos: 14.5,26.5 - parent: 45711 - - uid: 6443 + pos: -50.5,36.5 + parent: 2 + - uid: 17910 components: - type: Transform - pos: 14.5,27.5 - parent: 45711 - - uid: 6444 + pos: -50.5,35.5 + parent: 2 + - uid: 17911 components: - type: Transform - pos: 14.5,28.5 - parent: 45711 - - uid: 6445 + pos: -50.5,34.5 + parent: 2 + - uid: 17912 components: - type: Transform - pos: 14.5,29.5 - parent: 45711 - - uid: 6446 + pos: -51.5,34.5 + parent: 2 + - uid: 17913 components: - type: Transform - pos: 14.5,30.5 - parent: 45711 - - uid: 6447 + pos: -52.5,34.5 + parent: 2 + - uid: 17914 components: - type: Transform - pos: 14.5,31.5 - parent: 45711 - - uid: 6448 + pos: -53.5,34.5 + parent: 2 + - uid: 17915 components: - type: Transform - pos: 14.5,32.5 - parent: 45711 - - uid: 6449 + pos: -49.5,34.5 + parent: 2 + - uid: 17916 components: - type: Transform - pos: 14.5,33.5 - parent: 45711 - - uid: 6450 + pos: -48.5,34.5 + parent: 2 + - uid: 17917 components: - type: Transform - pos: 14.5,34.5 - parent: 45711 - - uid: 6451 + pos: -47.5,34.5 + parent: 2 + - uid: 17919 components: - type: Transform - pos: 15.5,34.5 - parent: 45711 - - uid: 6452 + pos: -47.5,35.5 + parent: 2 + - uid: 17920 components: - type: Transform - pos: 16.5,34.5 - parent: 45711 - - uid: 6453 + pos: -47.5,36.5 + parent: 2 + - uid: 17921 components: - type: Transform - pos: 17.5,34.5 - parent: 45711 - - uid: 6454 + pos: -47.5,37.5 + parent: 2 + - uid: 17973 components: - type: Transform - pos: 18.5,34.5 - parent: 45711 - - uid: 6455 + pos: -39.5,27.5 + parent: 2 + - uid: 17974 components: - type: Transform - pos: 8.5,17.5 - parent: 45711 - - uid: 6456 + pos: -38.5,27.5 + parent: 2 + - uid: 17975 components: - type: Transform - pos: 8.5,18.5 - parent: 45711 - - uid: 6457 + pos: -37.5,27.5 + parent: 2 + - uid: 17986 components: - type: Transform - pos: 8.5,19.5 - parent: 45711 - - uid: 6458 + pos: -37.5,28.5 + parent: 2 + - uid: 17987 components: - type: Transform - pos: 8.5,20.5 - parent: 45711 - - uid: 6459 + pos: -37.5,29.5 + parent: 2 + - uid: 17988 components: - type: Transform - pos: 8.5,21.5 - parent: 45711 - - uid: 6460 + pos: -37.5,30.5 + parent: 2 + - uid: 17989 components: - type: Transform - pos: 8.5,22.5 - parent: 45711 - - uid: 6461 + pos: -37.5,31.5 + parent: 2 + - uid: 17990 components: - type: Transform - pos: 8.5,23.5 - parent: 45711 - - uid: 6462 + pos: -37.5,32.5 + parent: 2 + - uid: 17992 components: - type: Transform - pos: 8.5,24.5 - parent: 45711 - - uid: 6463 + pos: -38.5,32.5 + parent: 2 + - uid: 17993 components: - type: Transform - pos: 8.5,25.5 - parent: 45711 - - uid: 6464 + pos: -39.5,32.5 + parent: 2 + - uid: 17994 components: - type: Transform - pos: 8.5,26.5 - parent: 45711 - - uid: 6465 + pos: -40.5,32.5 + parent: 2 + - uid: 17995 components: - type: Transform - pos: 8.5,27.5 - parent: 45711 - - uid: 6466 + pos: -41.5,32.5 + parent: 2 + - uid: 17996 components: - type: Transform - pos: 8.5,28.5 - parent: 45711 - - uid: 6467 + pos: -42.5,32.5 + parent: 2 + - uid: 17997 components: - type: Transform - pos: 8.5,29.5 - parent: 45711 - - uid: 6468 + pos: -43.5,32.5 + parent: 2 + - uid: 17999 components: - type: Transform - pos: 8.5,30.5 - parent: 45711 - - uid: 6469 + pos: -43.5,33.5 + parent: 2 + - uid: 18000 components: - type: Transform - pos: 8.5,31.5 - parent: 45711 - - uid: 6470 + pos: -44.5,33.5 + parent: 2 + - uid: 18003 components: - type: Transform - pos: 8.5,32.5 - parent: 45711 - - uid: 6471 + pos: -45.5,33.5 + parent: 2 + - uid: 18004 components: - type: Transform - pos: 8.5,33.5 - parent: 45711 - - uid: 6472 + pos: -45.5,34.5 + parent: 2 + - uid: 18006 components: - type: Transform - pos: -10.5,31.5 - parent: 45711 - - uid: 6473 + pos: -46.5,34.5 + parent: 2 + - uid: 18029 components: - type: Transform - pos: -10.5,32.5 - parent: 45711 - - uid: 6474 + pos: -47.5,39.5 + parent: 2 + - uid: 18031 components: - type: Transform - pos: -10.5,33.5 - parent: 45711 - - uid: 6475 + pos: -47.5,38.5 + parent: 2 + - uid: 18299 components: - type: Transform - pos: -10.5,34.5 - parent: 45711 - - uid: 6477 + pos: 45.5,73.5 + parent: 2 + - uid: 18633 components: - type: Transform - pos: -9.5,34.5 - parent: 45711 - - uid: 6478 + pos: 58.5,37.5 + parent: 2 + - uid: 18634 components: - type: Transform - pos: -8.5,34.5 - parent: 45711 - - uid: 6479 + pos: 58.5,36.5 + parent: 2 + - uid: 21591 components: - type: Transform - pos: -7.5,34.5 - parent: 45711 - - uid: 6480 + pos: 68.5,42.5 + parent: 2 + - uid: 21766 components: - type: Transform - pos: -6.5,34.5 - parent: 45711 - - uid: 6481 + pos: -20.5,7.5 + parent: 2 + - uid: 21854 components: - type: Transform - pos: -5.5,34.5 - parent: 45711 - - uid: 6482 + pos: -11.5,6.5 + parent: 2 + - uid: 22083 components: - type: Transform - pos: -4.5,34.5 - parent: 45711 - - uid: 6483 + pos: -50.5,50.5 + parent: 2 + - uid: 23829 components: - type: Transform - pos: -3.5,34.5 - parent: 45711 - - uid: 6484 + pos: -36.5,-28.5 + parent: 2 + - uid: 24005 components: - type: Transform - pos: -2.5,34.5 - parent: 45711 - - uid: 6485 + pos: -19.5,8.5 + parent: 2 + - uid: 24675 components: - type: Transform - pos: -1.5,34.5 - parent: 45711 - - uid: 6486 + pos: 20.5,53.5 + parent: 2 + - uid: 24934 components: - type: Transform - pos: -0.5,34.5 - parent: 45711 - - uid: 6487 + pos: -35.5,-28.5 + parent: 2 + - uid: 24941 components: - type: Transform - pos: 0.5,34.5 - parent: 45711 - - uid: 6488 + pos: -37.5,-28.5 + parent: 2 + - uid: 25319 components: - type: Transform - pos: 0.5,33.5 - parent: 45711 - - uid: 6489 + pos: 24.5,50.5 + parent: 2 + - uid: 26121 components: - type: Transform - pos: 1.5,33.5 - parent: 45711 - - uid: 6490 + pos: -17.5,6.5 + parent: 2 + - uid: 26374 components: - type: Transform - pos: 2.5,33.5 - parent: 45711 - - uid: 6491 + pos: 21.5,53.5 + parent: 2 + - uid: 26376 components: - type: Transform - pos: 3.5,33.5 - parent: 45711 - - uid: 6492 + pos: 17.5,54.5 + parent: 2 + - uid: 26379 components: - type: Transform - pos: 4.5,33.5 - parent: 45711 - - uid: 6493 + pos: 17.5,53.5 + parent: 2 + - uid: 26411 components: - type: Transform - pos: 5.5,33.5 - parent: 45711 - - uid: 6494 + pos: 19.5,54.5 + parent: 2 + - uid: 26631 components: - type: Transform - pos: 6.5,33.5 - parent: 45711 - - uid: 6495 + pos: 22.5,53.5 + parent: 2 + - uid: 26634 components: - type: Transform - pos: 7.5,33.5 - parent: 45711 - - uid: 6496 + pos: -19.5,6.5 + parent: 2 + - uid: 26981 components: - type: Transform - pos: 0.5,35.5 - parent: 45711 - - uid: 6497 + pos: 69.5,42.5 + parent: 2 + - uid: 27179 components: - type: Transform - pos: 0.5,36.5 - parent: 45711 - - uid: 6498 + pos: -17.5,8.5 + parent: 2 + - uid: 27189 components: - type: Transform - pos: -5.5,6.5 - parent: 45711 - - uid: 6499 + pos: -11.5,8.5 + parent: 2 + - uid: 27191 components: - type: Transform - pos: -4.5,6.5 - parent: 45711 - - uid: 6500 + pos: -17.5,7.5 + parent: 2 + - uid: 27226 components: - type: Transform - pos: -3.5,6.5 - parent: 45711 - - uid: 6501 + pos: 67.5,42.5 + parent: 2 + - uid: 27230 components: - type: Transform - pos: -3.5,5.5 - parent: 45711 - - uid: 6502 + pos: -16.5,7.5 + parent: 2 + - uid: 32298 components: - type: Transform - pos: -3.5,4.5 - parent: 45711 - - uid: 6503 + pos: 22.5,50.5 + parent: 2 + - uid: 32299 components: - type: Transform - pos: -3.5,3.5 - parent: 45711 - - uid: 6504 + pos: 23.5,50.5 + parent: 2 + - uid: 47317 components: - type: Transform - pos: -3.5,2.5 - parent: 45711 - - uid: 6505 + pos: 1.5,3.5 + parent: 32764 + - uid: 47318 components: - type: Transform - pos: -4.5,2.5 - parent: 45711 - - uid: 8117 + pos: 0.5,3.5 + parent: 32764 + - uid: 47319 components: - type: Transform - pos: 21.5,-20.5 - parent: 2 - - uid: 12258 + pos: -0.5,3.5 + parent: 32764 + - uid: 47320 components: - type: Transform - pos: 57.5,-28.5 - parent: 2 - - uid: 13796 + pos: 0.5,2.5 + parent: 32764 + - uid: 47321 components: - type: Transform - pos: 39.5,-20.5 - parent: 2 - - uid: 13827 + pos: 0.5,1.5 + parent: 32764 + - uid: 47322 components: - type: Transform - pos: 37.5,-20.5 - parent: 2 - - uid: 13828 + pos: 1.5,1.5 + parent: 32764 + - uid: 47323 components: - type: Transform - pos: 38.5,-20.5 - parent: 2 - - uid: 14183 + pos: -0.5,1.5 + parent: 32764 + - uid: 47365 components: - type: Transform - pos: 57.5,-34.5 - parent: 2 - - uid: 14252 + pos: 0.5,-0.5 + parent: 44868 + - uid: 47366 components: - type: Transform - pos: 57.5,-27.5 - parent: 2 - - uid: 14360 + pos: 1.5,-0.5 + parent: 44868 + - uid: 47367 components: - type: Transform - pos: 59.5,-34.5 - parent: 2 - - uid: 14424 + pos: 2.5,-0.5 + parent: 44868 + - uid: 47368 components: - type: Transform - pos: 56.5,-29.5 - parent: 2 - - uid: 14491 + pos: 1.5,-1.5 + parent: 44868 + - uid: 47369 components: - type: Transform - pos: 56.5,-30.5 - parent: 2 - - uid: 14500 + pos: 1.5,-2.5 + parent: 44868 + - uid: 47370 components: - type: Transform - pos: 56.5,-33.5 - parent: 2 - - uid: 15276 + pos: 1.5,-3.5 + parent: 44868 + - uid: 47371 components: - type: Transform - pos: 60.5,-34.5 - parent: 2 - - uid: 15568 + pos: 2.5,-3.5 + parent: 44868 + - uid: 47372 components: - type: Transform - pos: 33.5,67.5 - parent: 2 - - uid: 15569 + pos: 3.5,-3.5 + parent: 44868 + - uid: 47373 components: - type: Transform - pos: 33.5,66.5 - parent: 2 - - uid: 15570 + pos: 1.5,-4.5 + parent: 44868 + - uid: 47374 components: - type: Transform - pos: 33.5,65.5 - parent: 2 - - uid: 15571 + pos: 1.5,-5.5 + parent: 44868 + - uid: 47375 components: - type: Transform - pos: 33.5,64.5 - parent: 2 - - uid: 15574 + pos: 1.5,-6.5 + parent: 44868 + - uid: 47376 components: - type: Transform - pos: 32.5,64.5 - parent: 2 - - uid: 15575 + pos: 2.5,-6.5 + parent: 44868 + - uid: 47377 components: - type: Transform - pos: 31.5,64.5 - parent: 2 - - uid: 15578 + pos: 0.5,-6.5 + parent: 44868 + - uid: 47489 components: - type: Transform - pos: 37.5,62.5 - parent: 2 - - uid: 15579 + pos: -2.5,2.5 + parent: 56108 + - uid: 47490 components: - type: Transform - pos: 37.5,63.5 - parent: 2 - - uid: 15580 + pos: -1.5,2.5 + parent: 56108 + - uid: 47491 components: - type: Transform - pos: 37.5,64.5 - parent: 2 - - uid: 15582 + pos: -0.5,2.5 + parent: 56108 + - uid: 47492 components: - type: Transform - pos: 37.5,65.5 - parent: 2 - - uid: 15583 + pos: 0.5,2.5 + parent: 56108 + - uid: 47493 components: - type: Transform - pos: 37.5,66.5 - parent: 2 - - uid: 15585 + pos: 1.5,2.5 + parent: 56108 + - uid: 47494 components: - type: Transform - pos: 36.5,64.5 - parent: 2 - - uid: 15586 + pos: 2.5,2.5 + parent: 56108 + - uid: 47495 components: - type: Transform - pos: 35.5,64.5 - parent: 2 - - uid: 15587 + pos: 3.5,2.5 + parent: 56108 + - uid: 47721 components: - type: Transform - pos: 34.5,64.5 + pos: -39.5,-27.5 parent: 2 - - uid: 15588 + - uid: 47722 components: - type: Transform - pos: 38.5,64.5 + pos: -39.5,-28.5 parent: 2 - - uid: 15589 + - uid: 47723 components: - type: Transform - pos: 39.5,64.5 + pos: -39.5,-29.5 parent: 2 - - uid: 15590 + - uid: 47814 components: - type: Transform - pos: 40.5,64.5 + pos: 71.5,40.5 parent: 2 - - uid: 15591 + - uid: 47852 components: - type: Transform - pos: 41.5,64.5 + pos: 71.5,41.5 parent: 2 - - uid: 15592 + - uid: 47862 components: - type: Transform - pos: 42.5,64.5 + pos: 71.5,39.5 parent: 2 - - uid: 15593 + - uid: 47863 components: - type: Transform - pos: 43.5,64.5 + pos: 71.5,38.5 parent: 2 - - uid: 15594 + - uid: 47864 components: - type: Transform - pos: 44.5,64.5 + pos: 71.5,37.5 parent: 2 - - uid: 15595 + - uid: 47865 components: - type: Transform - pos: 45.5,64.5 + pos: 71.5,36.5 parent: 2 - - uid: 15596 + - uid: 47866 components: - type: Transform - pos: 46.5,64.5 + pos: 71.5,35.5 parent: 2 - - uid: 15597 + - uid: 47868 components: - type: Transform - pos: 47.5,64.5 + pos: 76.5,46.5 parent: 2 - - uid: 15598 + - uid: 47869 components: - type: Transform - pos: 48.5,64.5 + pos: 77.5,46.5 parent: 2 - - uid: 15599 + - uid: 47870 components: - type: Transform - pos: 53.5,69.5 + pos: 78.5,46.5 parent: 2 - - uid: 15600 + - uid: 47871 components: - type: Transform - pos: 52.5,69.5 + pos: 79.5,46.5 parent: 2 - - uid: 15601 + - uid: 47872 components: - type: Transform - pos: 51.5,69.5 + pos: 80.5,46.5 parent: 2 - - uid: 15602 + - uid: 47873 components: - type: Transform - pos: 50.5,69.5 + pos: 81.5,46.5 parent: 2 - - uid: 15603 + - uid: 47874 components: - type: Transform - pos: 49.5,69.5 + pos: 82.5,46.5 parent: 2 - - uid: 15604 + - uid: 47876 components: - type: Transform - pos: 48.5,69.5 + pos: 87.5,41.5 parent: 2 - - uid: 15607 + - uid: 48376 components: - type: Transform - pos: 48.5,68.5 + pos: 87.5,40.5 parent: 2 - - uid: 15608 + - uid: 48377 components: - type: Transform - pos: 48.5,67.5 + pos: 87.5,39.5 parent: 2 - - uid: 15609 + - uid: 48378 components: - type: Transform - pos: 48.5,66.5 + pos: 87.5,38.5 parent: 2 - - uid: 15610 + - uid: 48379 components: - type: Transform - pos: 48.5,65.5 + pos: 87.5,37.5 parent: 2 - - uid: 15612 + - uid: 48380 components: - type: Transform - pos: 53.5,59.5 + pos: 87.5,36.5 parent: 2 - - uid: 15613 + - uid: 48381 components: - type: Transform - pos: 52.5,59.5 + pos: 87.5,35.5 parent: 2 - - uid: 15614 + - uid: 48382 components: - type: Transform - pos: 51.5,59.5 + pos: 82.5,30.5 parent: 2 - - uid: 15615 + - uid: 48383 components: - type: Transform - pos: 50.5,59.5 + pos: 81.5,30.5 parent: 2 - - uid: 15616 + - uid: 48384 components: - type: Transform - pos: 49.5,59.5 + pos: 80.5,30.5 parent: 2 - - uid: 15617 + - uid: 48385 components: - type: Transform - pos: 48.5,59.5 + pos: 79.5,30.5 parent: 2 - - uid: 15618 + - uid: 48386 components: - type: Transform - pos: 48.5,60.5 + pos: 78.5,30.5 parent: 2 - - uid: 15619 + - uid: 48387 components: - type: Transform - pos: 48.5,61.5 + pos: 77.5,30.5 parent: 2 - - uid: 15620 + - uid: 48388 components: - type: Transform - pos: 48.5,62.5 + pos: 76.5,30.5 parent: 2 - - uid: 15621 + - uid: 48396 components: - type: Transform - pos: 48.5,63.5 + pos: 66.5,42.5 parent: 2 - - uid: 15624 + - uid: 48398 components: - type: Transform - pos: 49.5,64.5 + pos: 70.5,42.5 parent: 2 - - uid: 15625 + - uid: 48399 components: - type: Transform - pos: 50.5,64.5 + pos: 71.5,42.5 parent: 2 - - uid: 15626 + - uid: 48433 components: - type: Transform - pos: 51.5,64.5 + pos: 71.5,43.5 parent: 2 - - uid: 15627 + - uid: 48434 components: - type: Transform - pos: 52.5,64.5 + pos: 71.5,44.5 parent: 2 - - uid: 15628 + - uid: 48435 components: - type: Transform - pos: 53.5,64.5 + pos: 71.5,45.5 parent: 2 - - uid: 15629 + - uid: 48436 components: - type: Transform - pos: 54.5,64.5 + pos: 71.5,46.5 parent: 2 - - uid: 15630 + - uid: 48437 components: - type: Transform - pos: 55.5,64.5 + pos: 72.5,46.5 parent: 2 - - uid: 15631 + - uid: 48438 components: - type: Transform - pos: 60.5,64.5 + pos: 73.5,46.5 parent: 2 - - uid: 15632 + - uid: 48439 components: - type: Transform - pos: 59.5,64.5 + pos: 74.5,46.5 parent: 2 - - uid: 15633 + - uid: 48440 components: - type: Transform - pos: 58.5,64.5 + pos: 75.5,46.5 parent: 2 - - uid: 15635 + - uid: 48441 components: - type: Transform - pos: 57.5,64.5 + pos: 83.5,46.5 parent: 2 - - uid: 15636 + - uid: 48442 components: - type: Transform - pos: 56.5,64.5 + pos: 84.5,46.5 parent: 2 - - uid: 15689 + - uid: 48443 components: - type: Transform - pos: 57.5,-29.5 + pos: 85.5,46.5 parent: 2 - - uid: 17828 + - uid: 48444 components: - type: Transform - pos: -16.5,66.5 + pos: 86.5,46.5 parent: 2 - - uid: 17957 + - uid: 48445 components: - type: Transform - pos: -74.5,1.5 + pos: 87.5,46.5 parent: 2 - - uid: 17958 + - uid: 48446 components: - type: Transform - pos: -74.5,2.5 + pos: 87.5,45.5 parent: 2 - - uid: 17959 + - uid: 48447 components: - type: Transform - pos: -74.5,3.5 + pos: 87.5,44.5 parent: 2 - - uid: 17960 + - uid: 48448 components: - type: Transform - pos: -74.5,4.5 + pos: 87.5,43.5 parent: 2 - - uid: 17961 + - uid: 48449 components: - type: Transform - pos: -74.5,5.5 + pos: 87.5,42.5 parent: 2 - - uid: 17962 + - uid: 48450 components: - type: Transform - pos: -74.5,6.5 + pos: 87.5,34.5 parent: 2 - - uid: 17963 + - uid: 48451 components: - type: Transform - pos: -74.5,7.5 + pos: 87.5,33.5 parent: 2 - - uid: 17964 + - uid: 48452 components: - type: Transform - pos: -74.5,8.5 + pos: 87.5,32.5 parent: 2 - - uid: 17965 + - uid: 48453 components: - type: Transform - pos: -76.5,7.5 + pos: 87.5,31.5 parent: 2 - - uid: 17966 + - uid: 48454 components: - type: Transform - pos: -77.5,7.5 + pos: 87.5,30.5 parent: 2 - - uid: 17967 + - uid: 48455 components: - type: Transform - pos: -78.5,7.5 + pos: 86.5,30.5 parent: 2 - - uid: 17968 + - uid: 48456 components: - type: Transform - pos: -79.5,7.5 + pos: 85.5,30.5 parent: 2 - - uid: 17969 + - uid: 48457 components: - type: Transform - pos: -80.5,7.5 + pos: 84.5,30.5 parent: 2 - - uid: 17970 + - uid: 48463 components: - type: Transform - pos: -81.5,7.5 + pos: 83.5,30.5 parent: 2 - - uid: 17971 + - uid: 48464 components: - type: Transform - pos: -81.5,8.5 + pos: 75.5,30.5 parent: 2 - - uid: 17972 + - uid: 48465 components: - type: Transform - pos: -81.5,9.5 + pos: 74.5,30.5 parent: 2 - - uid: 17976 + - uid: 48466 components: - type: Transform - pos: -82.5,7.5 + pos: 73.5,30.5 parent: 2 - - uid: 17977 + - uid: 48467 components: - type: Transform - pos: -83.5,7.5 + pos: 72.5,30.5 parent: 2 - - uid: 17978 + - uid: 48468 components: - type: Transform - pos: -84.5,7.5 + pos: 71.5,30.5 parent: 2 - - uid: 17979 + - uid: 48469 components: - type: Transform - pos: -85.5,7.5 + pos: 71.5,31.5 parent: 2 - - uid: 17980 + - uid: 48470 components: - type: Transform - pos: -86.5,7.5 + pos: 71.5,32.5 parent: 2 - - uid: 17981 + - uid: 48471 components: - type: Transform - pos: -87.5,7.5 + pos: 71.5,33.5 parent: 2 - - uid: 17982 + - uid: 48472 components: - type: Transform - pos: -88.5,7.5 + pos: 71.5,34.5 parent: 2 - - uid: 17983 + - uid: 48544 components: - type: Transform - pos: -89.5,7.5 - parent: 2 - - uid: 17984 + pos: 9.5,2.5 + parent: 36861 + - uid: 48545 components: - type: Transform - pos: -90.5,7.5 - parent: 2 - - uid: 17985 + pos: 9.5,1.5 + parent: 36861 + - uid: 48546 components: - type: Transform - pos: -91.5,7.5 - parent: 2 - - uid: 17991 + pos: 8.5,1.5 + parent: 36861 + - uid: 51343 components: - type: Transform - pos: -91.5,6.5 + pos: -28.5,-28.5 parent: 2 - - uid: 17998 + - uid: 51344 components: - type: Transform - pos: -91.5,5.5 + pos: -27.5,-28.5 parent: 2 - - uid: 18001 + - uid: 51345 components: - type: Transform - pos: -94.5,7.5 + pos: -26.5,-28.5 parent: 2 - - uid: 18002 + - uid: 51347 components: - type: Transform - pos: -94.5,6.5 + pos: -25.5,-28.5 parent: 2 - - uid: 18005 + - uid: 51348 components: - type: Transform - pos: -94.5,5.5 + pos: -24.5,-28.5 parent: 2 - - uid: 18007 + - uid: 51943 components: - type: Transform - pos: -93.5,5.5 + pos: -15.5,-12.5 parent: 2 - - uid: 18008 + - uid: 52663 components: - type: Transform - pos: -92.5,5.5 + pos: -15.5,7.5 parent: 2 - - uid: 18072 + - uid: 52664 components: - type: Transform - pos: 55.5,-29.5 + pos: -14.5,7.5 parent: 2 - - uid: 18117 + - uid: 52665 components: - type: Transform - pos: 21.5,51.5 + pos: -13.5,8.5 parent: 2 - - uid: 18121 + - uid: 52715 components: - type: Transform - pos: 21.5,50.5 + pos: -13.5,7.5 parent: 2 - - uid: 18122 + - uid: 52719 components: - type: Transform - pos: 21.5,49.5 + pos: -13.5,6.5 parent: 2 - - uid: 18123 + - uid: 52940 components: - type: Transform - pos: 22.5,49.5 + pos: -15.5,6.5 parent: 2 - - uid: 18304 + - uid: 52941 components: - type: Transform - pos: 45.5,73.5 + pos: -15.5,5.5 parent: 2 - - uid: 18305 + - uid: 52942 components: - type: Transform - pos: 45.5,74.5 + pos: -15.5,4.5 parent: 2 - - uid: 18306 + - uid: 52943 components: - type: Transform - pos: 46.5,74.5 + pos: -15.5,3.5 parent: 2 - - uid: 18307 + - uid: 52950 components: - type: Transform - pos: 47.5,74.5 + pos: -15.5,2.5 parent: 2 - - uid: 18308 + - uid: 52951 components: - type: Transform - pos: 48.5,74.5 + pos: -15.5,1.5 parent: 2 - - uid: 18309 +- proto: CableHVStack + entities: + - uid: 26013 components: - type: Transform - pos: 49.5,74.5 + pos: 15.368215,9.651894 parent: 2 - - uid: 18310 + - uid: 47710 components: - type: Transform - pos: 49.5,75.5 + pos: 36.337772,-18.25822 parent: 2 - - uid: 18314 +- proto: CableHVStack1 + entities: + - uid: 7618 components: - type: Transform - pos: 49.5,76.5 + pos: 53.91986,-57.643635 parent: 2 - - uid: 18399 + - uid: 7619 components: - type: Transform - pos: 40.5,36.5 + pos: 52.66986,-58.62801 parent: 2 - - uid: 18400 + - uid: 7620 components: - type: Transform - pos: 41.5,36.5 + pos: 52.622986,-56.878014 parent: 2 - - uid: 18635 + - uid: 42913 components: - type: Transform - pos: 58.5,36.5 + pos: -52.3747,60.473495 parent: 2 - - uid: 18636 + - uid: 51209 components: - type: Transform - pos: 58.5,37.5 + pos: 23.77287,-65.90149 parent: 2 - - uid: 18637 + - uid: 51210 components: - type: Transform - pos: 58.5,38.5 + pos: 22.600994,-66.510864 parent: 2 - - uid: 18638 +- proto: CableHVStack10 + entities: + - uid: 30431 components: - type: Transform - pos: 59.5,38.5 + pos: 58.51976,-24.583872 parent: 2 - - uid: 18639 + - uid: 36098 components: - type: Transform - pos: 59.5,39.5 + pos: 39.046944,13.800685 parent: 2 - - uid: 18640 + - uid: 43342 components: - type: Transform - pos: 59.5,40.5 + pos: 49.68145,75.66459 parent: 2 - - uid: 18641 + - uid: 43967 components: - type: Transform - pos: 59.5,41.5 + pos: -26.47073,4.974503 parent: 2 - - uid: 18642 + - uid: 45374 components: - type: Transform - pos: 59.5,42.5 - parent: 2 - - uid: 18643 + rot: 1.5707963267948966 rad + pos: -1.152772,-1.4096315 + parent: 43176 + - uid: 55745 components: - type: Transform - pos: 60.5,42.5 - parent: 2 - - uid: 18644 + rot: -1.5707963267948966 rad + pos: -36.13832,30.406006 + parent: 45711 + - uid: 55746 components: - type: Transform - pos: 61.5,42.5 - parent: 2 - - uid: 18645 + rot: 3.141592653589793 rad + pos: -36.81024,30.39032 + parent: 45711 +- proto: CableMV + entities: + - uid: 600 components: - type: Transform - pos: 61.5,43.5 + pos: 22.5,-20.5 parent: 2 - - uid: 18646 + - uid: 776 components: - type: Transform - pos: 61.5,44.5 + pos: 87.5,41.5 parent: 2 - - uid: 18647 + - uid: 1066 components: - type: Transform - pos: 61.5,45.5 + pos: 56.5,-31.5 parent: 2 - - uid: 18648 + - uid: 1237 components: - type: Transform - pos: 61.5,46.5 + pos: 40.5,-11.5 parent: 2 - - uid: 18649 + - uid: 4912 components: - type: Transform - pos: 61.5,47.5 + pos: -17.5,32.5 parent: 2 - - uid: 18660 + - uid: 5464 components: - type: Transform - pos: 18.5,12.5 + pos: 56.5,-34.5 parent: 2 - - uid: 18661 + - uid: 5636 components: - type: Transform - pos: 19.5,12.5 + pos: 40.5,35.5 parent: 2 - - uid: 18662 + - uid: 5637 components: - type: Transform - pos: 20.5,12.5 + pos: -33.5,-70.5 parent: 2 - - uid: 18671 + - uid: 5642 components: - type: Transform - pos: 20.5,13.5 + pos: -75.5,7.5 parent: 2 - - uid: 18672 + - uid: 5643 components: - type: Transform - pos: 20.5,14.5 + pos: -75.5,5.5 parent: 2 - - uid: 18673 + - uid: 6171 components: - type: Transform - pos: 20.5,15.5 - parent: 2 - - uid: 18674 + pos: -6.5,6.5 + parent: 45711 + - uid: 6172 components: - type: Transform - pos: 20.5,16.5 - parent: 2 - - uid: 18675 + pos: -6.5,7.5 + parent: 45711 + - uid: 6173 components: - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 18677 + pos: -6.5,8.5 + parent: 45711 + - uid: 6175 components: - type: Transform - pos: 20.5,18.5 - parent: 2 - - uid: 18678 + pos: -6.5,9.5 + parent: 45711 + - uid: 6179 components: - type: Transform - pos: 20.5,19.5 - parent: 2 - - uid: 18679 + pos: -6.5,10.5 + parent: 45711 + - uid: 6180 components: - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 18680 + pos: -6.5,11.5 + parent: 45711 + - uid: 6181 components: - type: Transform - pos: 20.5,21.5 - parent: 2 - - uid: 18681 + pos: -6.5,12.5 + parent: 45711 + - uid: 6183 components: - type: Transform - pos: 20.5,22.5 - parent: 2 - - uid: 18682 + pos: -6.5,13.5 + parent: 45711 + - uid: 6185 components: - type: Transform - pos: 23.5,13.5 - parent: 2 - - uid: 18685 + pos: -7.5,10.5 + parent: 45711 + - uid: 6187 components: - type: Transform - pos: 23.5,14.5 - parent: 2 - - uid: 18686 - components: - - type: Transform - pos: 24.5,14.5 - parent: 2 - - uid: 18687 + pos: -8.5,10.5 + parent: 45711 + - uid: 6189 components: - type: Transform - pos: 25.5,14.5 - parent: 2 - - uid: 18689 + pos: -9.5,10.5 + parent: 45711 + - uid: 6190 components: - type: Transform - pos: 25.5,15.5 - parent: 2 - - uid: 18691 + pos: -10.5,10.5 + parent: 45711 + - uid: 6191 components: - type: Transform - pos: 25.5,16.5 - parent: 2 - - uid: 18692 + pos: -10.5,9.5 + parent: 45711 + - uid: 6192 components: - type: Transform - pos: 25.5,17.5 - parent: 2 - - uid: 18693 + pos: -11.5,9.5 + parent: 45711 + - uid: 6193 components: - type: Transform - pos: 25.5,18.5 - parent: 2 - - uid: 18694 + pos: -11.5,8.5 + parent: 45711 + - uid: 6194 components: - type: Transform - pos: 25.5,19.5 - parent: 2 - - uid: 18695 + pos: -12.5,8.5 + parent: 45711 + - uid: 6195 components: - type: Transform - pos: 26.5,19.5 - parent: 2 - - uid: 18696 + pos: -12.5,7.5 + parent: 45711 + - uid: 6196 components: - type: Transform - pos: 26.5,20.5 - parent: 2 - - uid: 18697 + pos: -13.5,7.5 + parent: 45711 + - uid: 6197 components: - type: Transform - pos: 26.5,21.5 - parent: 2 - - uid: 18698 + pos: -13.5,6.5 + parent: 45711 + - uid: 6198 components: - type: Transform - pos: 26.5,22.5 - parent: 2 - - uid: 18699 + pos: -13.5,5.5 + parent: 45711 + - uid: 6199 components: - type: Transform - pos: 25.5,22.5 - parent: 2 - - uid: 18700 + pos: -13.5,4.5 + parent: 45711 + - uid: 6200 components: - type: Transform - pos: 24.5,22.5 - parent: 2 - - uid: 18701 + pos: -13.5,3.5 + parent: 45711 + - uid: 6201 components: - type: Transform - pos: 23.5,22.5 - parent: 2 - - uid: 18702 + pos: -14.5,3.5 + parent: 45711 + - uid: 6202 components: - type: Transform - pos: 22.5,22.5 - parent: 2 - - uid: 18703 + pos: -15.5,3.5 + parent: 45711 + - uid: 6203 components: - type: Transform - pos: 21.5,22.5 - parent: 2 - - uid: 18711 + pos: -16.5,3.5 + parent: 45711 + - uid: 6204 components: - type: Transform - pos: 25.5,12.5 - parent: 2 - - uid: 18712 + pos: -17.5,3.5 + parent: 45711 + - uid: 6205 components: - type: Transform - pos: 25.5,11.5 - parent: 2 - - uid: 18714 + pos: -18.5,3.5 + parent: 45711 + - uid: 6206 components: - type: Transform - pos: 25.5,10.5 - parent: 2 - - uid: 18715 + pos: -11.5,-9.5 + parent: 45711 + - uid: 6207 components: - type: Transform - pos: 24.5,10.5 - parent: 2 - - uid: 18716 + pos: -11.5,-8.5 + parent: 45711 + - uid: 6208 components: - type: Transform - pos: 23.5,10.5 - parent: 2 - - uid: 18717 + pos: -11.5,-7.5 + parent: 45711 + - uid: 6209 components: - type: Transform - pos: 22.5,10.5 - parent: 2 - - uid: 18718 + pos: -11.5,-6.5 + parent: 45711 + - uid: 6210 components: - type: Transform - pos: 21.5,10.5 - parent: 2 - - uid: 18719 + pos: -11.5,-5.5 + parent: 45711 + - uid: 6211 components: - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 18720 + pos: -11.5,-4.5 + parent: 45711 + - uid: 6212 components: - type: Transform - pos: 20.5,11.5 - parent: 2 - - uid: 18721 + pos: -11.5,-3.5 + parent: 45711 + - uid: 6213 components: - type: Transform - pos: 19.5,22.5 - parent: 2 - - uid: 18722 + pos: -11.5,-2.5 + parent: 45711 + - uid: 6214 components: - type: Transform - pos: 14.5,21.5 - parent: 2 - - uid: 18730 + pos: -11.5,-1.5 + parent: 45711 + - uid: 6215 components: - type: Transform - pos: 15.5,23.5 - parent: 2 - - uid: 18731 + pos: -11.5,-0.5 + parent: 45711 + - uid: 6216 components: - type: Transform - pos: 18.5,22.5 - parent: 2 - - uid: 18732 + pos: -12.5,-0.5 + parent: 45711 + - uid: 6217 components: - type: Transform - pos: 31.5,13.5 - parent: 2 - - uid: 18733 + pos: -13.5,-0.5 + parent: 45711 + - uid: 6218 components: - type: Transform - pos: 31.5,14.5 - parent: 2 - - uid: 18736 + pos: -13.5,0.5 + parent: 45711 + - uid: 6219 components: - type: Transform - pos: 31.5,15.5 - parent: 2 - - uid: 18737 + pos: -13.5,1.5 + parent: 45711 + - uid: 6220 components: - type: Transform - pos: 31.5,16.5 - parent: 2 - - uid: 18740 + pos: -13.5,2.5 + parent: 45711 + - uid: 6222 components: - type: Transform - pos: 32.5,16.5 - parent: 2 - - uid: 18741 + pos: 7.5,13.5 + parent: 45711 + - uid: 6223 components: - type: Transform - pos: 33.5,16.5 - parent: 2 - - uid: 18742 + pos: 7.5,12.5 + parent: 45711 + - uid: 6228 components: - type: Transform - pos: 34.5,16.5 - parent: 2 - - uid: 18743 + pos: 7.5,11.5 + parent: 45711 + - uid: 6230 components: - type: Transform - pos: 34.5,17.5 - parent: 2 - - uid: 18744 + pos: 7.5,10.5 + parent: 45711 + - uid: 6233 components: - type: Transform - pos: 34.5,18.5 - parent: 2 - - uid: 18745 + pos: 6.5,10.5 + parent: 45711 + - uid: 6234 components: - type: Transform - pos: 34.5,19.5 - parent: 2 - - uid: 18746 + pos: 5.5,10.5 + parent: 45711 + - uid: 6236 components: - type: Transform - pos: 34.5,20.5 - parent: 2 - - uid: 18747 + pos: 4.5,10.5 + parent: 45711 + - uid: 6237 components: - type: Transform - pos: 34.5,21.5 - parent: 2 - - uid: 18748 + pos: 3.5,10.5 + parent: 45711 + - uid: 6238 components: - type: Transform - pos: 34.5,22.5 - parent: 2 - - uid: 18749 + pos: 2.5,10.5 + parent: 45711 + - uid: 6241 components: - type: Transform - pos: 34.5,23.5 - parent: 2 - - uid: 18750 + pos: 1.5,10.5 + parent: 45711 + - uid: 6242 components: - type: Transform - pos: 34.5,24.5 - parent: 2 - - uid: 18751 + pos: 0.5,10.5 + parent: 45711 + - uid: 6243 components: - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 18752 + pos: -0.5,10.5 + parent: 45711 + - uid: 6244 components: - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 18753 + pos: -1.5,10.5 + parent: 45711 + - uid: 6245 components: - type: Transform - pos: 32.5,25.5 - parent: 2 - - uid: 18755 + pos: -2.5,10.5 + parent: 45711 + - uid: 6246 components: - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 18757 + pos: -3.5,10.5 + parent: 45711 + - uid: 6248 components: - type: Transform - pos: 31.5,26.5 - parent: 2 - - uid: 18759 + pos: -4.5,10.5 + parent: 45711 + - uid: 6249 components: - type: Transform - pos: 31.5,27.5 - parent: 2 - - uid: 18760 + pos: -5.5,10.5 + parent: 45711 + - uid: 6250 components: - type: Transform - pos: 31.5,28.5 - parent: 2 - - uid: 18768 + pos: 19.5,3.5 + parent: 45711 + - uid: 6251 components: - type: Transform - pos: 30.5,28.5 - parent: 2 - - uid: 18770 + pos: 18.5,3.5 + parent: 45711 + - uid: 6253 components: - type: Transform - pos: 29.5,28.5 - parent: 2 - - uid: 18777 + pos: 17.5,3.5 + parent: 45711 + - uid: 6254 components: - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 18779 + pos: 16.5,3.5 + parent: 45711 + - uid: 6255 components: - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 18780 + pos: 15.5,3.5 + parent: 45711 + - uid: 6259 components: - type: Transform - pos: 27.5,27.5 - parent: 2 - - uid: 18781 + pos: 14.5,3.5 + parent: 45711 + - uid: 6260 components: - type: Transform - pos: 27.5,26.5 - parent: 2 - - uid: 18782 + pos: 14.5,4.5 + parent: 45711 + - uid: 6261 components: - type: Transform - pos: 27.5,25.5 - parent: 2 - - uid: 18792 + pos: 14.5,5.5 + parent: 45711 + - uid: 6263 components: - type: Transform - pos: 27.5,24.5 - parent: 2 - - uid: 18793 + pos: 14.5,6.5 + parent: 45711 + - uid: 6264 components: - type: Transform - pos: 27.5,23.5 - parent: 2 - - uid: 18794 + pos: 14.5,7.5 + parent: 45711 + - uid: 6265 components: - type: Transform - pos: 27.5,22.5 - parent: 2 - - uid: 18795 + pos: 13.5,7.5 + parent: 45711 + - uid: 6266 components: - type: Transform - pos: 45.5,27.5 - parent: 2 - - uid: 18797 + pos: 13.5,8.5 + parent: 45711 + - uid: 6267 components: - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 18798 + pos: 12.5,8.5 + parent: 45711 + - uid: 6268 components: - type: Transform - pos: 45.5,25.5 - parent: 2 - - uid: 18803 + pos: 12.5,9.5 + parent: 45711 + - uid: 6269 components: - type: Transform - pos: 42.5,24.5 - parent: 2 - - uid: 18806 + pos: 11.5,9.5 + parent: 45711 + - uid: 6270 components: - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 18809 + pos: 11.5,10.5 + parent: 45711 + - uid: 6271 components: - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 18810 + pos: 10.5,10.5 + parent: 45711 + - uid: 6272 components: - type: Transform - pos: 37.5,25.5 - parent: 2 - - uid: 18813 + pos: 9.5,10.5 + parent: 45711 + - uid: 6273 components: - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 18815 + pos: 8.5,10.5 + parent: 45711 + - uid: 6274 components: - type: Transform - pos: 39.5,25.5 - parent: 2 - - uid: 18816 + pos: 14.5,2.5 + parent: 45711 + - uid: 6275 components: - type: Transform - pos: 40.5,25.5 - parent: 2 - - uid: 18830 + pos: 14.5,1.5 + parent: 45711 + - uid: 6276 components: - type: Transform - pos: 41.5,25.5 - parent: 2 - - uid: 18831 + pos: 14.5,0.5 + parent: 45711 + - uid: 6277 components: - type: Transform - pos: 42.5,25.5 - parent: 2 - - uid: 18832 + pos: 14.5,-0.5 + parent: 45711 + - uid: 6278 components: - type: Transform - pos: 43.5,25.5 - parent: 2 - - uid: 18833 + pos: 13.5,-0.5 + parent: 45711 + - uid: 6279 components: - type: Transform - pos: 44.5,25.5 - parent: 2 - - uid: 18834 + pos: 12.5,-0.5 + parent: 45711 + - uid: 6280 components: - type: Transform - pos: 42.5,23.5 - parent: 2 - - uid: 18838 + pos: 12.5,-1.5 + parent: 45711 + - uid: 6281 components: - type: Transform - pos: 42.5,22.5 - parent: 2 - - uid: 18839 + pos: 12.5,-2.5 + parent: 45711 + - uid: 6282 components: - type: Transform - pos: 42.5,21.5 - parent: 2 - - uid: 18840 + pos: 12.5,-3.5 + parent: 45711 + - uid: 6283 components: - type: Transform - pos: 42.5,20.5 - parent: 2 - - uid: 18842 + pos: 12.5,-4.5 + parent: 45711 + - uid: 6284 components: - type: Transform - pos: 42.5,19.5 - parent: 2 - - uid: 18843 + pos: 12.5,-5.5 + parent: 45711 + - uid: 6285 components: - type: Transform - pos: 42.5,18.5 - parent: 2 - - uid: 18844 + pos: 12.5,-6.5 + parent: 45711 + - uid: 6286 components: - type: Transform - pos: 42.5,17.5 - parent: 2 - - uid: 18845 + pos: 12.5,-7.5 + parent: 45711 + - uid: 6287 components: - type: Transform - pos: 42.5,16.5 - parent: 2 - - uid: 18846 + pos: 12.5,-8.5 + parent: 45711 + - uid: 6288 components: - type: Transform - pos: 42.5,15.5 - parent: 2 - - uid: 18847 + pos: 12.5,-9.5 + parent: 45711 + - uid: 6289 components: - type: Transform - pos: 42.5,14.5 - parent: 2 - - uid: 18848 + pos: -0.5,11.5 + parent: 45711 + - uid: 6290 components: - type: Transform - pos: 42.5,13.5 - parent: 2 - - uid: 18849 + pos: -0.5,12.5 + parent: 45711 + - uid: 6291 components: - type: Transform - pos: 42.5,12.5 - parent: 2 - - uid: 18972 + pos: -0.5,13.5 + parent: 45711 + - uid: 6292 components: - type: Transform - pos: 35.5,19.5 - parent: 2 - - uid: 18974 + pos: -0.5,14.5 + parent: 45711 + - uid: 6293 components: - type: Transform - pos: 36.5,19.5 - parent: 2 - - uid: 18975 + pos: 0.5,14.5 + parent: 45711 + - uid: 6294 components: - type: Transform - pos: 37.5,19.5 - parent: 2 - - uid: 18978 + pos: 1.5,14.5 + parent: 45711 + - uid: 6295 components: - type: Transform - pos: 47.5,19.5 - parent: 2 - - uid: 18979 + pos: -1.5,14.5 + parent: 45711 + - uid: 6296 components: - type: Transform - pos: 48.5,19.5 - parent: 2 - - uid: 18980 + pos: -1.5,15.5 + parent: 45711 + - uid: 6297 components: - type: Transform - pos: 49.5,19.5 - parent: 2 - - uid: 18982 + pos: -1.5,16.5 + parent: 45711 + - uid: 6298 components: - type: Transform - pos: 50.5,19.5 - parent: 2 - - uid: 18983 + pos: -1.5,17.5 + parent: 45711 + - uid: 6301 components: - type: Transform - pos: 50.5,20.5 - parent: 2 - - uid: 18984 + pos: -1.5,18.5 + parent: 45711 + - uid: 6302 components: - type: Transform - pos: 50.5,21.5 - parent: 2 - - uid: 18985 + pos: -1.5,19.5 + parent: 45711 + - uid: 6303 components: - type: Transform - pos: 50.5,22.5 - parent: 2 - - uid: 18986 + pos: -2.5,16.5 + parent: 45711 + - uid: 6304 components: - type: Transform - pos: 50.5,23.5 - parent: 2 - - uid: 18987 + pos: -3.5,16.5 + parent: 45711 + - uid: 6305 components: - type: Transform - pos: 50.5,24.5 - parent: 2 - - uid: 18988 + pos: -4.5,16.5 + parent: 45711 + - uid: 6306 components: - type: Transform - pos: 50.5,25.5 - parent: 2 - - uid: 18989 + pos: -5.5,16.5 + parent: 45711 + - uid: 6307 components: - type: Transform - pos: 49.5,25.5 - parent: 2 - - uid: 18990 + pos: -6.5,16.5 + parent: 45711 + - uid: 6308 components: - type: Transform - pos: 48.5,25.5 - parent: 2 - - uid: 18991 + pos: -7.5,16.5 + parent: 45711 + - uid: 6309 components: - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 18992 + pos: -8.5,16.5 + parent: 45711 + - uid: 6310 components: - type: Transform - pos: 46.5,25.5 - parent: 2 - - uid: 18997 + pos: -8.5,15.5 + parent: 45711 + - uid: 6314 components: - type: Transform - pos: 22.5,23.5 - parent: 2 - - uid: 18998 + pos: -9.5,15.5 + parent: 45711 + - uid: 6315 components: - type: Transform - pos: 22.5,24.5 - parent: 2 - - uid: 18999 + pos: -10.5,15.5 + parent: 45711 + - uid: 6316 components: - type: Transform - pos: 18.5,28.5 - parent: 2 - - uid: 19000 + pos: -11.5,15.5 + parent: 45711 + - uid: 6317 components: - type: Transform - pos: 19.5,28.5 - parent: 2 - - uid: 19001 + pos: -12.5,15.5 + parent: 45711 + - uid: 6318 components: - type: Transform - pos: 20.5,28.5 - parent: 2 - - uid: 19002 + pos: -13.5,15.5 + parent: 45711 + - uid: 6319 components: - type: Transform - pos: 21.5,28.5 - parent: 2 - - uid: 19003 + pos: -14.5,15.5 + parent: 45711 + - uid: 6320 components: - type: Transform - pos: 22.5,28.5 - parent: 2 - - uid: 19004 + pos: -14.5,16.5 + parent: 45711 + - uid: 6321 components: - type: Transform - pos: 23.5,28.5 - parent: 2 - - uid: 19005 + pos: -14.5,17.5 + parent: 45711 + - uid: 6322 components: - type: Transform - pos: 24.5,28.5 - parent: 2 - - uid: 19006 + pos: -17.5,26.5 + parent: 45711 + - uid: 6323 components: - type: Transform - pos: 25.5,28.5 - parent: 2 - - uid: 19007 + pos: -17.5,25.5 + parent: 45711 + - uid: 6324 components: - type: Transform - pos: 26.5,28.5 - parent: 2 - - uid: 19008 + pos: -17.5,24.5 + parent: 45711 + - uid: 6325 components: - type: Transform - pos: 18.5,33.5 - parent: 2 - - uid: 19009 + pos: -17.5,23.5 + parent: 45711 + - uid: 6326 components: - type: Transform - pos: 19.5,33.5 - parent: 2 - - uid: 19010 + pos: -17.5,22.5 + parent: 45711 + - uid: 6327 components: - type: Transform - pos: 20.5,33.5 - parent: 2 - - uid: 19011 + pos: -16.5,22.5 + parent: 45711 + - uid: 6328 components: - type: Transform - pos: 20.5,34.5 - parent: 2 - - uid: 19012 + pos: -15.5,22.5 + parent: 45711 + - uid: 6329 components: - type: Transform - pos: 21.5,34.5 - parent: 2 - - uid: 19014 + pos: -14.5,22.5 + parent: 45711 + - uid: 6330 components: - type: Transform - pos: 22.5,34.5 - parent: 2 - - uid: 19015 + pos: -13.5,22.5 + parent: 45711 + - uid: 6331 components: - type: Transform - pos: 23.5,34.5 - parent: 2 - - uid: 19016 + pos: -12.5,22.5 + parent: 45711 + - uid: 6332 components: - type: Transform - pos: 24.5,34.5 - parent: 2 - - uid: 19017 + pos: -11.5,22.5 + parent: 45711 + - uid: 6333 components: - type: Transform - pos: 25.5,34.5 - parent: 2 - - uid: 19018 + pos: -10.5,22.5 + parent: 45711 + - uid: 6334 components: - type: Transform - pos: 26.5,34.5 - parent: 2 - - uid: 19021 + pos: -9.5,22.5 + parent: 45711 + - uid: 6335 components: - type: Transform - pos: 27.5,34.5 - parent: 2 - - uid: 19022 + pos: -8.5,22.5 + parent: 45711 + - uid: 6336 components: - type: Transform - pos: 27.5,29.5 - parent: 2 - - uid: 19024 + pos: -8.5,21.5 + parent: 45711 + - uid: 6337 components: - type: Transform - pos: 27.5,30.5 - parent: 2 - - uid: 19025 + pos: -8.5,20.5 + parent: 45711 + - uid: 6338 components: - type: Transform - pos: 27.5,31.5 - parent: 2 - - uid: 19026 + pos: -8.5,19.5 + parent: 45711 + - uid: 6339 components: - type: Transform - pos: 27.5,32.5 - parent: 2 - - uid: 19027 + pos: -8.5,18.5 + parent: 45711 + - uid: 6340 components: - type: Transform - pos: 27.5,33.5 - parent: 2 - - uid: 19028 + pos: -8.5,17.5 + parent: 45711 + - uid: 6341 components: - type: Transform - pos: 28.5,30.5 - parent: 2 - - uid: 19031 + pos: -5.5,28.5 + parent: 45711 + - uid: 6342 components: - type: Transform - pos: 17.5,22.5 - parent: 2 - - uid: 19032 + pos: -6.5,28.5 + parent: 45711 + - uid: 6343 components: - type: Transform - pos: 16.5,22.5 - parent: 2 - - uid: 19033 + pos: -7.5,28.5 + parent: 45711 + - uid: 6344 components: - type: Transform - pos: 15.5,22.5 - parent: 2 - - uid: 19034 + pos: -8.5,28.5 + parent: 45711 + - uid: 6345 components: - type: Transform - pos: 14.5,22.5 - parent: 2 - - uid: 19035 + pos: -8.5,27.5 + parent: 45711 + - uid: 6346 components: - type: Transform - pos: 14.5,20.5 - parent: 2 - - uid: 19036 + pos: -8.5,26.5 + parent: 45711 + - uid: 6347 components: - type: Transform - pos: 15.5,20.5 - parent: 2 - - uid: 19038 + pos: -8.5,25.5 + parent: 45711 + - uid: 6348 components: - type: Transform - pos: 15.5,24.5 - parent: 2 - - uid: 19039 + pos: -8.5,24.5 + parent: 45711 + - uid: 6349 components: - type: Transform - pos: 15.5,25.5 - parent: 2 - - uid: 19041 + pos: -8.5,23.5 + parent: 45711 + - uid: 6350 components: - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 19042 + pos: 2.5,14.5 + parent: 45711 + - uid: 6351 components: - type: Transform - pos: 15.5,27.5 - parent: 2 - - uid: 19043 + pos: 2.5,15.5 + parent: 45711 + - uid: 6352 components: - type: Transform - pos: 15.5,28.5 - parent: 2 - - uid: 19044 + pos: 2.5,16.5 + parent: 45711 + - uid: 6353 components: - type: Transform - pos: 15.5,29.5 - parent: 2 - - uid: 19045 + pos: 3.5,16.5 + parent: 45711 + - uid: 6354 components: - type: Transform - pos: 15.5,30.5 - parent: 2 - - uid: 19046 + pos: 4.5,16.5 + parent: 45711 + - uid: 6355 components: - type: Transform - pos: 15.5,31.5 - parent: 2 - - uid: 19047 + pos: 5.5,16.5 + parent: 45711 + - uid: 6357 components: - type: Transform - pos: 14.5,31.5 - parent: 2 - - uid: 19048 + pos: 6.5,16.5 + parent: 45711 + - uid: 6358 components: - type: Transform - pos: 13.5,31.5 - parent: 2 - - uid: 19049 + pos: 7.5,16.5 + parent: 45711 + - uid: 6359 components: - type: Transform - pos: 12.5,31.5 - parent: 2 - - uid: 19105 + pos: 8.5,16.5 + parent: 45711 + - uid: 6360 components: - type: Transform - pos: 10.5,24.5 - parent: 2 - - uid: 19107 + pos: 9.5,16.5 + parent: 45711 + - uid: 6361 components: - type: Transform - pos: 10.5,23.5 - parent: 2 - - uid: 19108 + pos: 10.5,16.5 + parent: 45711 + - uid: 6362 components: - type: Transform - pos: 9.5,24.5 - parent: 2 - - uid: 19109 + pos: 11.5,16.5 + parent: 45711 + - uid: 6363 components: - type: Transform - pos: 11.5,22.5 - parent: 2 - - uid: 19110 + pos: 12.5,16.5 + parent: 45711 + - uid: 6364 components: - type: Transform - pos: 10.5,22.5 - parent: 2 - - uid: 19111 + pos: 13.5,16.5 + parent: 45711 + - uid: 6365 components: - type: Transform - pos: 12.5,22.5 - parent: 2 - - uid: 19112 + pos: 14.5,16.5 + parent: 45711 + - uid: 6366 components: - type: Transform - pos: 13.5,22.5 - parent: 2 - - uid: 19179 + pos: 15.5,16.5 + parent: 45711 + - uid: 6367 components: - type: Transform - pos: 0.5,15.5 - parent: 2 - - uid: 19182 + pos: 16.5,16.5 + parent: 45711 + - uid: 6368 components: - type: Transform - pos: 1.5,15.5 - parent: 2 - - uid: 19183 + pos: 16.5,17.5 + parent: 45711 + - uid: 6369 components: - type: Transform - pos: -0.5,15.5 - parent: 2 - - uid: 19184 + pos: 16.5,18.5 + parent: 45711 + - uid: 6370 components: - type: Transform - pos: -0.5,16.5 - parent: 2 - - uid: 19185 + pos: 16.5,19.5 + parent: 45711 + - uid: 6371 components: - type: Transform - pos: -0.5,17.5 - parent: 2 - - uid: 19186 + pos: 17.5,16.5 + parent: 45711 + - uid: 6372 components: - type: Transform - pos: -0.5,18.5 - parent: 2 - - uid: 19187 + pos: 18.5,16.5 + parent: 45711 + - uid: 6373 components: - type: Transform - pos: -0.5,19.5 - parent: 2 - - uid: 19189 + pos: 19.5,16.5 + parent: 45711 + - uid: 6374 components: - type: Transform - pos: -0.5,20.5 - parent: 2 - - uid: 19190 + pos: 20.5,16.5 + parent: 45711 + - uid: 6375 components: - type: Transform - pos: -0.5,21.5 - parent: 2 - - uid: 19191 + pos: 21.5,16.5 + parent: 45711 + - uid: 6376 components: - type: Transform - pos: -0.5,22.5 - parent: 2 - - uid: 19192 + pos: 22.5,16.5 + parent: 45711 + - uid: 6377 components: - type: Transform - pos: 0.5,22.5 - parent: 2 - - uid: 19194 + pos: 22.5,15.5 + parent: 45711 + - uid: 6378 components: - type: Transform - pos: 1.5,22.5 - parent: 2 - - uid: 19195 + pos: 22.5,14.5 + parent: 45711 + - uid: 6379 components: - type: Transform - pos: 2.5,22.5 - parent: 2 - - uid: 19196 + pos: 20.5,17.5 + parent: 45711 + - uid: 6380 components: - type: Transform - pos: 3.5,22.5 - parent: 2 - - uid: 19197 + pos: 20.5,18.5 + parent: 45711 + - uid: 6383 components: - type: Transform - pos: 4.5,22.5 - parent: 2 - - uid: 19198 + pos: 20.5,19.5 + parent: 45711 + - uid: 6385 components: - type: Transform - pos: 5.5,22.5 - parent: 2 - - uid: 19199 + pos: 20.5,20.5 + parent: 45711 + - uid: 6388 components: - type: Transform - pos: 6.5,22.5 - parent: 2 - - uid: 19200 + pos: 20.5,21.5 + parent: 45711 + - uid: 6389 components: - type: Transform - pos: 7.5,22.5 - parent: 2 - - uid: 19201 + pos: 20.5,22.5 + parent: 45711 + - uid: 6390 components: - type: Transform - pos: 8.5,22.5 - parent: 2 - - uid: 19202 + pos: 20.5,23.5 + parent: 45711 + - uid: 6392 components: - type: Transform - pos: 9.5,22.5 - parent: 2 - - uid: 19962 + pos: 20.5,24.5 + parent: 45711 + - uid: 6395 components: - type: Transform - pos: 39.5,-10.5 - parent: 2 - - uid: 19963 + pos: 20.5,25.5 + parent: 45711 + - uid: 6396 components: - type: Transform - pos: 39.5,-11.5 - parent: 2 - - uid: 20194 + pos: 20.5,26.5 + parent: 45711 + - uid: 6399 components: - type: Transform - pos: 13.5,10.5 - parent: 2 - - uid: 20195 + pos: 20.5,27.5 + parent: 45711 + - uid: 6400 components: - type: Transform - pos: 13.5,9.5 - parent: 2 - - uid: 20197 + pos: 20.5,28.5 + parent: 45711 + - uid: 6401 components: - type: Transform - pos: 14.5,9.5 - parent: 2 - - uid: 20202 + pos: 20.5,29.5 + parent: 45711 + - uid: 6402 components: - type: Transform - pos: 14.5,8.5 - parent: 2 - - uid: 20206 + pos: 20.5,30.5 + parent: 45711 + - uid: 6403 components: - type: Transform - pos: 14.5,7.5 - parent: 2 - - uid: 20246 + pos: 20.5,31.5 + parent: 45711 + - uid: 6404 components: - type: Transform - pos: 14.5,6.5 - parent: 2 - - uid: 20268 + pos: 20.5,32.5 + parent: 45711 + - uid: 6405 components: - type: Transform - pos: 14.5,5.5 - parent: 2 - - uid: 20269 + pos: 20.5,33.5 + parent: 45711 + - uid: 6406 components: - type: Transform - pos: 14.5,4.5 - parent: 2 - - uid: 20271 + pos: 20.5,34.5 + parent: 45711 + - uid: 6407 components: - type: Transform - pos: 14.5,3.5 - parent: 2 - - uid: 20281 + pos: 20.5,35.5 + parent: 45711 + - uid: 6408 components: - type: Transform - pos: 14.5,2.5 - parent: 2 - - uid: 20282 + pos: 20.5,36.5 + parent: 45711 + - uid: 6409 components: - type: Transform - pos: 14.5,1.5 - parent: 2 - - uid: 20287 + pos: 20.5,37.5 + parent: 45711 + - uid: 6410 components: - type: Transform - pos: 14.5,0.5 - parent: 2 - - uid: 20288 + pos: 21.5,26.5 + parent: 45711 + - uid: 6411 components: - type: Transform - pos: 15.5,0.5 - parent: 2 - - uid: 20289 + pos: 22.5,26.5 + parent: 45711 + - uid: 6412 components: - type: Transform - pos: 16.5,0.5 - parent: 2 - - uid: 20290 + pos: 23.5,26.5 + parent: 45711 + - uid: 6413 components: - type: Transform - pos: 17.5,0.5 - parent: 2 - - uid: 20296 + pos: 24.5,26.5 + parent: 45711 + - uid: 6414 components: - type: Transform - pos: 18.5,0.5 - parent: 2 - - uid: 20300 + pos: 24.5,25.5 + parent: 45711 + - uid: 6416 components: - type: Transform - pos: 19.5,0.5 - parent: 2 - - uid: 20301 + pos: 24.5,24.5 + parent: 45711 + - uid: 6417 components: - type: Transform - pos: 20.5,0.5 - parent: 2 - - uid: 20355 + pos: 25.5,24.5 + parent: 45711 + - uid: 6418 components: - type: Transform - pos: 20.5,1.5 - parent: 2 - - uid: 20361 + pos: 26.5,24.5 + parent: 45711 + - uid: 6419 components: - type: Transform - pos: 20.5,2.5 - parent: 2 - - uid: 20388 + pos: 27.5,24.5 + parent: 45711 + - uid: 6424 components: - type: Transform - pos: 20.5,3.5 - parent: 2 - - uid: 20391 + pos: 28.5,24.5 + parent: 45711 + - uid: 6426 components: - type: Transform - pos: 20.5,4.5 - parent: 2 - - uid: 20392 + pos: 28.5,23.5 + parent: 45711 + - uid: 6427 components: - type: Transform - pos: 20.5,5.5 - parent: 2 - - uid: 20395 + pos: 29.5,23.5 + parent: 45711 + - uid: 6428 components: - type: Transform - pos: 20.5,6.5 - parent: 2 - - uid: 20405 + pos: 30.5,23.5 + parent: 45711 + - uid: 6429 components: - type: Transform - pos: 20.5,7.5 - parent: 2 - - uid: 20408 + pos: 30.5,22.5 + parent: 45711 + - uid: 6430 components: - type: Transform - pos: 20.5,8.5 - parent: 2 - - uid: 20415 + pos: 14.5,17.5 + parent: 45711 + - uid: 6431 components: - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 20553 + pos: 14.5,18.5 + parent: 45711 + - uid: 6432 components: - type: Transform - pos: -23.5,-33.5 - parent: 2 - - uid: 20561 + pos: 14.5,19.5 + parent: 45711 + - uid: 6433 components: - type: Transform - pos: -23.5,-32.5 - parent: 2 - - uid: 20611 + pos: 14.5,20.5 + parent: 45711 + - uid: 6434 components: - type: Transform - pos: -22.5,-32.5 - parent: 2 - - uid: 20717 + pos: 14.5,21.5 + parent: 45711 + - uid: 6435 components: - type: Transform - pos: -21.5,-32.5 - parent: 2 - - uid: 20729 + pos: 14.5,22.5 + parent: 45711 + - uid: 6436 components: - type: Transform - pos: 58.5,-39.5 - parent: 2 - - uid: 20764 + pos: 14.5,23.5 + parent: 45711 + - uid: 6440 components: - type: Transform - pos: -23.5,-31.5 - parent: 2 - - uid: 20769 + pos: 14.5,24.5 + parent: 45711 + - uid: 6441 components: - type: Transform - pos: -23.5,-30.5 - parent: 2 - - uid: 20805 + pos: 14.5,25.5 + parent: 45711 + - uid: 6442 components: - type: Transform - pos: -23.5,-29.5 - parent: 2 - - uid: 20806 + pos: 14.5,26.5 + parent: 45711 + - uid: 6443 components: - type: Transform - pos: -23.5,-28.5 - parent: 2 - - uid: 20814 + pos: 14.5,27.5 + parent: 45711 + - uid: 6444 components: - type: Transform - pos: -23.5,-27.5 - parent: 2 - - uid: 20821 + pos: 14.5,28.5 + parent: 45711 + - uid: 6445 components: - type: Transform - pos: -23.5,-26.5 - parent: 2 - - uid: 20829 + pos: 14.5,29.5 + parent: 45711 + - uid: 6446 components: - type: Transform - pos: -23.5,-25.5 - parent: 2 - - uid: 20830 + pos: 14.5,30.5 + parent: 45711 + - uid: 6447 components: - type: Transform - pos: -23.5,-24.5 - parent: 2 - - uid: 20831 + pos: 14.5,31.5 + parent: 45711 + - uid: 6448 components: - type: Transform - pos: -23.5,-23.5 - parent: 2 - - uid: 20832 + pos: 14.5,32.5 + parent: 45711 + - uid: 6449 components: - type: Transform - pos: -23.5,-22.5 - parent: 2 - - uid: 20834 + pos: 14.5,33.5 + parent: 45711 + - uid: 6450 components: - type: Transform - pos: -23.5,-21.5 - parent: 2 - - uid: 20835 + pos: 14.5,34.5 + parent: 45711 + - uid: 6451 components: - type: Transform - pos: -27.5,-18.5 - parent: 2 - - uid: 20841 + pos: 15.5,34.5 + parent: 45711 + - uid: 6452 components: - type: Transform - pos: -27.5,-19.5 - parent: 2 - - uid: 20843 + pos: 16.5,34.5 + parent: 45711 + - uid: 6453 components: - type: Transform - pos: -27.5,-20.5 - parent: 2 - - uid: 20846 + pos: 17.5,34.5 + parent: 45711 + - uid: 6454 components: - type: Transform - pos: -27.5,-21.5 - parent: 2 - - uid: 20849 + pos: 18.5,34.5 + parent: 45711 + - uid: 6455 components: - type: Transform - pos: -26.5,-21.5 - parent: 2 - - uid: 20859 + pos: 8.5,17.5 + parent: 45711 + - uid: 6456 components: - type: Transform - pos: -25.5,-21.5 - parent: 2 - - uid: 20878 + pos: 8.5,18.5 + parent: 45711 + - uid: 6457 components: - type: Transform - pos: -24.5,-21.5 - parent: 2 - - uid: 20880 + pos: 8.5,19.5 + parent: 45711 + - uid: 6458 components: - type: Transform - pos: -32.5,-16.5 - parent: 2 - - uid: 20881 + pos: 8.5,20.5 + parent: 45711 + - uid: 6459 components: - type: Transform - pos: -29.5,-16.5 - parent: 2 - - uid: 20885 + pos: 8.5,21.5 + parent: 45711 + - uid: 6460 components: - type: Transform - pos: -28.5,-16.5 - parent: 2 - - uid: 20886 + pos: 8.5,22.5 + parent: 45711 + - uid: 6461 components: - type: Transform - pos: -27.5,-16.5 - parent: 2 - - uid: 20905 + pos: 8.5,23.5 + parent: 45711 + - uid: 6462 components: - type: Transform - pos: -26.5,-16.5 - parent: 2 - - uid: 20913 + pos: 8.5,24.5 + parent: 45711 + - uid: 6463 components: - type: Transform - pos: -25.5,-16.5 - parent: 2 - - uid: 20914 + pos: 8.5,25.5 + parent: 45711 + - uid: 6464 components: - type: Transform - pos: -24.5,-16.5 - parent: 2 - - uid: 20921 + pos: 8.5,26.5 + parent: 45711 + - uid: 6465 components: - type: Transform - pos: -23.5,-16.5 - parent: 2 - - uid: 20926 + pos: 8.5,27.5 + parent: 45711 + - uid: 6466 components: - type: Transform - pos: -13.5,50.5 - parent: 2 - - uid: 20934 + pos: 8.5,28.5 + parent: 45711 + - uid: 6467 components: - type: Transform - pos: -22.5,-16.5 - parent: 2 - - uid: 20947 + pos: 8.5,29.5 + parent: 45711 + - uid: 6468 components: - type: Transform - pos: -12.5,47.5 - parent: 2 - - uid: 20953 + pos: 8.5,30.5 + parent: 45711 + - uid: 6469 components: - type: Transform - pos: -11.5,47.5 - parent: 2 - - uid: 20957 + pos: 8.5,31.5 + parent: 45711 + - uid: 6470 components: - type: Transform - pos: -11.5,-20.5 - parent: 2 - - uid: 20959 + pos: 8.5,32.5 + parent: 45711 + - uid: 6471 components: - type: Transform - pos: -11.5,-19.5 - parent: 2 - - uid: 20982 + pos: 8.5,33.5 + parent: 45711 + - uid: 6472 components: - type: Transform - pos: -11.5,-18.5 - parent: 2 - - uid: 20985 + pos: -10.5,31.5 + parent: 45711 + - uid: 6473 components: - type: Transform - pos: -13.5,47.5 - parent: 2 - - uid: 20986 + pos: -10.5,32.5 + parent: 45711 + - uid: 6474 components: - type: Transform - pos: -13.5,49.5 - parent: 2 - - uid: 20989 + pos: -10.5,33.5 + parent: 45711 + - uid: 6475 components: - type: Transform - pos: -13.5,48.5 - parent: 2 - - uid: 20990 + pos: -10.5,34.5 + parent: 45711 + - uid: 6477 components: - type: Transform - pos: -7.5,-21.5 - parent: 2 - - uid: 20999 + pos: -9.5,34.5 + parent: 45711 + - uid: 6478 components: - type: Transform - pos: -7.5,-24.5 - parent: 2 - - uid: 21012 + pos: -8.5,34.5 + parent: 45711 + - uid: 6479 components: - type: Transform - pos: -6.5,-24.5 - parent: 2 - - uid: 21020 + pos: -7.5,34.5 + parent: 45711 + - uid: 6480 components: - type: Transform - pos: -5.5,-24.5 - parent: 2 - - uid: 21034 + pos: -6.5,34.5 + parent: 45711 + - uid: 6481 components: - type: Transform - pos: -5.5,-23.5 - parent: 2 - - uid: 21046 + pos: -5.5,34.5 + parent: 45711 + - uid: 6482 components: - type: Transform - pos: -5.5,-22.5 - parent: 2 - - uid: 21059 + pos: -4.5,34.5 + parent: 45711 + - uid: 6483 components: - type: Transform - pos: -7.5,-23.5 - parent: 2 - - uid: 21062 + pos: -3.5,34.5 + parent: 45711 + - uid: 6484 components: - type: Transform - pos: -7.5,-22.5 - parent: 2 - - uid: 21123 + pos: -2.5,34.5 + parent: 45711 + - uid: 6485 components: - type: Transform - pos: -21.5,-20.5 - parent: 2 - - uid: 21124 + pos: -1.5,34.5 + parent: 45711 + - uid: 6486 components: - type: Transform - pos: -21.5,-16.5 - parent: 2 - - uid: 21144 + pos: -0.5,34.5 + parent: 45711 + - uid: 6487 components: - type: Transform - pos: -21.5,-17.5 - parent: 2 - - uid: 21220 + pos: 0.5,34.5 + parent: 45711 + - uid: 6488 components: - type: Transform - pos: -21.5,-18.5 - parent: 2 - - uid: 21223 + pos: 0.5,33.5 + parent: 45711 + - uid: 6489 components: - type: Transform - pos: -21.5,-19.5 - parent: 2 - - uid: 21274 + pos: 1.5,33.5 + parent: 45711 + - uid: 6490 components: - type: Transform - pos: -18.5,-20.5 - parent: 2 - - uid: 21287 + pos: 2.5,33.5 + parent: 45711 + - uid: 6491 components: - type: Transform - pos: -18.5,-19.5 - parent: 2 - - uid: 21291 + pos: 3.5,33.5 + parent: 45711 + - uid: 6492 components: - type: Transform - pos: -18.5,-18.5 - parent: 2 - - uid: 21293 + pos: 4.5,33.5 + parent: 45711 + - uid: 6493 components: - type: Transform - pos: -18.5,-17.5 - parent: 2 - - uid: 21306 + pos: 5.5,33.5 + parent: 45711 + - uid: 6494 components: - type: Transform - pos: -18.5,-16.5 - parent: 2 - - uid: 21324 + pos: 6.5,33.5 + parent: 45711 + - uid: 6495 components: - type: Transform - pos: -17.5,-16.5 - parent: 2 - - uid: 21326 + pos: 7.5,33.5 + parent: 45711 + - uid: 6496 components: - type: Transform - pos: -16.5,-16.5 - parent: 2 - - uid: 21328 + pos: 0.5,35.5 + parent: 45711 + - uid: 6497 components: - type: Transform - pos: -15.5,-16.5 - parent: 2 - - uid: 21341 + pos: 0.5,36.5 + parent: 45711 + - uid: 6498 components: - type: Transform - pos: -15.5,-15.5 - parent: 2 - - uid: 21343 + pos: -5.5,6.5 + parent: 45711 + - uid: 6499 components: - type: Transform - pos: -15.5,-15.5 - parent: 2 - - uid: 21344 + pos: -4.5,6.5 + parent: 45711 + - uid: 6500 components: - type: Transform - pos: -19.5,-9.5 - parent: 2 - - uid: 21352 + pos: -3.5,6.5 + parent: 45711 + - uid: 6501 components: - type: Transform - pos: -20.5,-9.5 - parent: 2 - - uid: 21396 + pos: -3.5,5.5 + parent: 45711 + - uid: 6502 components: - type: Transform - pos: -21.5,-9.5 - parent: 2 - - uid: 21419 + pos: -3.5,4.5 + parent: 45711 + - uid: 6503 components: - type: Transform - pos: -21.5,-10.5 - parent: 2 - - uid: 21450 + pos: -3.5,3.5 + parent: 45711 + - uid: 6504 components: - type: Transform - pos: -21.5,-11.5 - parent: 2 - - uid: 21461 + pos: -3.5,2.5 + parent: 45711 + - uid: 6505 components: - type: Transform - pos: -21.5,-12.5 - parent: 2 - - uid: 21473 + pos: -4.5,2.5 + parent: 45711 + - uid: 8106 components: - type: Transform - pos: -21.5,-13.5 + pos: 82.5,46.5 parent: 2 - - uid: 21475 + - uid: 8117 components: - type: Transform - pos: -21.5,-14.5 + pos: 21.5,-20.5 parent: 2 - - uid: 21476 + - uid: 12258 components: - type: Transform - pos: -21.5,-15.5 + pos: 57.5,-28.5 parent: 2 - - uid: 21504 + - uid: 13796 components: - type: Transform - pos: -22.5,-12.5 + pos: 39.5,-20.5 parent: 2 - - uid: 21514 + - uid: 13827 components: - type: Transform - pos: -23.5,-12.5 + pos: 37.5,-20.5 parent: 2 - - uid: 21534 + - uid: 13828 components: - type: Transform - pos: -24.5,-12.5 + pos: 38.5,-20.5 parent: 2 - - uid: 21541 + - uid: 14183 components: - type: Transform - pos: -25.5,-12.5 + pos: 57.5,-34.5 parent: 2 - - uid: 21544 + - uid: 14252 components: - type: Transform - pos: -25.5,-11.5 + pos: 57.5,-27.5 parent: 2 - - uid: 21567 + - uid: 14360 components: - type: Transform - pos: -25.5,-10.5 + pos: 59.5,-34.5 parent: 2 - - uid: 21568 + - uid: 14424 components: - type: Transform - pos: -25.5,-9.5 + pos: 56.5,-29.5 parent: 2 - - uid: 21569 + - uid: 14432 components: - type: Transform - pos: -21.5,-8.5 + pos: -14.5,-11.5 parent: 2 - - uid: 21573 + - uid: 14491 components: - type: Transform - pos: -21.5,-7.5 + pos: 56.5,-30.5 parent: 2 - - uid: 21683 + - uid: 14500 components: - type: Transform - pos: -22.5,-7.5 + pos: 56.5,-33.5 parent: 2 - - uid: 21708 + - uid: 14567 components: - type: Transform - pos: -23.5,-7.5 + pos: -13.5,-12.5 parent: 2 - - uid: 21715 + - uid: 14568 components: - type: Transform - pos: -24.5,-7.5 + pos: -15.5,-12.5 parent: 2 - - uid: 21737 + - uid: 15031 components: - type: Transform - pos: -25.5,-7.5 + pos: -12.5,-12.5 parent: 2 - - uid: 21742 + - uid: 15043 components: - type: Transform - pos: -25.5,-6.5 + pos: -15.5,-9.5 parent: 2 - - uid: 21771 + - uid: 15276 components: - type: Transform - pos: -25.5,-5.5 + pos: 60.5,-34.5 parent: 2 - - uid: 22445 + - uid: 15568 components: - type: Transform - pos: 57.5,-42.5 + pos: 33.5,67.5 parent: 2 - - uid: 22450 + - uid: 15569 components: - type: Transform - pos: 59.5,-37.5 + pos: 33.5,66.5 parent: 2 - - uid: 22465 + - uid: 15570 components: - type: Transform - pos: 59.5,-39.5 + pos: 33.5,65.5 parent: 2 - - uid: 23634 + - uid: 15571 components: - type: Transform - pos: 13.5,-21.5 + pos: 33.5,64.5 parent: 2 - - uid: 23732 + - uid: 15574 components: - type: Transform - pos: -48.5,-33.5 + pos: 32.5,64.5 parent: 2 - - uid: 23786 + - uid: 15575 components: - type: Transform - pos: 13.5,-23.5 + pos: 31.5,64.5 parent: 2 - - uid: 23836 + - uid: 15578 components: - type: Transform - pos: 14.5,-20.5 + pos: 37.5,62.5 parent: 2 - - uid: 24002 + - uid: 15579 components: - type: Transform - pos: 13.5,-20.5 + pos: 37.5,63.5 parent: 2 - - uid: 24031 + - uid: 15580 components: - type: Transform - pos: -24.5,-32.5 + pos: 37.5,64.5 parent: 2 - - uid: 24038 + - uid: 15582 components: - type: Transform - pos: -25.5,-32.5 + pos: 37.5,65.5 parent: 2 - - uid: 24091 + - uid: 15583 components: - type: Transform - pos: 15.5,-20.5 + pos: 37.5,66.5 parent: 2 - - uid: 24099 + - uid: 15585 components: - type: Transform - pos: -26.5,-32.5 + pos: 36.5,64.5 parent: 2 - - uid: 24110 + - uid: 15586 components: - type: Transform - pos: -27.5,-32.5 + pos: 35.5,64.5 parent: 2 - - uid: 24117 + - uid: 15587 components: - type: Transform - pos: -28.5,-32.5 + pos: 34.5,64.5 parent: 2 - - uid: 24120 + - uid: 15588 components: - type: Transform - pos: -29.5,-32.5 + pos: 38.5,64.5 parent: 2 - - uid: 24134 + - uid: 15589 components: - type: Transform - pos: 13.5,-22.5 + pos: 39.5,64.5 parent: 2 - - uid: 24140 + - uid: 15590 components: - type: Transform - pos: -30.5,-32.5 + pos: 40.5,64.5 parent: 2 - - uid: 24141 + - uid: 15591 components: - type: Transform - pos: -31.5,-32.5 + pos: 41.5,64.5 parent: 2 - - uid: 24144 + - uid: 15592 components: - type: Transform - pos: -32.5,-32.5 + pos: 42.5,64.5 parent: 2 - - uid: 24146 + - uid: 15593 components: - type: Transform - pos: -33.5,-32.5 + pos: 43.5,64.5 parent: 2 - - uid: 24152 + - uid: 15594 components: - type: Transform - pos: -34.5,-32.5 + pos: 44.5,64.5 parent: 2 - - uid: 24153 + - uid: 15595 components: - type: Transform - pos: -34.5,-31.5 + pos: 45.5,64.5 parent: 2 - - uid: 24171 + - uid: 15596 components: - type: Transform - pos: 11.5,-23.5 + pos: 46.5,64.5 parent: 2 - - uid: 24220 + - uid: 15597 components: - type: Transform - pos: -34.5,-30.5 + pos: 47.5,64.5 parent: 2 - - uid: 24221 + - uid: 15598 components: - type: Transform - pos: -50.5,50.5 + pos: 48.5,64.5 parent: 2 - - uid: 24243 + - uid: 15599 components: - type: Transform - pos: 11.5,-22.5 + pos: 53.5,69.5 parent: 2 - - uid: 24270 + - uid: 15600 components: - type: Transform - pos: 59.5,-38.5 + pos: 52.5,69.5 parent: 2 - - uid: 24278 + - uid: 15601 components: - type: Transform - pos: 12.5,-23.5 + pos: 51.5,69.5 parent: 2 - - uid: 24279 + - uid: 15602 components: - type: Transform - pos: 16.5,-20.5 + pos: 50.5,69.5 parent: 2 - - uid: 24288 + - uid: 15603 components: - type: Transform - pos: -51.5,50.5 + pos: 49.5,69.5 parent: 2 - - uid: 24289 + - uid: 15604 components: - type: Transform - pos: -52.5,50.5 + pos: 48.5,69.5 parent: 2 - - uid: 24295 + - uid: 15607 components: - type: Transform - pos: -53.5,50.5 + pos: 48.5,68.5 parent: 2 - - uid: 24298 + - uid: 15608 components: - type: Transform - pos: -54.5,50.5 + pos: 48.5,67.5 parent: 2 - - uid: 24299 + - uid: 15609 components: - type: Transform - pos: -35.5,-32.5 + pos: 48.5,66.5 parent: 2 - - uid: 24300 + - uid: 15610 components: - type: Transform - pos: -36.5,-32.5 + pos: 48.5,65.5 parent: 2 - - uid: 24314 + - uid: 15612 components: - type: Transform - pos: -37.5,-33.5 + pos: 53.5,59.5 parent: 2 - - uid: 24315 + - uid: 15613 components: - type: Transform - pos: -37.5,-32.5 + pos: 52.5,59.5 parent: 2 - - uid: 24317 + - uid: 15614 components: - type: Transform - pos: -37.5,-34.5 + pos: 51.5,59.5 parent: 2 - - uid: 24332 + - uid: 15615 components: - type: Transform - pos: -38.5,-34.5 + pos: 50.5,59.5 parent: 2 - - uid: 24333 + - uid: 15616 components: - type: Transform - pos: -39.5,-34.5 + pos: 49.5,59.5 parent: 2 - - uid: 24340 + - uid: 15617 components: - type: Transform - pos: -40.5,-34.5 + pos: 48.5,59.5 parent: 2 - - uid: 24348 + - uid: 15618 components: - type: Transform - pos: -41.5,-34.5 + pos: 48.5,60.5 parent: 2 - - uid: 24383 + - uid: 15619 components: - type: Transform - pos: -42.5,-34.5 + pos: 48.5,61.5 parent: 2 - - uid: 24389 + - uid: 15620 components: - type: Transform - pos: -43.5,-34.5 + pos: 48.5,62.5 parent: 2 - - uid: 24396 + - uid: 15621 components: - type: Transform - pos: -44.5,-34.5 + pos: 48.5,63.5 parent: 2 - - uid: 24399 + - uid: 15624 components: - type: Transform - pos: -45.5,-34.5 + pos: 49.5,64.5 parent: 2 - - uid: 24404 + - uid: 15625 components: - type: Transform - pos: -46.5,-34.5 + pos: 50.5,64.5 parent: 2 - - uid: 24405 + - uid: 15626 components: - type: Transform - pos: -47.5,-34.5 + pos: 51.5,64.5 parent: 2 - - uid: 24407 + - uid: 15627 components: - type: Transform - pos: -48.5,-34.5 + pos: 52.5,64.5 parent: 2 - - uid: 24408 + - uid: 15628 components: - type: Transform - pos: -48.5,-32.5 + pos: 53.5,64.5 parent: 2 - - uid: 24412 + - uid: 15629 components: - type: Transform - pos: -48.5,-31.5 + pos: 54.5,64.5 parent: 2 - - uid: 24414 + - uid: 15630 components: - type: Transform - pos: -48.5,-30.5 + pos: 55.5,64.5 parent: 2 - - uid: 24420 + - uid: 15631 components: - type: Transform - pos: -48.5,-29.5 + pos: 60.5,64.5 parent: 2 - - uid: 24428 + - uid: 15632 components: - type: Transform - pos: 54.5,-23.5 + pos: 59.5,64.5 parent: 2 - - uid: 24459 + - uid: 15633 components: - type: Transform - pos: -48.5,-28.5 + pos: 58.5,64.5 parent: 2 - - uid: 24469 + - uid: 15635 components: - type: Transform - pos: -48.5,-35.5 + pos: 57.5,64.5 parent: 2 - - uid: 24473 + - uid: 15636 components: - type: Transform - pos: -48.5,-36.5 + pos: 56.5,64.5 parent: 2 - - uid: 24478 + - uid: 15689 components: - type: Transform - pos: -48.5,-37.5 + pos: 57.5,-29.5 parent: 2 - - uid: 24480 + - uid: 16568 components: - type: Transform - pos: -48.5,-38.5 + pos: -14.5,-12.5 parent: 2 - - uid: 24487 + - uid: 17828 components: - type: Transform - pos: -48.5,-39.5 + pos: -16.5,66.5 parent: 2 - - uid: 24529 + - uid: 17957 components: - type: Transform - pos: -48.5,-40.5 + pos: -74.5,1.5 parent: 2 - - uid: 24532 + - uid: 17958 components: - type: Transform - pos: -48.5,-41.5 + pos: -74.5,2.5 parent: 2 - - uid: 24533 + - uid: 17959 components: - type: Transform - pos: -48.5,-42.5 + pos: -74.5,3.5 parent: 2 - - uid: 24549 + - uid: 17960 components: - type: Transform - pos: -48.5,-43.5 + pos: -74.5,4.5 parent: 2 - - uid: 24599 + - uid: 17961 components: - type: Transform - pos: -48.5,-44.5 + pos: -74.5,5.5 parent: 2 - - uid: 24600 + - uid: 17962 components: - type: Transform - pos: -48.5,-45.5 + pos: -74.5,6.5 parent: 2 - - uid: 24618 + - uid: 17963 components: - type: Transform - pos: -48.5,-46.5 + pos: -74.5,7.5 parent: 2 - - uid: 24645 + - uid: 17964 components: - type: Transform - pos: -48.5,-47.5 + pos: -74.5,8.5 parent: 2 - - uid: 24646 + - uid: 17965 components: - type: Transform - pos: -48.5,-48.5 + pos: -76.5,7.5 parent: 2 - - uid: 24667 + - uid: 17966 components: - type: Transform - pos: -48.5,-49.5 + pos: -77.5,7.5 parent: 2 - - uid: 24669 + - uid: 17967 components: - type: Transform - pos: -48.5,-50.5 + pos: -78.5,7.5 parent: 2 - - uid: 24670 + - uid: 17968 components: - type: Transform - pos: -48.5,-51.5 + pos: -79.5,7.5 parent: 2 - - uid: 24671 + - uid: 17969 components: - type: Transform - pos: -49.5,-51.5 + pos: -80.5,7.5 parent: 2 - - uid: 24674 + - uid: 17970 components: - type: Transform - pos: -50.5,-51.5 + pos: -81.5,7.5 parent: 2 - - uid: 24678 + - uid: 17971 components: - type: Transform - pos: -47.5,-41.5 + pos: -81.5,8.5 parent: 2 - - uid: 24681 + - uid: 17972 components: - type: Transform - pos: -46.5,-41.5 + pos: -81.5,9.5 parent: 2 - - uid: 24833 + - uid: 17976 components: - type: Transform - pos: 55.5,-24.5 + pos: -82.5,7.5 parent: 2 - - uid: 25040 + - uid: 17977 components: - type: Transform - pos: 54.5,-24.5 + pos: -83.5,7.5 parent: 2 - - uid: 25157 + - uid: 17978 components: - type: Transform - pos: -13.5,-20.5 + pos: -84.5,7.5 parent: 2 - - uid: 25200 + - uid: 17979 components: - type: Transform - pos: -49.5,-65.5 + pos: -85.5,7.5 parent: 2 - - uid: 25212 + - uid: 17980 components: - type: Transform - pos: -49.5,-64.5 + pos: -86.5,7.5 parent: 2 - - uid: 25222 + - uid: 17981 components: - type: Transform - pos: -49.5,-63.5 + pos: -87.5,7.5 parent: 2 - - uid: 25226 + - uid: 17982 components: - type: Transform - pos: -49.5,-62.5 + pos: -88.5,7.5 parent: 2 - - uid: 25248 + - uid: 17983 components: - type: Transform - pos: -23.5,-20.5 + pos: -89.5,7.5 parent: 2 - - uid: 25260 + - uid: 17984 components: - type: Transform - pos: -22.5,-20.5 + pos: -90.5,7.5 parent: 2 - - uid: 25271 + - uid: 17985 components: - type: Transform - pos: -20.5,-20.5 + pos: -91.5,7.5 parent: 2 - - uid: 25299 + - uid: 17991 components: - type: Transform - pos: -19.5,-20.5 + pos: -91.5,6.5 parent: 2 - - uid: 25304 + - uid: 17998 components: - type: Transform - pos: -17.5,-20.5 + pos: -91.5,5.5 parent: 2 - - uid: 25306 + - uid: 18001 components: - type: Transform - pos: -16.5,-20.5 + pos: -94.5,7.5 parent: 2 - - uid: 25307 + - uid: 18002 components: - type: Transform - pos: -15.5,-20.5 + pos: -94.5,6.5 parent: 2 - - uid: 25310 + - uid: 18005 components: - type: Transform - pos: -14.5,-20.5 + pos: -94.5,5.5 parent: 2 - - uid: 25324 + - uid: 18007 components: - type: Transform - pos: -12.5,-20.5 + pos: -93.5,5.5 parent: 2 - - uid: 25346 + - uid: 18008 components: - type: Transform - pos: -10.5,-20.5 + pos: -92.5,5.5 parent: 2 - - uid: 25349 + - uid: 18072 components: - type: Transform - pos: -9.5,-20.5 + pos: 55.5,-29.5 parent: 2 - - uid: 25352 + - uid: 18117 components: - type: Transform - pos: -8.5,-20.5 + pos: 21.5,51.5 parent: 2 - - uid: 25354 + - uid: 18121 components: - type: Transform - pos: -7.5,-20.5 + pos: 21.5,50.5 parent: 2 - - uid: 25355 + - uid: 18122 components: - type: Transform - pos: -10.5,46.5 + pos: 21.5,49.5 parent: 2 - - uid: 25363 + - uid: 18123 components: - type: Transform - pos: -10.5,47.5 + pos: 22.5,49.5 parent: 2 - - uid: 25365 + - uid: 18304 components: - type: Transform - pos: -10.5,48.5 + pos: 45.5,73.5 parent: 2 - - uid: 25368 + - uid: 18305 components: - type: Transform - pos: -31.5,-16.5 + pos: 45.5,74.5 parent: 2 - - uid: 25370 + - uid: 18306 components: - type: Transform - pos: -30.5,-16.5 + pos: 46.5,74.5 parent: 2 - - uid: 25372 + - uid: 18307 components: - type: Transform - pos: -33.5,-16.5 + pos: 47.5,74.5 parent: 2 - - uid: 25379 + - uid: 18308 components: - type: Transform - pos: -12.5,50.5 + pos: 48.5,74.5 parent: 2 - - uid: 25380 + - uid: 18309 components: - type: Transform - pos: -11.5,50.5 + pos: 49.5,74.5 parent: 2 - - uid: 25381 + - uid: 18310 components: - type: Transform - pos: -10.5,50.5 + pos: 49.5,75.5 parent: 2 - - uid: 25389 + - uid: 18314 components: - type: Transform - pos: -9.5,50.5 + pos: 49.5,76.5 parent: 2 - - uid: 25392 + - uid: 18399 components: - type: Transform - pos: -8.5,50.5 + pos: 40.5,36.5 parent: 2 - - uid: 25394 + - uid: 18400 components: - type: Transform - pos: -7.5,50.5 + pos: 41.5,36.5 parent: 2 - - uid: 25395 + - uid: 18635 components: - type: Transform - pos: -9.5,52.5 + pos: 58.5,36.5 parent: 2 - - uid: 25397 + - uid: 18636 components: - type: Transform - pos: -8.5,52.5 + pos: 58.5,37.5 parent: 2 - - uid: 25398 + - uid: 18637 components: - type: Transform - pos: -7.5,52.5 + pos: 58.5,38.5 parent: 2 - - uid: 25399 + - uid: 18638 components: - type: Transform - pos: -7.5,51.5 + pos: 59.5,38.5 parent: 2 - - uid: 25401 + - uid: 18639 components: - type: Transform - pos: -1.5,69.5 + pos: 59.5,39.5 parent: 2 - - uid: 25405 + - uid: 18640 components: - type: Transform - pos: -1.5,68.5 + pos: 59.5,40.5 parent: 2 - - uid: 25409 + - uid: 18641 components: - type: Transform - pos: -1.5,67.5 + pos: 59.5,41.5 parent: 2 - - uid: 25410 + - uid: 18642 components: - type: Transform - pos: -2.5,67.5 + pos: 59.5,42.5 parent: 2 - - uid: 25421 + - uid: 18643 components: - type: Transform - pos: -3.5,67.5 + pos: 60.5,42.5 parent: 2 - - uid: 25422 + - uid: 18644 components: - type: Transform - pos: -4.5,67.5 + pos: 61.5,42.5 parent: 2 - - uid: 25423 + - uid: 18645 components: - type: Transform - pos: -5.5,67.5 + pos: 61.5,43.5 parent: 2 - - uid: 25424 + - uid: 18646 components: - type: Transform - pos: -6.5,67.5 + pos: 61.5,44.5 parent: 2 - - uid: 25425 + - uid: 18647 components: - type: Transform - pos: -7.5,67.5 + pos: 61.5,45.5 parent: 2 - - uid: 25426 + - uid: 18648 components: - type: Transform - pos: -7.5,66.5 + pos: 61.5,46.5 parent: 2 - - uid: 25427 + - uid: 18649 components: - type: Transform - pos: -7.5,65.5 + pos: 61.5,47.5 parent: 2 - - uid: 25428 + - uid: 18660 components: - type: Transform - pos: -7.5,64.5 + pos: 18.5,12.5 parent: 2 - - uid: 25429 + - uid: 18661 components: - type: Transform - pos: -7.5,63.5 + pos: 19.5,12.5 parent: 2 - - uid: 25438 + - uid: 18662 components: - type: Transform - pos: -7.5,62.5 + pos: 20.5,12.5 parent: 2 - - uid: 25439 + - uid: 18671 components: - type: Transform - pos: -7.5,61.5 + pos: 20.5,13.5 parent: 2 - - uid: 25440 + - uid: 18672 components: - type: Transform - pos: -7.5,60.5 + pos: 20.5,14.5 parent: 2 - - uid: 25441 + - uid: 18673 components: - type: Transform - pos: -7.5,59.5 + pos: 20.5,15.5 parent: 2 - - uid: 25442 + - uid: 18674 components: - type: Transform - pos: -7.5,58.5 + pos: 20.5,16.5 parent: 2 - - uid: 25451 + - uid: 18675 components: - type: Transform - pos: -7.5,57.5 + pos: 20.5,17.5 parent: 2 - - uid: 25459 + - uid: 18677 components: - type: Transform - pos: -7.5,56.5 + pos: 20.5,18.5 parent: 2 - - uid: 25460 + - uid: 18678 components: - type: Transform - pos: -7.5,55.5 + pos: 20.5,19.5 parent: 2 - - uid: 25463 + - uid: 18679 components: - type: Transform - pos: -7.5,54.5 + pos: 20.5,20.5 parent: 2 - - uid: 25465 + - uid: 18680 components: - type: Transform - pos: -7.5,53.5 + pos: 20.5,21.5 parent: 2 - - uid: 25467 + - uid: 18681 components: - type: Transform - pos: -33.5,-17.5 + pos: 20.5,22.5 parent: 2 - - uid: 25468 + - uid: 18682 components: - type: Transform - pos: -34.5,-16.5 + pos: 23.5,13.5 parent: 2 - - uid: 25534 + - uid: 18685 components: - type: Transform - pos: -35.5,-16.5 + pos: 23.5,14.5 parent: 2 - - uid: 25544 + - uid: 18686 components: - type: Transform - pos: -36.5,-16.5 + pos: 24.5,14.5 parent: 2 - - uid: 25545 + - uid: 18687 components: - type: Transform - pos: -37.5,-16.5 + pos: 25.5,14.5 parent: 2 - - uid: 25547 + - uid: 18689 components: - type: Transform - pos: -38.5,-16.5 + pos: 25.5,15.5 parent: 2 - - uid: 25548 + - uid: 18691 components: - type: Transform - pos: -39.5,-16.5 + pos: 25.5,16.5 parent: 2 - - uid: 25549 + - uid: 18692 components: - type: Transform - pos: 9.5,52.5 + pos: 25.5,17.5 parent: 2 - - uid: 25561 + - uid: 18693 components: - type: Transform - pos: 8.5,52.5 + pos: 25.5,18.5 parent: 2 - - uid: 25580 + - uid: 18694 components: - type: Transform - pos: 7.5,52.5 + pos: 25.5,19.5 parent: 2 - - uid: 25594 + - uid: 18696 components: - type: Transform - pos: 6.5,52.5 + pos: 26.5,20.5 parent: 2 - - uid: 25595 + - uid: 18697 components: - type: Transform - pos: 2.5,52.5 + pos: 26.5,21.5 parent: 2 - - uid: 25609 + - uid: 18698 components: - type: Transform - pos: 5.5,51.5 + pos: 26.5,22.5 parent: 2 - - uid: 25610 + - uid: 18699 components: - type: Transform - pos: 4.5,51.5 + pos: 25.5,22.5 parent: 2 - - uid: 25630 + - uid: 18700 components: - type: Transform - pos: 3.5,51.5 + pos: 24.5,22.5 parent: 2 - - uid: 25634 + - uid: 18701 components: - type: Transform - pos: 2.5,51.5 + pos: 23.5,22.5 parent: 2 - - uid: 25640 + - uid: 18702 components: - type: Transform - pos: 2.5,50.5 + pos: 22.5,22.5 parent: 2 - - uid: 25646 + - uid: 18703 components: - type: Transform - pos: 1.5,50.5 + pos: 21.5,22.5 parent: 2 - - uid: 25648 + - uid: 18711 components: - type: Transform - pos: 0.5,50.5 + pos: 25.5,12.5 parent: 2 - - uid: 25649 + - uid: 18712 components: - type: Transform - pos: -0.5,50.5 + pos: 25.5,11.5 parent: 2 - - uid: 25650 + - uid: 18714 components: - type: Transform - pos: -1.5,50.5 + pos: 25.5,10.5 parent: 2 - - uid: 25651 + - uid: 18715 components: - type: Transform - pos: -2.5,50.5 + pos: 24.5,10.5 parent: 2 - - uid: 25657 + - uid: 18716 components: - type: Transform - pos: -3.5,50.5 + pos: 23.5,10.5 parent: 2 - - uid: 25660 + - uid: 18717 components: - type: Transform - pos: -4.5,50.5 + pos: 22.5,10.5 parent: 2 - - uid: 25694 + - uid: 18718 components: - type: Transform - pos: -5.5,50.5 + pos: 21.5,10.5 parent: 2 - - uid: 25699 + - uid: 18719 components: - type: Transform - pos: -6.5,50.5 + pos: 20.5,10.5 parent: 2 - - uid: 25704 + - uid: 18720 components: - type: Transform - pos: -3.5,39.5 + pos: 20.5,11.5 parent: 2 - - uid: 25706 + - uid: 18721 components: - type: Transform - pos: -2.5,39.5 + pos: 19.5,22.5 parent: 2 - - uid: 25711 + - uid: 18722 components: - type: Transform - pos: -1.5,39.5 + pos: 14.5,21.5 parent: 2 - - uid: 25715 + - uid: 18730 components: - type: Transform - pos: -0.5,39.5 + pos: 15.5,23.5 parent: 2 - - uid: 25720 + - uid: 18731 components: - type: Transform - pos: -0.5,40.5 + pos: 18.5,22.5 parent: 2 - - uid: 25721 + - uid: 18732 components: - type: Transform - pos: -0.5,41.5 + pos: 31.5,13.5 parent: 2 - - uid: 25723 + - uid: 18733 components: - type: Transform - pos: -0.5,42.5 + pos: 31.5,14.5 parent: 2 - - uid: 25724 + - uid: 18736 components: - type: Transform - pos: -0.5,43.5 + pos: 31.5,15.5 parent: 2 - - uid: 25726 + - uid: 18737 components: - type: Transform - pos: -0.5,44.5 + pos: 31.5,16.5 parent: 2 - - uid: 25727 + - uid: 18740 components: - type: Transform - pos: -0.5,45.5 + pos: 32.5,16.5 parent: 2 - - uid: 25728 + - uid: 18741 components: - type: Transform - pos: -0.5,46.5 + pos: 33.5,16.5 parent: 2 - - uid: 25736 + - uid: 18742 components: - type: Transform - pos: -0.5,47.5 + pos: 34.5,16.5 parent: 2 - - uid: 25738 + - uid: 18743 components: - type: Transform - pos: -0.5,48.5 + pos: 34.5,17.5 parent: 2 - - uid: 25739 + - uid: 18744 components: - type: Transform - pos: -0.5,49.5 + pos: 34.5,18.5 parent: 2 - - uid: 25742 + - uid: 18745 components: - type: Transform - pos: 0.5,39.5 + pos: 34.5,19.5 parent: 2 - - uid: 25743 + - uid: 18746 components: - type: Transform - pos: 1.5,39.5 + pos: 34.5,20.5 parent: 2 - - uid: 25744 + - uid: 18747 components: - type: Transform - pos: 2.5,39.5 + pos: 34.5,21.5 parent: 2 - - uid: 25749 + - uid: 18748 components: - type: Transform - pos: 3.5,39.5 + pos: 34.5,22.5 parent: 2 - - uid: 25753 + - uid: 18749 components: - type: Transform - pos: 4.5,39.5 + pos: 34.5,23.5 parent: 2 - - uid: 25786 + - uid: 18750 components: - type: Transform - pos: 5.5,39.5 + pos: 34.5,24.5 parent: 2 - - uid: 25790 + - uid: 18751 components: - type: Transform - pos: 6.5,39.5 + pos: 34.5,25.5 parent: 2 - - uid: 25798 + - uid: 18752 components: - type: Transform - pos: 6.5,40.5 + pos: 33.5,25.5 parent: 2 - - uid: 25801 + - uid: 18753 components: - type: Transform - pos: 6.5,41.5 + pos: 32.5,25.5 parent: 2 - - uid: 25803 + - uid: 18755 components: - type: Transform - pos: 6.5,42.5 + pos: 31.5,25.5 parent: 2 - - uid: 25811 + - uid: 18757 components: - type: Transform - pos: -0.5,38.5 + pos: 31.5,26.5 parent: 2 - - uid: 25816 + - uid: 18759 components: - type: Transform - pos: -0.5,37.5 + pos: 31.5,27.5 parent: 2 - - uid: 25837 + - uid: 18760 components: - type: Transform - pos: -0.5,36.5 + pos: 31.5,28.5 parent: 2 - - uid: 25841 + - uid: 18768 components: - type: Transform - pos: -0.5,35.5 + pos: 30.5,28.5 parent: 2 - - uid: 25852 + - uid: 18770 components: - type: Transform - pos: -0.5,34.5 + pos: 29.5,28.5 parent: 2 - - uid: 25853 + - uid: 18777 components: - type: Transform - pos: -0.5,33.5 + pos: 28.5,28.5 parent: 2 - - uid: 25865 + - uid: 18779 components: - type: Transform - pos: -0.5,32.5 + pos: 27.5,28.5 parent: 2 - - uid: 25872 + - uid: 18780 components: - type: Transform - pos: 7.5,61.5 + pos: 27.5,27.5 parent: 2 - - uid: 25886 + - uid: 18781 components: - type: Transform - pos: 6.5,61.5 + pos: 27.5,26.5 parent: 2 - - uid: 25918 + - uid: 18782 components: - type: Transform - pos: 5.5,61.5 + pos: 27.5,25.5 parent: 2 - - uid: 25926 + - uid: 18792 components: - type: Transform - pos: 0.5,32.5 + pos: 27.5,24.5 parent: 2 - - uid: 25938 + - uid: 18793 components: - type: Transform - pos: 1.5,32.5 + pos: 27.5,23.5 parent: 2 - - uid: 25948 + - uid: 18794 components: - type: Transform - pos: 2.5,32.5 + pos: 27.5,22.5 parent: 2 - - uid: 25956 + - uid: 18795 components: - type: Transform - pos: 3.5,32.5 + pos: 45.5,27.5 parent: 2 - - uid: 25981 + - uid: 18797 components: - type: Transform - pos: 4.5,32.5 + pos: 45.5,26.5 parent: 2 - - uid: 25983 + - uid: 18798 components: - type: Transform - pos: 5.5,32.5 + pos: 45.5,25.5 parent: 2 - - uid: 25985 + - uid: 18803 components: - type: Transform - pos: 6.5,32.5 + pos: 42.5,24.5 parent: 2 - - uid: 25986 + - uid: 18806 components: - type: Transform - pos: 7.5,32.5 + pos: 35.5,25.5 parent: 2 - - uid: 25990 + - uid: 18809 components: - type: Transform - pos: 8.5,32.5 + pos: 36.5,25.5 parent: 2 - - uid: 25996 + - uid: 18810 components: - type: Transform - pos: 8.5,31.5 + pos: 37.5,25.5 parent: 2 - - uid: 25998 + - uid: 18813 components: - type: Transform - pos: 5.5,60.5 + pos: 38.5,25.5 parent: 2 - - uid: 26000 + - uid: 18815 components: - type: Transform - pos: 5.5,59.5 + pos: 39.5,25.5 parent: 2 - - uid: 26001 + - uid: 18816 components: - type: Transform - pos: 5.5,58.5 + pos: 40.5,25.5 parent: 2 - - uid: 26009 + - uid: 18830 components: - type: Transform - pos: 5.5,57.5 + pos: 41.5,25.5 parent: 2 - - uid: 26010 + - uid: 18831 components: - type: Transform - pos: 5.5,56.5 + pos: 42.5,25.5 parent: 2 - - uid: 26011 + - uid: 18832 components: - type: Transform - pos: 5.5,55.5 + pos: 43.5,25.5 parent: 2 - - uid: 26021 + - uid: 18833 components: - type: Transform - pos: 5.5,54.5 + pos: 44.5,25.5 parent: 2 - - uid: 26030 + - uid: 18834 components: - type: Transform - pos: 5.5,53.5 + pos: 42.5,23.5 parent: 2 - - uid: 26046 + - uid: 18838 components: - type: Transform - pos: 5.5,52.5 + pos: 42.5,22.5 parent: 2 - - uid: 26058 + - uid: 18839 components: - type: Transform - pos: 8.5,30.5 + pos: 42.5,21.5 parent: 2 - - uid: 26059 + - uid: 18840 components: - type: Transform - pos: 8.5,29.5 + pos: 42.5,20.5 parent: 2 - - uid: 26064 + - uid: 18842 components: - type: Transform - pos: 8.5,28.5 + pos: 42.5,19.5 parent: 2 - - uid: 26091 + - uid: 18843 components: - type: Transform - pos: 2.5,53.5 + pos: 42.5,18.5 parent: 2 - - uid: 26092 + - uid: 18844 components: - type: Transform - pos: 2.5,54.5 + pos: 42.5,17.5 parent: 2 - - uid: 26131 + - uid: 18845 components: - type: Transform - pos: 2.5,55.5 + pos: 42.5,16.5 parent: 2 - - uid: 26147 + - uid: 18846 components: - type: Transform - pos: 2.5,56.5 + pos: 42.5,15.5 parent: 2 - - uid: 26166 + - uid: 18847 components: - type: Transform - pos: 2.5,57.5 + pos: 42.5,14.5 parent: 2 - - uid: 26169 + - uid: 18848 components: - type: Transform - pos: 2.5,58.5 + pos: 42.5,13.5 parent: 2 - - uid: 26209 + - uid: 18849 components: - type: Transform - pos: 41.5,-9.5 + pos: 42.5,12.5 parent: 2 - - uid: 26216 + - uid: 18972 components: - type: Transform - pos: 2.5,59.5 + pos: 35.5,19.5 parent: 2 - - uid: 26231 + - uid: 18974 components: - type: Transform - pos: 2.5,60.5 + pos: 36.5,19.5 parent: 2 - - uid: 26232 + - uid: 18975 components: - type: Transform - pos: 2.5,61.5 + pos: 37.5,19.5 parent: 2 - - uid: 26233 + - uid: 18978 components: - type: Transform - pos: 2.5,62.5 + pos: 47.5,19.5 parent: 2 - - uid: 26235 + - uid: 18979 components: - type: Transform - pos: 2.5,63.5 + pos: 48.5,19.5 parent: 2 - - uid: 26236 + - uid: 18980 components: - type: Transform - pos: 2.5,64.5 + pos: 49.5,19.5 parent: 2 - - uid: 26237 + - uid: 18982 components: - type: Transform - pos: 2.5,65.5 + pos: 50.5,19.5 parent: 2 - - uid: 26238 + - uid: 18983 components: - type: Transform - pos: 2.5,66.5 + pos: 50.5,20.5 parent: 2 - - uid: 26240 + - uid: 18984 components: - type: Transform - pos: 2.5,67.5 + pos: 50.5,21.5 parent: 2 - - uid: 26244 + - uid: 18985 components: - type: Transform - pos: 1.5,67.5 + pos: 50.5,22.5 parent: 2 - - uid: 26245 + - uid: 18986 components: - type: Transform - pos: 0.5,67.5 + pos: 50.5,23.5 parent: 2 - - uid: 26256 + - uid: 18987 components: - type: Transform - pos: -0.5,67.5 + pos: 50.5,24.5 parent: 2 - - uid: 26257 + - uid: 18988 components: - type: Transform - pos: 3.5,59.5 + pos: 50.5,25.5 parent: 2 - - uid: 26258 + - uid: 18989 components: - type: Transform - pos: 4.5,59.5 + pos: 49.5,25.5 parent: 2 - - uid: 26299 + - uid: 18990 components: - type: Transform - pos: 57.5,-41.5 + pos: 48.5,25.5 parent: 2 - - uid: 26306 + - uid: 18991 components: - type: Transform - pos: 6.5,47.5 + pos: 47.5,25.5 parent: 2 - - uid: 26307 + - uid: 18992 components: - type: Transform - pos: 7.5,47.5 + pos: 46.5,25.5 parent: 2 - - uid: 26308 + - uid: 18997 components: - type: Transform - pos: 8.5,47.5 + pos: 22.5,23.5 parent: 2 - - uid: 26331 + - uid: 18998 components: - type: Transform - pos: 9.5,47.5 + pos: 22.5,24.5 parent: 2 - - uid: 26363 + - uid: 18999 components: - type: Transform - pos: 5.5,50.5 + pos: 18.5,28.5 parent: 2 - - uid: 26364 + - uid: 19000 components: - type: Transform - pos: 6.5,50.5 + pos: 19.5,28.5 parent: 2 - - uid: 26380 + - uid: 19001 components: - type: Transform - pos: 6.5,49.5 + pos: 20.5,28.5 parent: 2 - - uid: 26381 + - uid: 19002 components: - type: Transform - pos: 6.5,48.5 + pos: 21.5,28.5 parent: 2 - - uid: 26435 + - uid: 19003 components: - type: Transform - pos: 55.5,-51.5 + pos: 22.5,28.5 parent: 2 - - uid: 26436 + - uid: 19004 components: - type: Transform - pos: 16.5,48.5 + pos: 23.5,28.5 parent: 2 - - uid: 26439 + - uid: 19005 components: - type: Transform - pos: 17.5,48.5 + pos: 24.5,28.5 parent: 2 - - uid: 26443 + - uid: 19006 components: - type: Transform - pos: 18.5,48.5 + pos: 25.5,28.5 parent: 2 - - uid: 26445 + - uid: 19007 components: - type: Transform - pos: 12.5,44.5 + pos: 26.5,28.5 parent: 2 - - uid: 26447 + - uid: 19008 components: - type: Transform - pos: 18.5,49.5 + pos: 18.5,33.5 parent: 2 - - uid: 26449 + - uid: 19009 components: - type: Transform - pos: 19.5,49.5 + pos: 19.5,33.5 parent: 2 - - uid: 26450 + - uid: 19010 components: - type: Transform - pos: 20.5,49.5 + pos: 20.5,33.5 parent: 2 - - uid: 26451 + - uid: 19011 components: - type: Transform - pos: 16.5,47.5 + pos: 20.5,34.5 parent: 2 - - uid: 26452 + - uid: 19012 components: - type: Transform - pos: 16.5,46.5 + pos: 21.5,34.5 parent: 2 - - uid: 26454 + - uid: 19014 components: - type: Transform - pos: 16.5,45.5 + pos: 22.5,34.5 parent: 2 - - uid: 26459 + - uid: 19015 components: - type: Transform - pos: 16.5,44.5 + pos: 23.5,34.5 parent: 2 - - uid: 26486 + - uid: 19016 components: - type: Transform - pos: 16.5,43.5 + pos: 24.5,34.5 parent: 2 - - uid: 26491 + - uid: 19017 components: - type: Transform - pos: 15.5,43.5 + pos: 25.5,34.5 parent: 2 - - uid: 26507 + - uid: 19018 components: - type: Transform - pos: 14.5,43.5 + pos: 26.5,34.5 parent: 2 - - uid: 26511 + - uid: 19021 components: - type: Transform - pos: 13.5,43.5 + pos: 27.5,34.5 parent: 2 - - uid: 26533 + - uid: 19022 components: - type: Transform - pos: 12.5,43.5 + pos: 27.5,29.5 parent: 2 - - uid: 26612 + - uid: 19024 components: - type: Transform - pos: -41.5,30.5 + pos: 27.5,30.5 parent: 2 - - uid: 26613 + - uid: 19025 components: - type: Transform - pos: -41.5,29.5 + pos: 27.5,31.5 parent: 2 - - uid: 26620 + - uid: 19026 components: - type: Transform - pos: -40.5,29.5 + pos: 27.5,32.5 parent: 2 - - uid: 26623 + - uid: 19027 components: - type: Transform - pos: -40.5,28.5 + pos: 27.5,33.5 parent: 2 - - uid: 26625 + - uid: 19028 components: - type: Transform - pos: -40.5,27.5 + pos: 28.5,30.5 parent: 2 - - uid: 26637 + - uid: 19031 components: - type: Transform - pos: -41.5,27.5 + pos: 17.5,22.5 parent: 2 - - uid: 26639 + - uid: 19032 components: - type: Transform - pos: -41.5,26.5 + pos: 16.5,22.5 parent: 2 - - uid: 26641 + - uid: 19033 components: - type: Transform - pos: -41.5,25.5 + pos: 15.5,22.5 parent: 2 - - uid: 26652 + - uid: 19034 components: - type: Transform - pos: -41.5,24.5 + pos: 14.5,22.5 parent: 2 - - uid: 26653 + - uid: 19035 components: - type: Transform - pos: -41.5,23.5 + pos: 14.5,20.5 parent: 2 - - uid: 26654 + - uid: 19036 components: - type: Transform - pos: -41.5,22.5 + pos: 15.5,20.5 parent: 2 - - uid: 26655 + - uid: 19038 components: - type: Transform - pos: -28.5,14.5 + pos: 15.5,24.5 parent: 2 - - uid: 26657 + - uid: 19039 components: - type: Transform - pos: -50.5,34.5 + pos: 15.5,25.5 parent: 2 - - uid: 26659 + - uid: 19041 components: - type: Transform - pos: -50.5,35.5 + pos: 15.5,26.5 parent: 2 - - uid: 26660 + - uid: 19042 components: - type: Transform - pos: -50.5,36.5 + pos: 15.5,27.5 parent: 2 - - uid: 26661 + - uid: 19043 components: - type: Transform - pos: -51.5,36.5 + pos: 15.5,28.5 parent: 2 - - uid: 26680 + - uid: 19044 components: - type: Transform - pos: -51.5,37.5 + pos: 15.5,29.5 parent: 2 - - uid: 26683 + - uid: 19045 components: - type: Transform - pos: -34.5,22.5 + pos: 15.5,30.5 parent: 2 - - uid: 26738 + - uid: 19046 components: - type: Transform - pos: -33.5,22.5 + pos: 15.5,31.5 parent: 2 - - uid: 26739 + - uid: 19047 components: - type: Transform - pos: -32.5,22.5 + pos: 14.5,31.5 parent: 2 - - uid: 26744 + - uid: 19048 components: - type: Transform - pos: -31.5,22.5 + pos: 13.5,31.5 parent: 2 - - uid: 26745 + - uid: 19049 components: - type: Transform - pos: -30.5,22.5 + pos: 12.5,31.5 parent: 2 - - uid: 26747 + - uid: 19105 components: - type: Transform - pos: -29.5,22.5 + pos: 10.5,24.5 parent: 2 - - uid: 26748 + - uid: 19107 components: - type: Transform - pos: -28.5,22.5 + pos: 10.5,23.5 parent: 2 - - uid: 26749 + - uid: 19108 components: - type: Transform - pos: -27.5,22.5 + pos: 9.5,24.5 parent: 2 - - uid: 26750 + - uid: 19109 components: - type: Transform - pos: -26.5,22.5 + pos: 11.5,22.5 parent: 2 - - uid: 26751 + - uid: 19110 components: - type: Transform - pos: -25.5,22.5 + pos: 10.5,22.5 parent: 2 - - uid: 26752 + - uid: 19111 components: - type: Transform - pos: -24.5,22.5 + pos: 12.5,22.5 parent: 2 - - uid: 26766 + - uid: 19112 components: - type: Transform - pos: -24.5,23.5 + pos: 13.5,22.5 parent: 2 - - uid: 26771 + - uid: 19179 components: - type: Transform - pos: 59.5,-35.5 + pos: 0.5,15.5 parent: 2 - - uid: 26774 + - uid: 19182 components: - type: Transform - pos: -24.5,24.5 + pos: 1.5,15.5 parent: 2 - - uid: 26778 + - uid: 19183 components: - type: Transform - pos: -27.5,14.5 + pos: -0.5,15.5 parent: 2 - - uid: 26779 + - uid: 19184 components: - type: Transform - pos: -26.5,14.5 + pos: -0.5,16.5 parent: 2 - - uid: 26780 + - uid: 19185 components: - type: Transform - pos: -49.5,34.5 + pos: -0.5,17.5 parent: 2 - - uid: 26781 + - uid: 19186 components: - type: Transform - pos: -48.5,34.5 + pos: -0.5,18.5 parent: 2 - - uid: 26782 + - uid: 19187 components: - type: Transform - pos: -47.5,34.5 + pos: -0.5,19.5 parent: 2 - - uid: 26783 + - uid: 19189 components: - type: Transform - pos: -46.5,34.5 + pos: -0.5,20.5 parent: 2 - - uid: 26806 + - uid: 19190 components: - type: Transform - pos: -45.5,34.5 + pos: -0.5,21.5 parent: 2 - - uid: 26807 + - uid: 19191 components: - type: Transform - pos: -45.5,33.5 + pos: -0.5,22.5 parent: 2 - - uid: 26808 + - uid: 19192 components: - type: Transform - pos: -26.5,13.5 + pos: 0.5,22.5 parent: 2 - - uid: 26809 + - uid: 19194 components: - type: Transform - pos: -26.5,12.5 + pos: 1.5,22.5 parent: 2 - - uid: 26810 + - uid: 19195 components: - type: Transform - pos: -44.5,33.5 + pos: 2.5,22.5 parent: 2 - - uid: 26814 + - uid: 19196 components: - type: Transform - pos: -43.5,33.5 + pos: 3.5,22.5 parent: 2 - - uid: 26820 + - uid: 19197 components: - type: Transform - pos: -43.5,32.5 + pos: 4.5,22.5 parent: 2 - - uid: 26833 + - uid: 19198 components: - type: Transform - pos: -27.5,12.5 + pos: 5.5,22.5 parent: 2 - - uid: 26835 + - uid: 19199 components: - type: Transform - pos: -28.5,12.5 + pos: 6.5,22.5 parent: 2 - - uid: 26836 + - uid: 19200 components: - type: Transform - pos: -29.5,12.5 + pos: 7.5,22.5 parent: 2 - - uid: 26844 + - uid: 19201 components: - type: Transform - pos: -30.5,12.5 + pos: 8.5,22.5 parent: 2 - - uid: 26849 + - uid: 19202 components: - type: Transform - pos: -31.5,12.5 + pos: 9.5,22.5 parent: 2 - - uid: 26854 + - uid: 19962 components: - type: Transform - pos: -32.5,12.5 + pos: 39.5,-10.5 parent: 2 - - uid: 26868 + - uid: 19963 components: - type: Transform - pos: -32.5,13.5 + pos: 39.5,-11.5 parent: 2 - - uid: 26869 + - uid: 20194 components: - type: Transform - pos: -32.5,14.5 + pos: 13.5,10.5 parent: 2 - - uid: 26884 + - uid: 20195 components: - type: Transform - pos: -31.5,14.5 + pos: 13.5,9.5 parent: 2 - - uid: 26895 + - uid: 20197 components: - type: Transform - pos: -30.5,14.5 + pos: 14.5,9.5 parent: 2 - - uid: 26898 + - uid: 20202 components: - type: Transform - pos: -42.5,32.5 + pos: 14.5,8.5 parent: 2 - - uid: 26899 + - uid: 20206 components: - type: Transform - pos: -41.5,32.5 + pos: 14.5,7.5 parent: 2 - - uid: 26905 + - uid: 20246 components: - type: Transform - pos: -40.5,32.5 + pos: 14.5,6.5 parent: 2 - - uid: 26907 + - uid: 20268 components: - type: Transform - pos: -39.5,32.5 + pos: 14.5,5.5 parent: 2 - - uid: 26916 + - uid: 20269 components: - type: Transform - pos: -38.5,32.5 + pos: 14.5,4.5 parent: 2 - - uid: 26917 + - uid: 20271 components: - type: Transform - pos: -37.5,32.5 + pos: 14.5,3.5 parent: 2 - - uid: 26921 + - uid: 20281 components: - type: Transform - pos: -32.5,15.5 + pos: 14.5,2.5 parent: 2 - - uid: 26936 + - uid: 20282 components: - type: Transform - pos: -33.5,15.5 + pos: 14.5,1.5 parent: 2 - - uid: 26937 + - uid: 20287 components: - type: Transform - pos: -34.5,15.5 + pos: 14.5,0.5 parent: 2 - - uid: 26938 + - uid: 20288 components: - type: Transform - pos: -49.5,30.5 + pos: 15.5,0.5 parent: 2 - - uid: 26939 + - uid: 20289 components: - type: Transform - pos: -49.5,33.5 + pos: 16.5,0.5 parent: 2 - - uid: 26940 + - uid: 20290 components: - type: Transform - pos: -49.5,31.5 + pos: 17.5,0.5 parent: 2 - - uid: 26943 + - uid: 20296 components: - type: Transform - pos: -49.5,32.5 + pos: 18.5,0.5 parent: 2 - - uid: 26945 + - uid: 20300 components: - type: Transform - pos: -34.5,18.5 + pos: 19.5,0.5 parent: 2 - - uid: 26947 + - uid: 20301 components: - type: Transform - pos: -34.5,19.5 + pos: 20.5,0.5 parent: 2 - - uid: 26948 + - uid: 20355 components: - type: Transform - pos: -34.5,20.5 + pos: 20.5,1.5 parent: 2 - - uid: 26951 + - uid: 20361 components: - type: Transform - pos: -34.5,21.5 + pos: 20.5,2.5 parent: 2 - - uid: 26965 + - uid: 20388 components: - type: Transform - pos: -37.5,31.5 + pos: 20.5,3.5 parent: 2 - - uid: 26999 + - uid: 20391 components: - type: Transform - pos: -37.5,30.5 + pos: 20.5,4.5 parent: 2 - - uid: 27000 + - uid: 20392 components: - type: Transform - pos: -37.5,29.5 + pos: 20.5,5.5 parent: 2 - - uid: 27049 + - uid: 20395 components: - type: Transform - pos: -37.5,28.5 + pos: 20.5,6.5 parent: 2 - - uid: 27050 + - uid: 20405 components: - type: Transform - pos: -36.5,28.5 + pos: 20.5,7.5 parent: 2 - - uid: 27051 + - uid: 20408 components: - type: Transform - pos: -35.5,28.5 + pos: 20.5,8.5 parent: 2 - - uid: 27052 + - uid: 20415 components: - type: Transform - pos: -34.5,28.5 + pos: 20.5,9.5 parent: 2 - - uid: 27064 + - uid: 20553 components: - type: Transform - pos: -33.5,28.5 + pos: -23.5,-33.5 parent: 2 - - uid: 27065 + - uid: 20561 components: - type: Transform - pos: -32.5,28.5 + pos: -23.5,-32.5 parent: 2 - - uid: 27066 + - uid: 20611 components: - type: Transform - pos: -31.5,28.5 + pos: -22.5,-32.5 parent: 2 - - uid: 27079 + - uid: 20717 components: - type: Transform - pos: -30.5,28.5 + pos: -21.5,-32.5 parent: 2 - - uid: 27088 + - uid: 20729 components: - type: Transform - pos: -29.5,28.5 + pos: 58.5,-39.5 parent: 2 - - uid: 27091 + - uid: 20764 components: - type: Transform - pos: -28.5,28.5 + pos: -23.5,-31.5 parent: 2 - - uid: 27101 + - uid: 20769 components: - type: Transform - pos: -30.5,31.5 + pos: -23.5,-30.5 parent: 2 - - uid: 27102 + - uid: 20805 components: - type: Transform - pos: -29.5,31.5 + pos: -23.5,-29.5 parent: 2 - - uid: 27110 + - uid: 20806 components: - type: Transform - pos: -28.5,31.5 + pos: -23.5,-28.5 parent: 2 - - uid: 27114 + - uid: 20814 components: - type: Transform - pos: -28.5,30.5 + pos: -23.5,-27.5 parent: 2 - - uid: 27132 + - uid: 20821 components: - type: Transform - pos: -28.5,29.5 + pos: -23.5,-26.5 parent: 2 - - uid: 27139 + - uid: 20829 components: - type: Transform - pos: -5.5,44.5 + pos: -23.5,-25.5 parent: 2 - - uid: 27140 + - uid: 20830 components: - type: Transform - pos: -26.5,53.5 + pos: -23.5,-24.5 parent: 2 - - uid: 27141 + - uid: 20831 components: - type: Transform - pos: -28.5,35.5 + pos: -23.5,-23.5 parent: 2 - - uid: 27151 + - uid: 20832 components: - type: Transform - pos: -28.5,34.5 + pos: -23.5,-22.5 parent: 2 - - uid: 27161 + - uid: 20834 components: - type: Transform - pos: -28.5,33.5 + pos: -23.5,-21.5 parent: 2 - - uid: 27170 + - uid: 20835 components: - type: Transform - pos: -28.5,32.5 + pos: -27.5,-18.5 parent: 2 - - uid: 27171 + - uid: 20841 components: - type: Transform - pos: -26.5,52.5 + pos: -27.5,-19.5 parent: 2 - - uid: 27172 + - uid: 20843 components: - type: Transform - pos: -6.5,42.5 + pos: -27.5,-20.5 parent: 2 - - uid: 27174 + - uid: 20846 components: - type: Transform - pos: -7.5,42.5 + pos: -27.5,-21.5 parent: 2 - - uid: 27175 + - uid: 20849 components: - type: Transform - pos: -27.5,35.5 + pos: -26.5,-21.5 parent: 2 - - uid: 27204 + - uid: 20859 components: - type: Transform - pos: -26.5,35.5 + pos: -25.5,-21.5 parent: 2 - - uid: 27206 + - uid: 20878 components: - type: Transform - pos: -25.5,35.5 + pos: -24.5,-21.5 parent: 2 - - uid: 27211 + - uid: 20880 components: - type: Transform - pos: -24.5,35.5 + pos: -32.5,-16.5 parent: 2 - - uid: 27217 + - uid: 20881 components: - type: Transform - pos: -23.5,35.5 + pos: -29.5,-16.5 parent: 2 - - uid: 27218 + - uid: 20885 components: - type: Transform - pos: -22.5,35.5 + pos: -28.5,-16.5 parent: 2 - - uid: 27219 + - uid: 20886 components: - type: Transform - pos: -21.5,35.5 + pos: -27.5,-16.5 parent: 2 - - uid: 27220 + - uid: 20905 components: - type: Transform - pos: -7.5,41.5 + pos: -26.5,-16.5 parent: 2 - - uid: 27252 + - uid: 20913 components: - type: Transform - pos: -7.5,40.5 + pos: -25.5,-16.5 parent: 2 - - uid: 27253 + - uid: 20914 components: - type: Transform - pos: -7.5,39.5 + pos: -24.5,-16.5 parent: 2 - - uid: 27254 + - uid: 20921 components: - type: Transform - pos: -7.5,38.5 + pos: -23.5,-16.5 parent: 2 - - uid: 27257 + - uid: 20926 components: - type: Transform - pos: 42.5,-9.5 + pos: -13.5,50.5 parent: 2 - - uid: 27262 + - uid: 20934 components: - type: Transform - pos: -7.5,37.5 + pos: -22.5,-16.5 parent: 2 - - uid: 27263 + - uid: 20947 components: - type: Transform - pos: -7.5,36.5 + pos: -12.5,47.5 parent: 2 - - uid: 27265 + - uid: 20953 components: - type: Transform - pos: -7.5,35.5 + pos: -11.5,47.5 parent: 2 - - uid: 27266 + - uid: 20957 components: - type: Transform - pos: -8.5,35.5 + pos: -11.5,-20.5 parent: 2 - - uid: 27267 + - uid: 20959 components: - type: Transform - pos: -9.5,35.5 + pos: -11.5,-19.5 parent: 2 - - uid: 27269 + - uid: 20982 components: - type: Transform - pos: -9.5,34.5 + pos: -11.5,-18.5 parent: 2 - - uid: 27271 + - uid: 20985 components: - type: Transform - pos: -9.5,33.5 + pos: -13.5,47.5 parent: 2 - - uid: 27272 + - uid: 20986 components: - type: Transform - pos: -9.5,32.5 + pos: -13.5,49.5 parent: 2 - - uid: 27279 + - uid: 20989 components: - type: Transform - pos: -9.5,31.5 + pos: -13.5,48.5 parent: 2 - - uid: 27280 + - uid: 20990 components: - type: Transform - pos: -21.5,34.5 + pos: -7.5,-21.5 parent: 2 - - uid: 27281 + - uid: 20999 components: - type: Transform - pos: -20.5,34.5 + pos: -7.5,-24.5 parent: 2 - - uid: 27282 + - uid: 21012 components: - type: Transform - pos: -20.5,33.5 + pos: -6.5,-24.5 parent: 2 - - uid: 27283 + - uid: 21020 components: - type: Transform - pos: -20.5,32.5 + pos: -5.5,-24.5 parent: 2 - - uid: 27284 + - uid: 21034 components: - type: Transform - pos: -21.5,36.5 + pos: -5.5,-23.5 parent: 2 - - uid: 27285 + - uid: 21046 components: - type: Transform - pos: -21.5,37.5 + pos: -5.5,-22.5 parent: 2 - - uid: 27286 + - uid: 21059 components: - type: Transform - pos: -21.5,38.5 + pos: -7.5,-23.5 parent: 2 - - uid: 27287 + - uid: 21062 components: - type: Transform - pos: -21.5,39.5 + pos: -7.5,-22.5 parent: 2 - - uid: 27288 + - uid: 21123 components: - type: Transform - pos: -21.5,40.5 + pos: -21.5,-20.5 parent: 2 - - uid: 27289 + - uid: 21124 components: - type: Transform - pos: -21.5,41.5 + pos: -21.5,-16.5 parent: 2 - - uid: 27290 + - uid: 21144 components: - type: Transform - pos: -21.5,42.5 + pos: -21.5,-17.5 parent: 2 - - uid: 27291 + - uid: 21220 components: - type: Transform - pos: -21.5,43.5 + pos: -21.5,-18.5 parent: 2 - - uid: 27292 + - uid: 21223 components: - type: Transform - pos: -21.5,44.5 + pos: -21.5,-19.5 parent: 2 - - uid: 27293 + - uid: 21274 components: - type: Transform - pos: -21.5,45.5 + pos: -18.5,-20.5 parent: 2 - - uid: 27294 + - uid: 21287 components: - type: Transform - pos: -21.5,46.5 + pos: -18.5,-19.5 parent: 2 - - uid: 27295 + - uid: 21291 components: - type: Transform - pos: -21.5,47.5 + pos: -18.5,-18.5 parent: 2 - - uid: 27302 + - uid: 21293 components: - type: Transform - pos: -20.5,47.5 + pos: -18.5,-17.5 parent: 2 - - uid: 27304 + - uid: 21306 components: - type: Transform - pos: -19.5,47.5 + pos: -18.5,-16.5 parent: 2 - - uid: 27320 + - uid: 21324 components: - type: Transform - pos: -26.5,54.5 + pos: -17.5,-16.5 parent: 2 - - uid: 27321 + - uid: 21326 components: - type: Transform - pos: -25.5,52.5 + pos: -16.5,-16.5 parent: 2 - - uid: 27322 + - uid: 21328 components: - type: Transform - pos: -24.5,52.5 + pos: -15.5,-16.5 parent: 2 - - uid: 27334 + - uid: 21341 components: - type: Transform - pos: -10.5,31.5 + pos: -15.5,-15.5 parent: 2 - - uid: 27360 + - uid: 21343 components: - type: Transform - pos: -10.5,30.5 + pos: -15.5,-15.5 parent: 2 - - uid: 27371 + - uid: 21344 components: - type: Transform - pos: -10.5,29.5 + pos: -19.5,-9.5 parent: 2 - - uid: 27384 + - uid: 21352 components: - type: Transform - pos: -10.5,28.5 + pos: -20.5,-9.5 parent: 2 - - uid: 27385 + - uid: 21396 components: - type: Transform - pos: -10.5,27.5 + pos: -21.5,-9.5 parent: 2 - - uid: 27388 + - uid: 21419 components: - type: Transform - pos: -10.5,26.5 + pos: -21.5,-10.5 parent: 2 - - uid: 27389 + - uid: 21450 components: - type: Transform - pos: -10.5,25.5 + pos: -21.5,-11.5 parent: 2 - - uid: 27391 + - uid: 21461 components: - type: Transform - pos: -10.5,24.5 + pos: -21.5,-12.5 parent: 2 - - uid: 27392 + - uid: 21473 components: - type: Transform - pos: -10.5,23.5 + pos: -21.5,-13.5 parent: 2 - - uid: 27417 + - uid: 21475 components: - type: Transform - pos: -10.5,22.5 + pos: -21.5,-14.5 parent: 2 - - uid: 27429 + - uid: 21476 components: - type: Transform - pos: -9.5,22.5 + pos: -21.5,-15.5 parent: 2 - - uid: 27442 + - uid: 21504 components: - type: Transform - pos: -8.5,22.5 + pos: -22.5,-12.5 parent: 2 - - uid: 27444 + - uid: 21514 components: - type: Transform - pos: -8.5,23.5 + pos: -23.5,-12.5 parent: 2 - - uid: 27445 + - uid: 21534 components: - type: Transform - pos: -29.5,35.5 + pos: -24.5,-12.5 parent: 2 - - uid: 27448 + - uid: 21541 components: - type: Transform - pos: -8.5,24.5 + pos: -25.5,-12.5 parent: 2 - - uid: 27450 + - uid: 21544 components: - type: Transform - pos: -30.5,35.5 + pos: -25.5,-11.5 parent: 2 - - uid: 27451 + - uid: 21567 components: - type: Transform - pos: -11.5,22.5 + pos: -25.5,-10.5 parent: 2 - - uid: 27452 + - uid: 21568 components: - type: Transform - pos: -12.5,22.5 + pos: -25.5,-9.5 parent: 2 - - uid: 27456 + - uid: 21569 components: - type: Transform - pos: -13.5,22.5 + pos: -21.5,-8.5 parent: 2 - - uid: 27457 + - uid: 21573 components: - type: Transform - pos: -14.5,22.5 + pos: -21.5,-7.5 parent: 2 - - uid: 27460 + - uid: 21683 components: - type: Transform - pos: -15.5,22.5 + pos: -22.5,-7.5 parent: 2 - - uid: 27469 + - uid: 21708 components: - type: Transform - pos: -16.5,22.5 + pos: -23.5,-7.5 parent: 2 - - uid: 27499 + - uid: 21715 components: - type: Transform - pos: -17.5,22.5 + pos: -24.5,-7.5 parent: 2 - - uid: 27511 + - uid: 21737 components: - type: Transform - pos: -18.5,22.5 + pos: -25.5,-7.5 parent: 2 - - uid: 27514 + - uid: 21742 components: - type: Transform - pos: -19.5,22.5 + pos: -25.5,-6.5 parent: 2 - - uid: 27519 + - uid: 21771 components: - type: Transform - pos: -20.5,22.5 + pos: -25.5,-5.5 parent: 2 - - uid: 27523 + - uid: 22445 components: - type: Transform - pos: -21.5,22.5 + pos: 57.5,-42.5 parent: 2 - - uid: 27526 + - uid: 22450 components: - type: Transform - pos: -22.5,22.5 + pos: 59.5,-37.5 parent: 2 - - uid: 27533 + - uid: 22465 components: - type: Transform - pos: -23.5,22.5 + pos: 59.5,-39.5 parent: 2 - - uid: 27543 + - uid: 23634 components: - type: Transform - pos: -30.5,18.5 + pos: 13.5,-21.5 parent: 2 - - uid: 27544 + - uid: 23732 components: - type: Transform - pos: -29.5,18.5 + pos: -48.5,-33.5 parent: 2 - - uid: 27545 + - uid: 23786 components: - type: Transform - pos: -28.5,18.5 + pos: 13.5,-23.5 parent: 2 - - uid: 27548 + - uid: 23836 components: - type: Transform - pos: -27.5,18.5 + pos: 14.5,-20.5 parent: 2 - - uid: 27559 + - uid: 24002 components: - type: Transform - pos: -27.5,19.5 + pos: 13.5,-20.5 parent: 2 - - uid: 27560 + - uid: 24031 components: - type: Transform - pos: -27.5,20.5 + pos: -24.5,-32.5 parent: 2 - - uid: 27562 + - uid: 24038 components: - type: Transform - pos: -27.5,21.5 + pos: -25.5,-32.5 parent: 2 - - uid: 27572 + - uid: 24091 components: - type: Transform - pos: -21.5,21.5 + pos: 15.5,-20.5 parent: 2 - - uid: 27578 + - uid: 24099 components: - type: Transform - pos: -21.5,20.5 + pos: -26.5,-32.5 parent: 2 - - uid: 27579 + - uid: 24110 components: - type: Transform - pos: -21.5,19.5 + pos: -27.5,-32.5 parent: 2 - - uid: 27584 + - uid: 24117 components: - type: Transform - pos: -21.5,18.5 + pos: -28.5,-32.5 parent: 2 - - uid: 27585 + - uid: 24120 components: - type: Transform - pos: -21.5,17.5 + pos: -29.5,-32.5 parent: 2 - - uid: 27587 + - uid: 24134 components: - type: Transform - pos: -20.5,17.5 + pos: 13.5,-22.5 parent: 2 - - uid: 27588 + - uid: 24140 components: - type: Transform - pos: -19.5,17.5 + pos: -30.5,-32.5 parent: 2 - - uid: 27591 + - uid: 24141 components: - type: Transform - pos: -18.5,17.5 + pos: -31.5,-32.5 parent: 2 - - uid: 27600 + - uid: 24144 components: - type: Transform - pos: -17.5,17.5 + pos: -32.5,-32.5 parent: 2 - - uid: 27604 + - uid: 24146 components: - type: Transform - pos: -17.5,18.5 + pos: -33.5,-32.5 parent: 2 - - uid: 27606 + - uid: 24152 components: - type: Transform - pos: -17.5,19.5 + pos: -34.5,-32.5 parent: 2 - - uid: 27612 + - uid: 24153 components: - type: Transform - pos: -17.5,20.5 + pos: -34.5,-31.5 parent: 2 - - uid: 27627 + - uid: 24171 components: - type: Transform - pos: -20.5,31.5 + pos: 11.5,-23.5 parent: 2 - - uid: 27676 + - uid: 24220 components: - type: Transform - pos: -20.5,30.5 + pos: -34.5,-30.5 parent: 2 - - uid: 27696 + - uid: 24221 components: - type: Transform - pos: -20.5,29.5 + pos: -50.5,50.5 parent: 2 - - uid: 27699 + - uid: 24243 components: - type: Transform - pos: -20.5,28.5 + pos: 11.5,-22.5 parent: 2 - - uid: 27704 + - uid: 24270 components: - type: Transform - pos: -20.5,27.5 + pos: 59.5,-38.5 parent: 2 - - uid: 27708 + - uid: 24278 components: - type: Transform - pos: -20.5,26.5 + pos: 12.5,-23.5 parent: 2 - - uid: 27717 + - uid: 24279 components: - type: Transform - pos: -20.5,25.5 + pos: 16.5,-20.5 parent: 2 - - uid: 27755 + - uid: 24288 components: - type: Transform - pos: -20.5,24.5 + pos: -51.5,50.5 parent: 2 - - uid: 27769 + - uid: 24289 components: - type: Transform - pos: -20.5,23.5 + pos: -52.5,50.5 parent: 2 - - uid: 27780 + - uid: 24295 components: - type: Transform - pos: -30.5,37.5 + pos: -53.5,50.5 parent: 2 - - uid: 27788 + - uid: 24298 components: - type: Transform - pos: -30.5,36.5 + pos: -54.5,50.5 parent: 2 - - uid: 27804 + - uid: 24299 components: - type: Transform - pos: -30.5,38.5 + pos: -35.5,-32.5 parent: 2 - - uid: 27820 + - uid: 24300 components: - type: Transform - pos: -30.5,39.5 + pos: -36.5,-32.5 parent: 2 - - uid: 27826 + - uid: 24314 components: - type: Transform - pos: -30.5,40.5 + pos: -37.5,-33.5 parent: 2 - - uid: 27827 + - uid: 24315 components: - type: Transform - pos: -29.5,40.5 + pos: -37.5,-32.5 parent: 2 - - uid: 27833 + - uid: 24317 components: - type: Transform - pos: -28.5,40.5 + pos: -37.5,-34.5 parent: 2 - - uid: 27834 + - uid: 24332 components: - type: Transform - pos: -27.5,40.5 + pos: -38.5,-34.5 parent: 2 - - uid: 27835 + - uid: 24333 components: - type: Transform - pos: -27.5,41.5 + pos: -39.5,-34.5 parent: 2 - - uid: 27837 + - uid: 24340 components: - type: Transform - pos: -27.5,42.5 + pos: -40.5,-34.5 parent: 2 - - uid: 27841 + - uid: 24348 components: - type: Transform - pos: -27.5,43.5 + pos: -41.5,-34.5 parent: 2 - - uid: 27844 + - uid: 24383 components: - type: Transform - pos: -27.5,44.5 + pos: -42.5,-34.5 parent: 2 - - uid: 27848 + - uid: 24389 components: - type: Transform - pos: -27.5,45.5 + pos: -43.5,-34.5 parent: 2 - - uid: 27849 + - uid: 24396 components: - type: Transform - pos: -27.5,46.5 + pos: -44.5,-34.5 parent: 2 - - uid: 27850 + - uid: 24399 components: - type: Transform - pos: -27.5,47.5 + pos: -45.5,-34.5 parent: 2 - - uid: 27851 + - uid: 24404 components: - type: Transform - pos: -19.5,31.5 + pos: -46.5,-34.5 parent: 2 - - uid: 27861 + - uid: 24405 components: - type: Transform - pos: -18.5,31.5 + pos: -47.5,-34.5 parent: 2 - - uid: 27862 + - uid: 24407 components: - type: Transform - pos: -17.5,31.5 + pos: -48.5,-34.5 parent: 2 - - uid: 27866 + - uid: 24408 components: - type: Transform - pos: -16.5,31.5 + pos: -48.5,-32.5 parent: 2 - - uid: 27867 + - uid: 24412 components: - type: Transform - pos: -21.5,49.5 + pos: -48.5,-31.5 parent: 2 - - uid: 27868 + - uid: 24414 components: - type: Transform - pos: -21.5,51.5 + pos: -48.5,-30.5 parent: 2 - - uid: 27869 + - uid: 24420 components: - type: Transform - pos: -21.5,50.5 + pos: -48.5,-29.5 parent: 2 - - uid: 27870 + - uid: 24428 components: - type: Transform - pos: -16.5,24.5 + pos: 54.5,-23.5 parent: 2 - - uid: 27873 + - uid: 24459 components: - type: Transform - pos: -16.5,25.5 + pos: -48.5,-28.5 parent: 2 - - uid: 27874 + - uid: 24469 components: - type: Transform - pos: -16.5,26.5 + pos: -48.5,-35.5 parent: 2 - - uid: 27878 + - uid: 24473 components: - type: Transform - pos: -16.5,27.5 + pos: -48.5,-36.5 parent: 2 - - uid: 27881 + - uid: 24478 components: - type: Transform - pos: -17.5,27.5 + pos: -48.5,-37.5 parent: 2 - - uid: 27882 + - uid: 24480 components: - type: Transform - pos: -18.5,27.5 + pos: -48.5,-38.5 parent: 2 - - uid: 27898 + - uid: 24487 components: - type: Transform - pos: -19.5,27.5 + pos: -48.5,-39.5 parent: 2 - - uid: 27901 + - uid: 24529 components: - type: Transform - pos: -21.5,48.5 + pos: -48.5,-40.5 parent: 2 - - uid: 27907 + - uid: 24532 components: - type: Transform - pos: -13.5,33.5 + pos: -48.5,-41.5 parent: 2 - - uid: 27909 + - uid: 24533 components: - type: Transform - pos: -13.5,34.5 + pos: -48.5,-42.5 parent: 2 - - uid: 27912 + - uid: 24549 components: - type: Transform - pos: -13.5,35.5 + pos: -48.5,-43.5 parent: 2 - - uid: 27913 + - uid: 24599 components: - type: Transform - pos: -13.5,36.5 + pos: -48.5,-44.5 parent: 2 - - uid: 27918 + - uid: 24600 components: - type: Transform - pos: -14.5,36.5 + pos: -48.5,-45.5 parent: 2 - - uid: 27922 + - uid: 24618 components: - type: Transform - pos: -14.5,37.5 + pos: -48.5,-46.5 parent: 2 - - uid: 27933 + - uid: 24645 components: - type: Transform - pos: -14.5,38.5 + pos: -48.5,-47.5 parent: 2 - - uid: 27934 + - uid: 24646 components: - type: Transform - pos: -14.5,39.5 + pos: -48.5,-48.5 parent: 2 - - uid: 27935 + - uid: 24667 components: - type: Transform - pos: -14.5,40.5 + pos: -48.5,-49.5 parent: 2 - - uid: 27938 + - uid: 24669 components: - type: Transform - pos: -14.5,41.5 + pos: -48.5,-50.5 parent: 2 - - uid: 27940 + - uid: 24670 components: - type: Transform - pos: -14.5,42.5 + pos: -48.5,-51.5 parent: 2 - - uid: 27950 + - uid: 24671 components: - type: Transform - pos: -15.5,41.5 + pos: -49.5,-51.5 parent: 2 - - uid: 27952 + - uid: 24674 components: - type: Transform - pos: -16.5,41.5 + pos: -50.5,-51.5 parent: 2 - - uid: 27955 + - uid: 24678 components: - type: Transform - pos: -17.5,41.5 + pos: -47.5,-41.5 parent: 2 - - uid: 27958 + - uid: 24681 components: - type: Transform - pos: -17.5,42.5 + pos: -46.5,-41.5 parent: 2 - - uid: 27966 + - uid: 24833 components: - type: Transform - pos: -17.5,43.5 + pos: 55.5,-24.5 parent: 2 - - uid: 27968 + - uid: 25040 components: - type: Transform - pos: -17.5,44.5 + pos: 54.5,-24.5 parent: 2 - - uid: 27970 + - uid: 25157 components: - type: Transform - pos: -17.5,45.5 + pos: -13.5,-20.5 parent: 2 - - uid: 27994 + - uid: 25200 components: - type: Transform - pos: -18.5,45.5 + pos: -49.5,-65.5 parent: 2 - - uid: 28009 + - uid: 25212 components: - type: Transform - pos: -19.5,45.5 + pos: -49.5,-64.5 parent: 2 - - uid: 28012 + - uid: 25222 components: - type: Transform - pos: -16.5,32.5 + pos: -49.5,-63.5 parent: 2 - - uid: 28013 + - uid: 25226 components: - type: Transform - pos: -16.5,33.5 + pos: -49.5,-62.5 parent: 2 - - uid: 28015 + - uid: 25248 components: - type: Transform - pos: -15.5,33.5 + pos: -23.5,-20.5 parent: 2 - - uid: 28017 + - uid: 25260 components: - type: Transform - pos: -14.5,33.5 + pos: -22.5,-20.5 parent: 2 - - uid: 28018 + - uid: 25271 components: - type: Transform - pos: -21.5,52.5 + pos: -20.5,-20.5 parent: 2 - - uid: 28021 + - uid: 25299 components: - type: Transform - pos: -21.5,53.5 + pos: -19.5,-20.5 parent: 2 - - uid: 28022 + - uid: 25304 components: - type: Transform - pos: -27.5,58.5 + pos: -17.5,-20.5 parent: 2 - - uid: 28036 + - uid: 25306 components: - type: Transform - pos: -28.5,58.5 + pos: -16.5,-20.5 parent: 2 - - uid: 28043 + - uid: 25307 components: - type: Transform - pos: -29.5,58.5 + pos: -15.5,-20.5 parent: 2 - - uid: 28052 + - uid: 25310 components: - type: Transform - pos: -29.5,57.5 + pos: -14.5,-20.5 parent: 2 - - uid: 28054 + - uid: 25324 components: - type: Transform - pos: -29.5,56.5 + pos: -12.5,-20.5 parent: 2 - - uid: 28060 + - uid: 25346 components: - type: Transform - pos: -6.5,43.5 + pos: -10.5,-20.5 parent: 2 - - uid: 28068 + - uid: 25349 components: - type: Transform - pos: -6.5,44.5 + pos: -9.5,-20.5 parent: 2 - - uid: 28070 + - uid: 25352 components: - type: Transform - pos: -6.5,45.5 + pos: -8.5,-20.5 parent: 2 - - uid: 28072 + - uid: 25354 components: - type: Transform - pos: -28.5,56.5 + pos: -7.5,-20.5 parent: 2 - - uid: 28073 + - uid: 25355 components: - type: Transform - pos: -27.5,56.5 + pos: -10.5,46.5 parent: 2 - - uid: 28075 + - uid: 25363 components: - type: Transform - pos: -26.5,56.5 + pos: -10.5,47.5 parent: 2 - - uid: 28076 + - uid: 25365 components: - type: Transform - pos: -25.5,56.5 + pos: -10.5,48.5 parent: 2 - - uid: 28077 + - uid: 25368 components: - type: Transform - pos: -24.5,56.5 + pos: -31.5,-16.5 parent: 2 - - uid: 28078 + - uid: 25370 components: - type: Transform - pos: -23.5,56.5 + pos: -30.5,-16.5 parent: 2 - - uid: 28079 + - uid: 25372 components: - type: Transform - pos: -22.5,56.5 + pos: -33.5,-16.5 parent: 2 - - uid: 28080 + - uid: 25379 components: - type: Transform - pos: -21.5,56.5 + pos: -12.5,50.5 parent: 2 - - uid: 28084 + - uid: 25380 components: - type: Transform - pos: -20.5,56.5 + pos: -11.5,50.5 parent: 2 - - uid: 28091 + - uid: 25381 components: - type: Transform - pos: -20.5,55.5 + pos: -10.5,50.5 parent: 2 - - uid: 28092 + - uid: 25389 components: - type: Transform - pos: -20.5,54.5 + pos: -9.5,50.5 parent: 2 - - uid: 28093 + - uid: 25392 components: - type: Transform - pos: -20.5,53.5 + pos: -8.5,50.5 parent: 2 - - uid: 28094 + - uid: 25394 components: - type: Transform - pos: -23.5,55.5 + pos: -7.5,50.5 parent: 2 - - uid: 28095 + - uid: 25395 components: - type: Transform - pos: -23.5,54.5 + pos: -9.5,52.5 parent: 2 - - uid: 28213 + - uid: 25397 components: - type: Transform - pos: -23.5,52.5 + pos: -8.5,52.5 parent: 2 - - uid: 28214 + - uid: 25398 components: - type: Transform - pos: -22.5,52.5 + pos: -7.5,52.5 parent: 2 - - uid: 28244 + - uid: 25399 components: - type: Transform - pos: -7.5,48.5 + pos: -7.5,51.5 parent: 2 - - uid: 28247 + - uid: 25401 components: - type: Transform - pos: -7.5,47.5 + pos: -1.5,69.5 parent: 2 - - uid: 28251 + - uid: 25405 components: - type: Transform - pos: -6.5,47.5 + pos: -1.5,68.5 parent: 2 - - uid: 28257 + - uid: 25409 components: - type: Transform - pos: -6.5,46.5 + pos: -1.5,67.5 parent: 2 - - uid: 28327 + - uid: 25410 components: - type: Transform - pos: -17.5,66.5 + pos: -2.5,67.5 parent: 2 - - uid: 28329 + - uid: 25421 components: - type: Transform - pos: -18.5,66.5 + pos: -3.5,67.5 parent: 2 - - uid: 28344 + - uid: 25422 components: - type: Transform - pos: -19.5,66.5 + pos: -4.5,67.5 parent: 2 - - uid: 28345 + - uid: 25423 components: - type: Transform - pos: -20.5,66.5 + pos: -5.5,67.5 parent: 2 - - uid: 28346 + - uid: 25424 components: - type: Transform - pos: -21.5,66.5 + pos: -6.5,67.5 parent: 2 - - uid: 28385 + - uid: 25425 components: - type: Transform - pos: -22.5,66.5 + pos: -7.5,67.5 parent: 2 - - uid: 28386 + - uid: 25426 components: - type: Transform - pos: -23.5,66.5 + pos: -7.5,66.5 parent: 2 - - uid: 28387 + - uid: 25427 components: - type: Transform - pos: -24.5,66.5 + pos: -7.5,65.5 parent: 2 - - uid: 28474 + - uid: 25428 components: - type: Transform - pos: -24.5,65.5 + pos: -7.5,64.5 parent: 2 - - uid: 28475 + - uid: 25429 components: - type: Transform - pos: -24.5,64.5 + pos: -7.5,63.5 parent: 2 - - uid: 28476 + - uid: 25438 components: - type: Transform - pos: -24.5,63.5 + pos: -7.5,62.5 parent: 2 - - uid: 28477 + - uid: 25439 components: - type: Transform - pos: -24.5,62.5 + pos: -7.5,61.5 parent: 2 - - uid: 28478 + - uid: 25440 components: - type: Transform - pos: -24.5,61.5 + pos: -7.5,60.5 parent: 2 - - uid: 28483 + - uid: 25441 components: - type: Transform - pos: -24.5,60.5 + pos: -7.5,59.5 parent: 2 - - uid: 28487 + - uid: 25442 components: - type: Transform - pos: -24.5,59.5 + pos: -7.5,58.5 parent: 2 - - uid: 28488 + - uid: 25451 components: - type: Transform - pos: -24.5,58.5 + pos: -7.5,57.5 parent: 2 - - uid: 28489 + - uid: 25459 components: - type: Transform - pos: -24.5,57.5 + pos: -7.5,56.5 parent: 2 - - uid: 28646 + - uid: 25460 components: - type: Transform - pos: 53.5,-43.5 + pos: -7.5,55.5 parent: 2 - - uid: 28696 + - uid: 25463 components: - type: Transform - pos: -34.5,16.5 + pos: -7.5,54.5 parent: 2 - - uid: 28697 + - uid: 25465 components: - type: Transform - pos: -34.5,17.5 + pos: -7.5,53.5 parent: 2 - - uid: 28699 + - uid: 25467 components: - type: Transform - pos: -49.5,29.5 + pos: -33.5,-17.5 parent: 2 - - uid: 28701 + - uid: 25468 components: - type: Transform - pos: -48.5,29.5 + pos: -34.5,-16.5 parent: 2 - - uid: 28703 + - uid: 25534 components: - type: Transform - pos: -47.5,29.5 + pos: -35.5,-16.5 parent: 2 - - uid: 28704 + - uid: 25544 components: - type: Transform - pos: -46.5,29.5 + pos: -36.5,-16.5 parent: 2 - - uid: 28705 + - uid: 25545 components: - type: Transform - pos: -46.5,30.5 + pos: -37.5,-16.5 parent: 2 - - uid: 28706 + - uid: 25547 components: - type: Transform - pos: -46.5,31.5 + pos: -38.5,-16.5 parent: 2 - - uid: 28707 + - uid: 25548 components: - type: Transform - pos: -42.5,22.5 + pos: -39.5,-16.5 parent: 2 - - uid: 28708 + - uid: 25549 components: - type: Transform - pos: -43.5,22.5 + pos: 9.5,52.5 parent: 2 - - uid: 28713 + - uid: 25561 components: - type: Transform - pos: -44.5,22.5 + pos: 8.5,52.5 parent: 2 - - uid: 28714 + - uid: 25580 components: - type: Transform - pos: -45.5,22.5 + pos: 7.5,52.5 parent: 2 - - uid: 28715 + - uid: 25594 components: - type: Transform - pos: -46.5,22.5 + pos: 6.5,52.5 parent: 2 - - uid: 28720 + - uid: 25595 components: - type: Transform - pos: -46.5,20.5 + pos: 2.5,52.5 parent: 2 - - uid: 28725 + - uid: 25609 components: - type: Transform - pos: -46.5,21.5 + pos: 5.5,51.5 parent: 2 - - uid: 28726 + - uid: 25610 components: - type: Transform - pos: -46.5,19.5 + pos: 4.5,51.5 parent: 2 - - uid: 28727 + - uid: 25630 components: - type: Transform - pos: -46.5,18.5 + pos: 3.5,51.5 parent: 2 - - uid: 28728 + - uid: 25634 components: - type: Transform - pos: -46.5,17.5 + pos: 2.5,51.5 parent: 2 - - uid: 28729 + - uid: 25640 components: - type: Transform - pos: -43.5,17.5 + pos: 2.5,50.5 parent: 2 - - uid: 28730 + - uid: 25646 components: - type: Transform - pos: -45.5,17.5 + pos: 1.5,50.5 parent: 2 - - uid: 28731 + - uid: 25648 components: - type: Transform - pos: -44.5,17.5 + pos: 0.5,50.5 parent: 2 - - uid: 28774 + - uid: 25649 components: - type: Transform - pos: -46.5,16.5 + pos: -0.5,50.5 parent: 2 - - uid: 28779 + - uid: 25650 components: - type: Transform - pos: -46.5,15.5 + pos: -1.5,50.5 parent: 2 - - uid: 28783 + - uid: 25651 components: - type: Transform - pos: -46.5,14.5 + pos: -2.5,50.5 parent: 2 - - uid: 28785 + - uid: 25657 components: - type: Transform - pos: -46.5,13.5 + pos: -3.5,50.5 parent: 2 - - uid: 28792 + - uid: 25660 components: - type: Transform - pos: -46.5,12.5 + pos: -4.5,50.5 parent: 2 - - uid: 28803 + - uid: 25694 components: - type: Transform - pos: -50.5,10.5 + pos: -5.5,50.5 parent: 2 - - uid: 28807 + - uid: 25699 components: - type: Transform - pos: -49.5,10.5 + pos: -6.5,50.5 parent: 2 - - uid: 28809 + - uid: 25704 components: - type: Transform - pos: -49.5,11.5 + pos: -3.5,39.5 parent: 2 - - uid: 28812 + - uid: 25706 components: - type: Transform - pos: -49.5,12.5 + pos: -2.5,39.5 parent: 2 - - uid: 28814 + - uid: 25711 components: - type: Transform - pos: -48.5,12.5 + pos: -1.5,39.5 parent: 2 - - uid: 28818 + - uid: 25715 components: - type: Transform - pos: -47.5,12.5 + pos: -0.5,39.5 parent: 2 - - uid: 28825 + - uid: 25720 components: - type: Transform - pos: -49.5,22.5 + pos: -0.5,40.5 parent: 2 - - uid: 28836 + - uid: 25721 components: - type: Transform - pos: -46.5,23.5 + pos: -0.5,41.5 parent: 2 - - uid: 28839 + - uid: 25723 components: - type: Transform - pos: -46.5,24.5 + pos: -0.5,42.5 parent: 2 - - uid: 28841 + - uid: 25724 components: - type: Transform - pos: -47.5,24.5 + pos: -0.5,43.5 parent: 2 - - uid: 28842 + - uid: 25726 components: - type: Transform - pos: -48.5,24.5 + pos: -0.5,44.5 parent: 2 - - uid: 28855 + - uid: 25727 components: - type: Transform - pos: -49.5,24.5 + pos: -0.5,45.5 parent: 2 - - uid: 28857 + - uid: 25728 components: - type: Transform - pos: -49.5,23.5 + pos: -0.5,46.5 parent: 2 - - uid: 28858 + - uid: 25736 components: - type: Transform - pos: -49.5,21.5 + pos: -0.5,47.5 parent: 2 - - uid: 28869 + - uid: 25738 components: - type: Transform - pos: -49.5,20.5 + pos: -0.5,48.5 parent: 2 - - uid: 28890 + - uid: 25739 components: - type: Transform - pos: -48.5,20.5 + pos: -0.5,49.5 parent: 2 - - uid: 28897 + - uid: 25742 components: - type: Transform - pos: -47.5,20.5 + pos: 0.5,39.5 parent: 2 - - uid: 28916 + - uid: 25743 components: - type: Transform - pos: -47.5,16.5 + pos: 1.5,39.5 parent: 2 - - uid: 28923 + - uid: 25744 components: - type: Transform - pos: -48.5,16.5 + pos: 2.5,39.5 parent: 2 - - uid: 28983 + - uid: 25749 components: - type: Transform - pos: -49.5,16.5 + pos: 3.5,39.5 parent: 2 - - uid: 28985 + - uid: 25753 components: - type: Transform - pos: -49.5,15.5 + pos: 4.5,39.5 parent: 2 - - uid: 28996 + - uid: 25786 components: - type: Transform - pos: -49.5,14.5 + pos: 5.5,39.5 parent: 2 - - uid: 28997 + - uid: 25790 components: - type: Transform - pos: -49.5,13.5 + pos: 6.5,39.5 parent: 2 - - uid: 29095 + - uid: 25798 components: - type: Transform - pos: -50.5,22.5 + pos: 6.5,40.5 parent: 2 - - uid: 29101 + - uid: 25801 components: - type: Transform - pos: -51.5,22.5 + pos: 6.5,41.5 parent: 2 - - uid: 29113 + - uid: 25803 components: - type: Transform - pos: -52.5,22.5 + pos: 6.5,42.5 parent: 2 - - uid: 29118 + - uid: 25811 components: - type: Transform - pos: -53.5,22.5 + pos: -0.5,38.5 parent: 2 - - uid: 29119 + - uid: 25816 components: - type: Transform - pos: -54.5,22.5 + pos: -0.5,37.5 parent: 2 - - uid: 29120 + - uid: 25837 components: - type: Transform - pos: -55.5,22.5 + pos: -0.5,36.5 parent: 2 - - uid: 29121 + - uid: 25841 components: - type: Transform - pos: -56.5,22.5 + pos: -0.5,35.5 parent: 2 - - uid: 29129 + - uid: 25852 components: - type: Transform - pos: -57.5,22.5 + pos: -0.5,34.5 parent: 2 - - uid: 29130 + - uid: 25853 components: - type: Transform - pos: -58.5,22.5 + pos: -0.5,33.5 parent: 2 - - uid: 29131 + - uid: 25865 components: - type: Transform - pos: -56.5,28.5 + pos: -0.5,32.5 parent: 2 - - uid: 29192 + - uid: 25872 components: - type: Transform - pos: -57.5,28.5 + pos: 7.5,61.5 parent: 2 - - uid: 29251 + - uid: 25886 components: - type: Transform - pos: -58.5,28.5 + pos: 6.5,61.5 parent: 2 - - uid: 29508 + - uid: 25918 components: - type: Transform - pos: -58.5,27.5 + pos: 5.5,61.5 parent: 2 - - uid: 29509 + - uid: 25926 components: - type: Transform - pos: -58.5,26.5 + pos: 0.5,32.5 parent: 2 - - uid: 29510 + - uid: 25938 components: - type: Transform - pos: -58.5,25.5 + pos: 1.5,32.5 parent: 2 - - uid: 29511 + - uid: 25948 components: - type: Transform - pos: -58.5,24.5 + pos: 2.5,32.5 parent: 2 - - uid: 29512 + - uid: 25956 components: - type: Transform - pos: -58.5,23.5 + pos: 3.5,32.5 parent: 2 - - uid: 29619 + - uid: 25981 components: - type: Transform - pos: -59.5,22.5 + pos: 4.5,32.5 parent: 2 - - uid: 29620 + - uid: 25983 components: - type: Transform - pos: -60.5,22.5 + pos: 5.5,32.5 parent: 2 - - uid: 29626 + - uid: 25985 components: - type: Transform - pos: -61.5,22.5 + pos: 6.5,32.5 parent: 2 - - uid: 29628 + - uid: 25986 components: - type: Transform - pos: -62.5,22.5 + pos: 7.5,32.5 parent: 2 - - uid: 29629 + - uid: 25990 components: - type: Transform - pos: -63.5,22.5 + pos: 8.5,32.5 parent: 2 - - uid: 29630 + - uid: 25996 components: - type: Transform - pos: -64.5,22.5 + pos: 8.5,31.5 parent: 2 - - uid: 29632 + - uid: 25998 components: - type: Transform - pos: -65.5,22.5 + pos: 5.5,60.5 parent: 2 - - uid: 29634 + - uid: 26000 components: - type: Transform - pos: -66.5,22.5 + pos: 5.5,59.5 parent: 2 - - uid: 29635 + - uid: 26001 components: - type: Transform - pos: -67.5,22.5 + pos: 5.5,58.5 parent: 2 - - uid: 29638 + - uid: 26009 components: - type: Transform - pos: -68.5,22.5 + pos: 5.5,57.5 parent: 2 - - uid: 29669 + - uid: 26010 components: - type: Transform - pos: -69.5,22.5 + pos: 5.5,56.5 parent: 2 - - uid: 29676 + - uid: 26011 components: - type: Transform - pos: -70.5,22.5 + pos: 5.5,55.5 parent: 2 - - uid: 29677 + - uid: 26021 components: - type: Transform - pos: -71.5,22.5 + pos: 5.5,54.5 parent: 2 - - uid: 29679 + - uid: 26030 components: - type: Transform - pos: -72.5,22.5 + pos: 5.5,53.5 parent: 2 - - uid: 29685 + - uid: 26046 components: - type: Transform - pos: -73.5,22.5 + pos: 5.5,52.5 parent: 2 - - uid: 29693 + - uid: 26058 components: - type: Transform - pos: -74.5,22.5 + pos: 8.5,30.5 parent: 2 - - uid: 29694 + - uid: 26059 components: - type: Transform - pos: -75.5,22.5 + pos: 8.5,29.5 parent: 2 - - uid: 29695 + - uid: 26064 components: - type: Transform - pos: -76.5,22.5 + pos: 8.5,28.5 parent: 2 - - uid: 29697 + - uid: 26091 components: - type: Transform - pos: -76.5,23.5 + pos: 2.5,53.5 parent: 2 - - uid: 29698 + - uid: 26092 components: - type: Transform - pos: -76.5,24.5 + pos: 2.5,54.5 parent: 2 - - uid: 29743 + - uid: 26131 components: - type: Transform - pos: -76.5,25.5 + pos: 2.5,55.5 parent: 2 - - uid: 29764 + - uid: 26147 components: - type: Transform - pos: -76.5,26.5 + pos: 2.5,56.5 parent: 2 - - uid: 29765 + - uid: 26166 components: - type: Transform - pos: -76.5,27.5 + pos: 2.5,57.5 parent: 2 - - uid: 29766 + - uid: 26169 components: - type: Transform - pos: -76.5,28.5 + pos: 2.5,58.5 parent: 2 - - uid: 29772 + - uid: 26209 components: - type: Transform - pos: -75.5,28.5 + pos: 41.5,-9.5 parent: 2 - - uid: 29774 + - uid: 26216 components: - type: Transform - pos: -74.5,28.5 + pos: 2.5,59.5 parent: 2 - - uid: 29814 + - uid: 26231 components: - type: Transform - pos: -50.5,14.5 + pos: 2.5,60.5 parent: 2 - - uid: 29828 + - uid: 26232 components: - type: Transform - pos: -51.5,14.5 + pos: 2.5,61.5 parent: 2 - - uid: 29845 + - uid: 26233 components: - type: Transform - pos: -52.5,14.5 + pos: 2.5,62.5 parent: 2 - - uid: 29846 + - uid: 26235 components: - type: Transform - pos: -53.5,14.5 + pos: 2.5,63.5 parent: 2 - - uid: 29847 + - uid: 26236 components: - type: Transform - pos: -54.5,14.5 + pos: 2.5,64.5 parent: 2 - - uid: 29855 + - uid: 26237 components: - type: Transform - pos: -55.5,14.5 + pos: 2.5,65.5 parent: 2 - - uid: 29863 + - uid: 26238 components: - type: Transform - pos: -56.5,14.5 + pos: 2.5,66.5 parent: 2 - - uid: 29885 + - uid: 26240 components: - type: Transform - pos: -57.5,14.5 + pos: 2.5,67.5 parent: 2 - - uid: 29903 + - uid: 26244 components: - type: Transform - pos: -58.5,14.5 + pos: 1.5,67.5 parent: 2 - - uid: 29908 + - uid: 26245 components: - type: Transform - pos: -59.5,14.5 + pos: 0.5,67.5 parent: 2 - - uid: 29919 + - uid: 26256 components: - type: Transform - pos: -60.5,14.5 + pos: -0.5,67.5 parent: 2 - - uid: 29920 + - uid: 26257 components: - type: Transform - pos: -61.5,14.5 + pos: 3.5,59.5 parent: 2 - - uid: 29932 + - uid: 26258 components: - type: Transform - pos: -62.5,14.5 + pos: 4.5,59.5 parent: 2 - - uid: 29958 + - uid: 26299 components: - type: Transform - pos: -63.5,14.5 + pos: 57.5,-41.5 parent: 2 - - uid: 29959 + - uid: 26306 components: - type: Transform - pos: -64.5,14.5 + pos: 6.5,47.5 parent: 2 - - uid: 29966 + - uid: 26307 components: - type: Transform - pos: -64.5,13.5 + pos: 7.5,47.5 parent: 2 - - uid: 29968 + - uid: 26308 components: - type: Transform - pos: -64.5,12.5 + pos: 8.5,47.5 parent: 2 - - uid: 29974 + - uid: 26331 components: - type: Transform - pos: -65.5,14.5 + pos: 9.5,47.5 parent: 2 - - uid: 29975 + - uid: 26363 components: - type: Transform - pos: -66.5,14.5 + pos: 5.5,50.5 parent: 2 - - uid: 29976 + - uid: 26364 components: - type: Transform - pos: -67.5,14.5 + pos: 6.5,50.5 parent: 2 - - uid: 29977 + - uid: 26380 components: - type: Transform - pos: -68.5,14.5 + pos: 6.5,49.5 parent: 2 - - uid: 29978 + - uid: 26381 components: - type: Transform - pos: -69.5,14.5 + pos: 6.5,48.5 parent: 2 - - uid: 29980 + - uid: 26435 components: - type: Transform - pos: -70.5,14.5 + pos: 55.5,-51.5 parent: 2 - - uid: 29982 + - uid: 26436 components: - type: Transform - pos: -71.5,14.5 + pos: 16.5,48.5 parent: 2 - - uid: 30005 + - uid: 26439 components: - type: Transform - pos: -72.5,14.5 + pos: 17.5,48.5 parent: 2 - - uid: 30006 + - uid: 26443 components: - type: Transform - pos: -73.5,14.5 + pos: 18.5,48.5 parent: 2 - - uid: 30007 + - uid: 26445 components: - type: Transform - pos: -74.5,14.5 + pos: 12.5,44.5 parent: 2 - - uid: 30018 + - uid: 26447 components: - type: Transform - pos: -75.5,14.5 + pos: 18.5,49.5 parent: 2 - - uid: 30022 + - uid: 26449 components: - type: Transform - pos: -76.5,14.5 + pos: 19.5,49.5 parent: 2 - - uid: 30101 + - uid: 26450 components: - type: Transform - pos: -77.5,14.5 + pos: 20.5,49.5 parent: 2 - - uid: 30102 + - uid: 26451 components: - type: Transform - pos: -77.5,13.5 + pos: 16.5,47.5 parent: 2 - - uid: 30103 + - uid: 26452 components: - type: Transform - pos: -77.5,12.5 + pos: 16.5,46.5 parent: 2 - - uid: 30109 + - uid: 26454 components: - type: Transform - pos: -96.5,12.5 + pos: 16.5,45.5 parent: 2 - - uid: 30120 + - uid: 26459 components: - type: Transform - pos: -96.5,13.5 + pos: 16.5,44.5 parent: 2 - - uid: 30121 + - uid: 26486 components: - type: Transform - pos: -96.5,14.5 + pos: 16.5,43.5 parent: 2 - - uid: 30127 + - uid: 26491 components: - type: Transform - pos: -95.5,14.5 + pos: 15.5,43.5 parent: 2 - - uid: 30128 + - uid: 26507 components: - type: Transform - pos: -94.5,14.5 + pos: 14.5,43.5 parent: 2 - - uid: 30133 + - uid: 26511 components: - type: Transform - pos: -93.5,14.5 + pos: 13.5,43.5 parent: 2 - - uid: 30135 + - uid: 26533 components: - type: Transform - pos: -92.5,14.5 + pos: 12.5,43.5 parent: 2 - - uid: 30142 + - uid: 26612 components: - type: Transform - pos: -91.5,14.5 + pos: -41.5,30.5 parent: 2 - - uid: 30144 + - uid: 26613 components: - type: Transform - pos: -90.5,14.5 + pos: -41.5,29.5 parent: 2 - - uid: 30151 + - uid: 26620 components: - type: Transform - pos: -89.5,14.5 + pos: -40.5,29.5 parent: 2 - - uid: 30228 + - uid: 26623 components: - type: Transform - pos: -88.5,14.5 + pos: -40.5,28.5 parent: 2 - - uid: 30237 + - uid: 26625 components: - type: Transform - pos: -87.5,14.5 + pos: -40.5,27.5 parent: 2 - - uid: 30240 + - uid: 26637 components: - type: Transform - pos: -86.5,14.5 + pos: -41.5,27.5 parent: 2 - - uid: 30242 + - uid: 26639 components: - type: Transform - pos: -85.5,14.5 + pos: -41.5,26.5 parent: 2 - - uid: 30252 + - uid: 26641 components: - type: Transform - pos: -84.5,14.5 + pos: -41.5,25.5 parent: 2 - - uid: 30264 + - uid: 26652 components: - type: Transform - pos: -83.5,14.5 + pos: -41.5,24.5 parent: 2 - - uid: 30266 + - uid: 26653 components: - type: Transform - pos: -82.5,14.5 + pos: -41.5,23.5 parent: 2 - - uid: 30269 + - uid: 26654 components: - type: Transform - pos: -81.5,14.5 + pos: -41.5,22.5 parent: 2 - - uid: 30273 + - uid: 26655 components: - type: Transform - pos: -80.5,14.5 + pos: -28.5,14.5 parent: 2 - - uid: 30275 + - uid: 26657 components: - type: Transform - pos: -79.5,14.5 + pos: -50.5,34.5 parent: 2 - - uid: 30276 + - uid: 26659 components: - type: Transform - pos: -78.5,14.5 + pos: -50.5,35.5 parent: 2 - - uid: 30283 + - uid: 26660 components: - type: Transform - pos: -96.5,24.5 + pos: -50.5,36.5 parent: 2 - - uid: 30284 + - uid: 26661 components: - type: Transform - pos: -96.5,23.5 + pos: -51.5,36.5 parent: 2 - - uid: 30285 + - uid: 26669 components: - type: Transform - pos: -96.5,22.5 + pos: 81.5,46.5 parent: 2 - - uid: 30289 + - uid: 26680 components: - type: Transform - pos: -95.5,22.5 + pos: -51.5,37.5 parent: 2 - - uid: 30298 + - uid: 26683 components: - type: Transform - pos: -94.5,22.5 + pos: -34.5,22.5 parent: 2 - - uid: 30300 + - uid: 26738 components: - type: Transform - pos: -93.5,22.5 + pos: -33.5,22.5 parent: 2 - - uid: 30306 + - uid: 26739 components: - type: Transform - pos: -92.5,22.5 + pos: -32.5,22.5 parent: 2 - - uid: 30312 + - uid: 26744 components: - type: Transform - pos: -91.5,22.5 + pos: -31.5,22.5 parent: 2 - - uid: 30313 + - uid: 26745 components: - type: Transform - pos: -90.5,22.5 + pos: -30.5,22.5 parent: 2 - - uid: 30331 + - uid: 26747 components: - type: Transform - pos: -89.5,22.5 + pos: -29.5,22.5 parent: 2 - - uid: 30340 + - uid: 26748 components: - type: Transform - pos: -88.5,22.5 + pos: -28.5,22.5 parent: 2 - - uid: 30346 + - uid: 26749 components: - type: Transform - pos: -87.5,22.5 + pos: -27.5,22.5 parent: 2 - - uid: 30347 + - uid: 26750 components: - type: Transform - pos: -86.5,22.5 + pos: -26.5,22.5 parent: 2 - - uid: 30354 + - uid: 26751 components: - type: Transform - pos: -85.5,22.5 + pos: -25.5,22.5 parent: 2 - - uid: 30360 + - uid: 26752 components: - type: Transform - pos: -84.5,22.5 + pos: -24.5,22.5 parent: 2 - - uid: 30363 + - uid: 26766 components: - type: Transform - pos: -83.5,22.5 + pos: -24.5,23.5 parent: 2 - - uid: 30372 + - uid: 26771 components: - type: Transform - pos: -82.5,22.5 + pos: 59.5,-35.5 parent: 2 - - uid: 30389 + - uid: 26774 components: - type: Transform - pos: -81.5,22.5 + pos: -24.5,24.5 parent: 2 - - uid: 30399 + - uid: 26778 components: - type: Transform - pos: -80.5,22.5 + pos: -27.5,14.5 parent: 2 - - uid: 30401 + - uid: 26779 components: - type: Transform - pos: -79.5,22.5 + pos: -26.5,14.5 parent: 2 - - uid: 30405 + - uid: 26780 components: - type: Transform - pos: -78.5,22.5 + pos: -49.5,34.5 parent: 2 - - uid: 30410 + - uid: 26781 components: - type: Transform - pos: -77.5,22.5 + pos: -48.5,34.5 parent: 2 - - uid: 30428 + - uid: 26782 components: - type: Transform - pos: -78.5,23.5 + pos: -47.5,34.5 parent: 2 - - uid: 30430 + - uid: 26783 components: - type: Transform - pos: -78.5,24.5 + pos: -46.5,34.5 parent: 2 - - uid: 30435 + - uid: 26806 components: - type: Transform - pos: -94.5,23.5 + pos: -45.5,34.5 parent: 2 - - uid: 30445 + - uid: 26807 components: - type: Transform - pos: -94.5,24.5 + pos: -45.5,33.5 parent: 2 - - uid: 30456 + - uid: 26808 components: - type: Transform - pos: -94.5,25.5 + pos: -26.5,13.5 parent: 2 - - uid: 30457 + - uid: 26809 components: - type: Transform - pos: -94.5,27.5 + pos: -26.5,12.5 parent: 2 - - uid: 30469 + - uid: 26810 components: - type: Transform - pos: -94.5,28.5 + pos: -44.5,33.5 parent: 2 - - uid: 30473 + - uid: 26814 components: - type: Transform - pos: -93.5,28.5 + pos: -43.5,33.5 parent: 2 - - uid: 30480 + - uid: 26820 components: - type: Transform - pos: -92.5,28.5 + pos: -43.5,32.5 parent: 2 - - uid: 30483 + - uid: 26833 components: - type: Transform - pos: -56.5,-16.5 + pos: -27.5,12.5 parent: 2 - - uid: 30484 + - uid: 26835 components: - type: Transform - pos: -56.5,-15.5 + pos: -28.5,12.5 parent: 2 - - uid: 30485 + - uid: 26836 components: - type: Transform - pos: -57.5,-15.5 + pos: -29.5,12.5 parent: 2 - - uid: 30486 + - uid: 26844 components: - type: Transform - pos: -57.5,-14.5 + pos: -30.5,12.5 parent: 2 - - uid: 30487 + - uid: 26849 components: - type: Transform - pos: -57.5,-13.5 + pos: -31.5,12.5 parent: 2 - - uid: 30495 + - uid: 26854 components: - type: Transform - pos: -92.5,-12.5 + pos: -32.5,12.5 parent: 2 - - uid: 30496 + - uid: 26868 components: - type: Transform - pos: -91.5,-12.5 + pos: -32.5,13.5 parent: 2 - - uid: 30497 + - uid: 26869 components: - type: Transform - pos: -91.5,-11.5 + pos: -32.5,14.5 parent: 2 - - uid: 30499 + - uid: 26884 components: - type: Transform - pos: -91.5,-10.5 + pos: -31.5,14.5 parent: 2 - - uid: 30533 + - uid: 26895 components: - type: Transform - pos: -91.5,-9.5 + pos: -30.5,14.5 parent: 2 - - uid: 30542 + - uid: 26898 components: - type: Transform - pos: -91.5,-8.5 + pos: -42.5,32.5 parent: 2 - - uid: 30549 + - uid: 26899 components: - type: Transform - pos: -91.5,-7.5 + pos: -41.5,32.5 parent: 2 - - uid: 30556 + - uid: 26905 components: - type: Transform - pos: -90.5,-7.5 + pos: -40.5,32.5 parent: 2 - - uid: 30557 + - uid: 26907 components: - type: Transform - pos: -89.5,-7.5 + pos: -39.5,32.5 parent: 2 - - uid: 30602 + - uid: 26916 components: - type: Transform - pos: -88.5,-7.5 + pos: -38.5,32.5 parent: 2 - - uid: 30603 + - uid: 26917 components: - type: Transform - pos: -87.5,-7.5 + pos: -37.5,32.5 parent: 2 - - uid: 30605 + - uid: 26921 components: - type: Transform - pos: -86.5,-7.5 + pos: -32.5,15.5 parent: 2 - - uid: 30608 + - uid: 26936 components: - type: Transform - pos: -85.5,-7.5 + pos: -33.5,15.5 parent: 2 - - uid: 30611 + - uid: 26937 components: - type: Transform - pos: -84.5,-7.5 + pos: -34.5,15.5 parent: 2 - - uid: 30613 + - uid: 26938 components: - type: Transform - pos: -83.5,-7.5 + pos: -49.5,30.5 parent: 2 - - uid: 30616 + - uid: 26939 components: - type: Transform - pos: -82.5,-12.5 + pos: -49.5,33.5 parent: 2 - - uid: 30617 + - uid: 26940 components: - type: Transform - pos: -83.5,-12.5 + pos: -49.5,31.5 parent: 2 - - uid: 30619 + - uid: 26943 components: - type: Transform - pos: -83.5,-11.5 + pos: -49.5,32.5 parent: 2 - - uid: 30620 + - uid: 26945 components: - type: Transform - pos: -83.5,-10.5 + pos: -34.5,18.5 parent: 2 - - uid: 30623 + - uid: 26947 components: - type: Transform - pos: -83.5,-9.5 + pos: -34.5,19.5 parent: 2 - - uid: 30640 + - uid: 26948 components: - type: Transform - pos: -83.5,-8.5 + pos: -34.5,20.5 parent: 2 - - uid: 30641 + - uid: 26951 components: - type: Transform - pos: -82.5,-7.5 + pos: -34.5,21.5 parent: 2 - - uid: 30667 + - uid: 26965 components: - type: Transform - pos: -81.5,-7.5 + pos: -37.5,31.5 parent: 2 - - uid: 30671 + - uid: 26999 components: - type: Transform - pos: -80.5,-7.5 + pos: -37.5,30.5 parent: 2 - - uid: 30675 + - uid: 27000 components: - type: Transform - pos: -79.5,-7.5 + pos: -37.5,29.5 parent: 2 - - uid: 30681 + - uid: 27049 components: - type: Transform - pos: -78.5,-7.5 + pos: -37.5,28.5 parent: 2 - - uid: 30682 + - uid: 27050 components: - type: Transform - pos: -77.5,-7.5 + pos: -36.5,28.5 parent: 2 - - uid: 30710 + - uid: 27051 components: - type: Transform - pos: -76.5,-7.5 + pos: -35.5,28.5 parent: 2 - - uid: 30765 + - uid: 27052 components: - type: Transform - pos: -75.5,-7.5 + pos: -34.5,28.5 parent: 2 - - uid: 30782 + - uid: 27064 components: - type: Transform - pos: -74.5,-7.5 + pos: -33.5,28.5 parent: 2 - - uid: 30786 + - uid: 27065 components: - type: Transform - pos: -73.5,-7.5 + pos: -32.5,28.5 parent: 2 - - uid: 30788 + - uid: 27066 components: - type: Transform - pos: -58.5,-13.5 + pos: -31.5,28.5 parent: 2 - - uid: 30806 + - uid: 27079 components: - type: Transform - pos: -59.5,-13.5 + pos: -30.5,28.5 parent: 2 - - uid: 30810 + - uid: 27088 components: - type: Transform - pos: -60.5,-13.5 + pos: -29.5,28.5 parent: 2 - - uid: 30831 + - uid: 27091 components: - type: Transform - pos: -61.5,-13.5 + pos: -28.5,28.5 parent: 2 - - uid: 30878 + - uid: 27101 components: - type: Transform - pos: -62.5,-13.5 + pos: -30.5,31.5 parent: 2 - - uid: 30895 + - uid: 27102 components: - type: Transform - pos: -63.5,-13.5 + pos: -29.5,31.5 parent: 2 - - uid: 30896 + - uid: 27110 components: - type: Transform - pos: -64.5,-13.5 + pos: -28.5,31.5 parent: 2 - - uid: 30898 + - uid: 27114 components: - type: Transform - pos: -65.5,-13.5 + pos: -28.5,30.5 parent: 2 - - uid: 30906 + - uid: 27132 components: - type: Transform - pos: -66.5,-13.5 + pos: -28.5,29.5 parent: 2 - - uid: 30910 + - uid: 27139 components: - type: Transform - pos: -67.5,-13.5 + pos: -5.5,44.5 parent: 2 - - uid: 30911 + - uid: 27140 components: - type: Transform - pos: -68.5,-13.5 + pos: -26.5,53.5 parent: 2 - - uid: 30912 + - uid: 27141 components: - type: Transform - pos: -69.5,-13.5 + pos: -28.5,35.5 parent: 2 - - uid: 30914 + - uid: 27151 components: - type: Transform - pos: -69.5,-14.5 + pos: -28.5,34.5 parent: 2 - - uid: 30915 + - uid: 27161 components: - type: Transform - pos: -69.5,-15.5 + pos: -28.5,33.5 parent: 2 - - uid: 30916 + - uid: 27170 components: - type: Transform - pos: -70.5,-15.5 + pos: -28.5,32.5 parent: 2 - - uid: 30935 + - uid: 27171 components: - type: Transform - pos: -71.5,-15.5 + pos: -26.5,52.5 parent: 2 - - uid: 30937 + - uid: 27172 components: - type: Transform - pos: -71.5,-14.5 + pos: -6.5,42.5 parent: 2 - - uid: 30938 + - uid: 27174 components: - type: Transform - pos: -72.5,-14.5 + pos: -7.5,42.5 parent: 2 - - uid: 30939 + - uid: 27175 components: - type: Transform - pos: -72.5,-13.5 + pos: -27.5,35.5 parent: 2 - - uid: 30941 + - uid: 27204 components: - type: Transform - pos: -72.5,-12.5 + pos: -26.5,35.5 parent: 2 - - uid: 30942 + - uid: 27206 components: - type: Transform - pos: -72.5,-11.5 + pos: -25.5,35.5 parent: 2 - - uid: 30945 + - uid: 27211 components: - type: Transform - pos: -72.5,-10.5 + pos: -24.5,35.5 parent: 2 - - uid: 30946 + - uid: 27217 components: - type: Transform - pos: -72.5,-9.5 + pos: -23.5,35.5 parent: 2 - - uid: 30947 + - uid: 27218 components: - type: Transform - pos: -72.5,-8.5 + pos: -22.5,35.5 parent: 2 - - uid: 30948 + - uid: 27219 components: - type: Transform - pos: -72.5,-7.5 + pos: -21.5,35.5 parent: 2 - - uid: 30951 + - uid: 27220 components: - type: Transform - pos: -57.5,-12.5 + pos: -7.5,41.5 parent: 2 - - uid: 30956 + - uid: 27252 components: - type: Transform - pos: -56.5,-12.5 + pos: -7.5,40.5 parent: 2 - - uid: 30957 + - uid: 27253 components: - type: Transform - pos: -55.5,-12.5 + pos: -7.5,39.5 parent: 2 - - uid: 30958 + - uid: 27254 components: - type: Transform - pos: -55.5,-11.5 + pos: -7.5,38.5 parent: 2 - - uid: 30959 + - uid: 27257 components: - type: Transform - pos: -55.5,-10.5 + pos: 42.5,-9.5 parent: 2 - - uid: 31005 + - uid: 27262 components: - type: Transform - pos: -55.5,-9.5 + pos: -7.5,37.5 parent: 2 - - uid: 31011 + - uid: 27263 components: - type: Transform - pos: -55.5,-8.5 + pos: -7.5,36.5 parent: 2 - - uid: 31062 + - uid: 27265 components: - type: Transform - pos: -55.5,-7.5 + pos: -7.5,35.5 parent: 2 - - uid: 31065 + - uid: 27266 components: - type: Transform - pos: -55.5,-6.5 + pos: -8.5,35.5 parent: 2 - - uid: 31071 + - uid: 27267 components: - type: Transform - pos: -72.5,-6.5 + pos: -9.5,35.5 parent: 2 - - uid: 31072 + - uid: 27269 components: - type: Transform - pos: -56.5,-7.5 + pos: -9.5,34.5 parent: 2 - - uid: 31074 + - uid: 27271 components: - type: Transform - pos: -72.5,-5.5 + pos: -9.5,33.5 parent: 2 - - uid: 31142 + - uid: 27272 components: - type: Transform - pos: -72.5,-4.5 + pos: -9.5,32.5 parent: 2 - - uid: 31143 + - uid: 27279 components: - type: Transform - pos: -72.5,-3.5 + pos: -9.5,31.5 parent: 2 - - uid: 31150 + - uid: 27280 components: - type: Transform - pos: -71.5,-3.5 + pos: -21.5,34.5 parent: 2 - - uid: 31151 + - uid: 27281 components: - type: Transform - pos: -70.5,-3.5 + pos: -20.5,34.5 parent: 2 - - uid: 31191 + - uid: 27282 components: - type: Transform - pos: -69.5,-3.5 + pos: -20.5,33.5 parent: 2 - - uid: 31193 + - uid: 27283 components: - type: Transform - pos: -68.5,-3.5 + pos: -20.5,32.5 parent: 2 - - uid: 31194 + - uid: 27284 components: - type: Transform - pos: -67.5,-3.5 + pos: -21.5,36.5 parent: 2 - - uid: 31208 + - uid: 27285 components: - type: Transform - pos: -66.5,-3.5 + pos: -21.5,37.5 parent: 2 - - uid: 31212 + - uid: 27286 components: - type: Transform - pos: -66.5,-4.5 + pos: -21.5,38.5 parent: 2 - - uid: 31215 + - uid: 27287 components: - type: Transform - pos: -66.5,-5.5 + pos: -21.5,39.5 parent: 2 - - uid: 31218 + - uid: 27288 components: - type: Transform - pos: -66.5,-6.5 + pos: -21.5,40.5 parent: 2 - - uid: 31219 + - uid: 27289 components: - type: Transform - pos: -66.5,-7.5 + pos: -21.5,41.5 parent: 2 - - uid: 31225 + - uid: 27290 components: - type: Transform - pos: -66.5,-8.5 + pos: -21.5,42.5 parent: 2 - - uid: 31243 + - uid: 27291 components: - type: Transform - pos: -66.5,-9.5 + pos: -21.5,43.5 parent: 2 - - uid: 31264 + - uid: 27292 components: - type: Transform - pos: -66.5,-10.5 + pos: -21.5,44.5 parent: 2 - - uid: 31299 + - uid: 27293 components: - type: Transform - pos: -67.5,-10.5 + pos: -21.5,45.5 parent: 2 - - uid: 31310 + - uid: 27294 components: - type: Transform - pos: -68.5,-10.5 + pos: -21.5,46.5 parent: 2 - - uid: 31323 + - uid: 27295 components: - type: Transform - pos: -68.5,-9.5 + pos: -21.5,47.5 parent: 2 - - uid: 31330 + - uid: 27302 components: - type: Transform - pos: -68.5,-8.5 + pos: -20.5,47.5 parent: 2 - - uid: 31347 + - uid: 27304 components: - type: Transform - pos: -68.5,-7.5 + pos: -19.5,47.5 parent: 2 - - uid: 31348 + - uid: 27320 components: - type: Transform - pos: -68.5,-6.5 + pos: -26.5,54.5 parent: 2 - - uid: 31355 + - uid: 27321 components: - type: Transform - pos: -68.5,-5.5 + pos: -25.5,52.5 parent: 2 - - uid: 31356 + - uid: 27322 components: - type: Transform - pos: -65.5,-3.5 + pos: -24.5,52.5 parent: 2 - - uid: 31357 + - uid: 27334 components: - type: Transform - pos: -64.5,-3.5 + pos: -10.5,31.5 parent: 2 - - uid: 31358 + - uid: 27360 components: - type: Transform - pos: -63.5,-3.5 + pos: -10.5,30.5 parent: 2 - - uid: 31369 + - uid: 27371 components: - type: Transform - pos: -62.5,-3.5 + pos: -10.5,29.5 parent: 2 - - uid: 31370 + - uid: 27384 components: - type: Transform - pos: -61.5,-3.5 + pos: -10.5,28.5 parent: 2 - - uid: 31371 + - uid: 27385 components: - type: Transform - pos: -60.5,-3.5 + pos: -10.5,27.5 parent: 2 - - uid: 31430 + - uid: 27388 components: - type: Transform - pos: -59.5,-3.5 + pos: -10.5,26.5 parent: 2 - - uid: 31431 + - uid: 27389 components: - type: Transform - pos: -55.5,-5.5 + pos: -10.5,25.5 parent: 2 - - uid: 31439 + - uid: 27391 components: - type: Transform - pos: -55.5,-4.5 + pos: -10.5,24.5 parent: 2 - - uid: 31444 + - uid: 27392 components: - type: Transform - pos: -56.5,-4.5 + pos: -10.5,23.5 parent: 2 - - uid: 31445 + - uid: 27417 components: - type: Transform - pos: -57.5,-4.5 + pos: -10.5,22.5 parent: 2 - - uid: 31450 + - uid: 27429 components: - type: Transform - pos: -58.5,-4.5 + pos: -9.5,22.5 parent: 2 - - uid: 31458 + - uid: 27442 components: - type: Transform - pos: -58.5,-3.5 + pos: -8.5,22.5 parent: 2 - - uid: 31490 + - uid: 27444 components: - type: Transform - pos: -62.5,6.5 + pos: -8.5,23.5 parent: 2 - - uid: 31494 + - uid: 27445 components: - type: Transform - pos: -62.5,7.5 + pos: -29.5,35.5 parent: 2 - - uid: 31495 + - uid: 27448 components: - type: Transform - pos: -62.5,8.5 + pos: -8.5,24.5 parent: 2 - - uid: 31498 + - uid: 27450 components: - type: Transform - pos: -62.5,9.5 + pos: -30.5,35.5 parent: 2 - - uid: 31551 + - uid: 27451 components: - type: Transform - pos: -61.5,9.5 + pos: -11.5,22.5 parent: 2 - - uid: 31591 + - uid: 27452 components: - type: Transform - pos: -60.5,9.5 + pos: -12.5,22.5 parent: 2 - - uid: 31599 + - uid: 27456 components: - type: Transform - pos: -59.5,9.5 + pos: -13.5,22.5 parent: 2 - - uid: 31600 + - uid: 27457 components: - type: Transform - pos: -58.5,9.5 + pos: -14.5,22.5 parent: 2 - - uid: 31612 + - uid: 27460 components: - type: Transform - pos: -57.5,9.5 + pos: -15.5,22.5 parent: 2 - - uid: 31618 + - uid: 27469 components: - type: Transform - pos: -56.5,9.5 + pos: -16.5,22.5 parent: 2 - - uid: 31623 + - uid: 27499 components: - type: Transform - pos: -55.5,9.5 + pos: -17.5,22.5 parent: 2 - - uid: 31628 + - uid: 27511 components: - type: Transform - pos: -55.5,8.5 + pos: -18.5,22.5 parent: 2 - - uid: 31635 + - uid: 27514 components: - type: Transform - pos: -55.5,7.5 + pos: -19.5,22.5 parent: 2 - - uid: 31642 + - uid: 27519 components: - type: Transform - pos: -55.5,6.5 + pos: -20.5,22.5 parent: 2 - - uid: 31714 + - uid: 27523 components: - type: Transform - pos: -58.5,8.5 + pos: -21.5,22.5 parent: 2 - - uid: 31720 + - uid: 27526 components: - type: Transform - pos: -58.5,7.5 + pos: -22.5,22.5 parent: 2 - - uid: 31723 + - uid: 27533 components: - type: Transform - pos: -58.5,6.5 + pos: -23.5,22.5 parent: 2 - - uid: 31753 + - uid: 27543 components: - type: Transform - pos: -58.5,5.5 + pos: -30.5,18.5 parent: 2 - - uid: 31825 + - uid: 27544 components: - type: Transform - pos: -58.5,4.5 + pos: -29.5,18.5 parent: 2 - - uid: 31860 + - uid: 27545 components: - type: Transform - pos: -58.5,3.5 + pos: -28.5,18.5 parent: 2 - - uid: 31861 + - uid: 27548 components: - type: Transform - pos: -58.5,2.5 + pos: -27.5,18.5 parent: 2 - - uid: 31863 + - uid: 27559 components: - type: Transform - pos: -58.5,1.5 + pos: -27.5,19.5 parent: 2 - - uid: 31901 + - uid: 27560 components: - type: Transform - pos: -58.5,0.5 + pos: -27.5,20.5 parent: 2 - - uid: 31906 + - uid: 27562 components: - type: Transform - pos: -58.5,-0.5 + pos: -27.5,21.5 parent: 2 - - uid: 31908 + - uid: 27572 components: - type: Transform - pos: -58.5,-1.5 + pos: -21.5,21.5 parent: 2 - - uid: 31912 + - uid: 27578 components: - type: Transform - pos: -58.5,-2.5 + pos: -21.5,20.5 parent: 2 - - uid: 31915 + - uid: 27579 components: - type: Transform - pos: -57.5,0.5 + pos: -21.5,19.5 parent: 2 - - uid: 31922 + - uid: 27584 components: - type: Transform - pos: -56.5,0.5 + pos: -21.5,18.5 parent: 2 - - uid: 31923 + - uid: 27585 components: - type: Transform - pos: -55.5,0.5 + pos: -21.5,17.5 parent: 2 - - uid: 31924 + - uid: 27587 components: - type: Transform - pos: -54.5,0.5 + pos: -20.5,17.5 parent: 2 - - uid: 31925 + - uid: 27588 components: - type: Transform - pos: -53.5,0.5 + pos: -19.5,17.5 parent: 2 - - uid: 31926 + - uid: 27591 components: - type: Transform - pos: -52.5,0.5 + pos: -18.5,17.5 parent: 2 - - uid: 31934 + - uid: 27600 components: - type: Transform - pos: -51.5,0.5 + pos: -17.5,17.5 parent: 2 - - uid: 31937 + - uid: 27604 components: - type: Transform - pos: -50.5,0.5 + pos: -17.5,18.5 parent: 2 - - uid: 31938 + - uid: 27606 components: - type: Transform - pos: -49.5,0.5 + pos: -17.5,19.5 parent: 2 - - uid: 31943 + - uid: 27612 components: - type: Transform - pos: -48.5,0.5 + pos: -17.5,20.5 parent: 2 - - uid: 31945 + - uid: 27627 components: - type: Transform - pos: -47.5,0.5 + pos: -20.5,31.5 parent: 2 - - uid: 31949 + - uid: 27676 components: - type: Transform - pos: -47.5,1.5 + pos: -20.5,30.5 parent: 2 - - uid: 31957 + - uid: 27696 components: - type: Transform - pos: -47.5,2.5 + pos: -20.5,29.5 parent: 2 - - uid: 31961 + - uid: 27699 components: - type: Transform - pos: -46.5,0.5 + pos: -20.5,28.5 parent: 2 - - uid: 31965 + - uid: 27704 components: - type: Transform - pos: -45.5,0.5 + pos: -20.5,27.5 parent: 2 - - uid: 31966 + - uid: 27708 components: - type: Transform - pos: -44.5,0.5 + pos: -20.5,26.5 parent: 2 - - uid: 31968 + - uid: 27717 components: - type: Transform - pos: -43.5,0.5 + pos: -20.5,25.5 parent: 2 - - uid: 31974 + - uid: 27755 components: - type: Transform - pos: -42.5,0.5 + pos: -20.5,24.5 parent: 2 - - uid: 31985 + - uid: 27769 components: - type: Transform - pos: -41.5,0.5 + pos: -20.5,23.5 parent: 2 - - uid: 31987 + - uid: 27780 components: - type: Transform - pos: -40.5,0.5 + pos: -30.5,37.5 parent: 2 - - uid: 31989 + - uid: 27788 components: - type: Transform - pos: -39.5,0.5 + pos: -30.5,36.5 parent: 2 - - uid: 31994 + - uid: 27804 components: - type: Transform - pos: -38.5,0.5 + pos: -30.5,38.5 parent: 2 - - uid: 32000 + - uid: 27820 components: - type: Transform - pos: -37.5,0.5 + pos: -30.5,39.5 parent: 2 - - uid: 32005 + - uid: 27826 components: - type: Transform - pos: -36.5,0.5 + pos: -30.5,40.5 parent: 2 - - uid: 32013 + - uid: 27827 components: - type: Transform - pos: -35.5,0.5 + pos: -29.5,40.5 parent: 2 - - uid: 32015 + - uid: 27833 components: - type: Transform - pos: -34.5,0.5 + pos: -28.5,40.5 parent: 2 - - uid: 32025 + - uid: 27834 components: - type: Transform - pos: -33.5,0.5 + pos: -27.5,40.5 parent: 2 - - uid: 32028 + - uid: 27835 components: - type: Transform - pos: -32.5,0.5 + pos: -27.5,41.5 parent: 2 - - uid: 32038 + - uid: 27837 components: - type: Transform - pos: -31.5,0.5 + pos: -27.5,42.5 parent: 2 - - uid: 32039 + - uid: 27841 components: - type: Transform - pos: -31.5,1.5 + pos: -27.5,43.5 parent: 2 - - uid: 32064 + - uid: 27844 components: - type: Transform - pos: -31.5,2.5 + pos: -27.5,44.5 parent: 2 - - uid: 32065 + - uid: 27848 components: - type: Transform - pos: -33.5,-0.5 + pos: -27.5,45.5 parent: 2 - - uid: 32067 + - uid: 27849 components: - type: Transform - pos: -33.5,-1.5 + pos: -27.5,46.5 parent: 2 - - uid: 32068 + - uid: 27850 components: - type: Transform - pos: -33.5,-2.5 + pos: -27.5,47.5 parent: 2 - - uid: 32072 + - uid: 27851 components: - type: Transform - pos: -33.5,-3.5 + pos: -19.5,31.5 parent: 2 - - uid: 32076 + - uid: 27861 components: - type: Transform - pos: -34.5,-3.5 + pos: -18.5,31.5 parent: 2 - - uid: 32080 + - uid: 27862 components: - type: Transform - pos: -35.5,-3.5 + pos: -17.5,31.5 parent: 2 - - uid: 32081 + - uid: 27867 components: - type: Transform - pos: -27.5,8.5 + pos: -21.5,49.5 parent: 2 - - uid: 32082 + - uid: 27868 components: - type: Transform - pos: -27.5,7.5 + pos: -21.5,51.5 parent: 2 - - uid: 32136 + - uid: 27869 components: - type: Transform - pos: -27.5,6.5 + pos: -21.5,50.5 parent: 2 - - uid: 32137 + - uid: 27870 components: - type: Transform - pos: -27.5,5.5 + pos: -16.5,24.5 parent: 2 - - uid: 32138 + - uid: 27873 components: - type: Transform - pos: -27.5,4.5 + pos: -16.5,25.5 parent: 2 - - uid: 32139 + - uid: 27874 components: - type: Transform - pos: -27.5,3.5 + pos: -16.5,26.5 parent: 2 - - uid: 32140 + - uid: 27878 components: - type: Transform - pos: -26.5,3.5 + pos: -16.5,27.5 parent: 2 - - uid: 32141 + - uid: 27881 components: - type: Transform - pos: -26.5,2.5 + pos: -17.5,27.5 parent: 2 - - uid: 32153 + - uid: 27882 components: - type: Transform - pos: -26.5,1.5 + pos: -18.5,27.5 parent: 2 - - uid: 32154 + - uid: 27898 components: - type: Transform - pos: -26.5,0.5 + pos: -19.5,27.5 parent: 2 - - uid: 32216 + - uid: 27901 components: - type: Transform - pos: -27.5,0.5 + pos: -21.5,48.5 parent: 2 - - uid: 32219 + - uid: 27907 components: - type: Transform - pos: -28.5,0.5 + pos: -13.5,33.5 parent: 2 - - uid: 32225 + - uid: 27909 components: - type: Transform - pos: -29.5,0.5 + pos: -13.5,34.5 parent: 2 - - uid: 32232 + - uid: 27912 components: - type: Transform - pos: -30.5,0.5 + pos: -13.5,35.5 parent: 2 - - uid: 32375 + - uid: 27913 components: - type: Transform - pos: -21.5,11.5 + pos: -13.5,36.5 parent: 2 - - uid: 32378 + - uid: 27918 components: - type: Transform - pos: -21.5,12.5 + pos: -14.5,36.5 parent: 2 - - uid: 32387 + - uid: 27922 components: - type: Transform - pos: -21.5,13.5 + pos: -14.5,37.5 parent: 2 - - uid: 32389 + - uid: 27933 components: - type: Transform - pos: -21.5,14.5 + pos: -14.5,38.5 parent: 2 - - uid: 32390 + - uid: 27934 components: - type: Transform - pos: -21.5,10.5 + pos: -14.5,39.5 parent: 2 - - uid: 32391 + - uid: 27935 components: - type: Transform - pos: -22.5,10.5 + pos: -14.5,40.5 parent: 2 - - uid: 32393 + - uid: 27938 components: - type: Transform - pos: -23.5,10.5 + pos: -14.5,41.5 parent: 2 - - uid: 32394 + - uid: 27940 components: - type: Transform - pos: -21.5,15.5 + pos: -14.5,42.5 parent: 2 - - uid: 32395 + - uid: 27950 components: - type: Transform - pos: -21.5,16.5 + pos: -15.5,41.5 parent: 2 - - uid: 32775 + - uid: 27952 components: - type: Transform - pos: -18.5,-13.5 + pos: -16.5,41.5 parent: 2 - - uid: 32776 + - uid: 27955 components: - type: Transform - pos: -17.5,-13.5 + pos: -17.5,41.5 parent: 2 - - uid: 32777 + - uid: 27958 components: - type: Transform - pos: -17.5,-12.5 + pos: -17.5,42.5 parent: 2 - - uid: 32778 + - uid: 27966 components: - type: Transform - pos: -17.5,-11.5 + pos: -17.5,43.5 parent: 2 - - uid: 32782 + - uid: 27968 components: - type: Transform - pos: -16.5,-11.5 + pos: -17.5,44.5 parent: 2 - - uid: 32783 + - uid: 27970 components: - type: Transform - pos: -15.5,-11.5 + pos: -17.5,45.5 parent: 2 - - uid: 32785 + - uid: 27994 components: - type: Transform - pos: -14.5,-11.5 + pos: -18.5,45.5 parent: 2 - - uid: 32791 + - uid: 28009 components: - type: Transform - pos: -13.5,-11.5 + pos: -19.5,45.5 parent: 2 - - uid: 32792 + - uid: 28013 components: - type: Transform - pos: -12.5,-11.5 + pos: -16.5,33.5 parent: 2 - - uid: 32793 + - uid: 28015 components: - type: Transform - pos: -11.5,-11.5 + pos: -15.5,33.5 parent: 2 - - uid: 32795 + - uid: 28017 components: - type: Transform - pos: -11.5,-12.5 + pos: -14.5,33.5 parent: 2 - - uid: 32797 + - uid: 28018 components: - type: Transform - pos: -10.5,-12.5 + pos: -21.5,52.5 parent: 2 - - uid: 32798 + - uid: 28021 components: - type: Transform - pos: -9.5,-12.5 + pos: -21.5,53.5 parent: 2 - - uid: 32799 + - uid: 28022 components: - type: Transform - pos: -9.5,-13.5 + pos: -27.5,58.5 parent: 2 - - uid: 32800 + - uid: 28036 components: - type: Transform - pos: -8.5,-13.5 + pos: -28.5,58.5 parent: 2 - - uid: 32861 + - uid: 28043 components: - type: Transform - pos: -7.5,-13.5 + pos: -29.5,58.5 parent: 2 - - uid: 32875 + - uid: 28052 components: - type: Transform - pos: -6.5,-13.5 + pos: -29.5,57.5 parent: 2 - - uid: 32877 + - uid: 28054 components: - type: Transform - pos: -5.5,-13.5 + pos: -29.5,56.5 parent: 2 - - uid: 32879 + - uid: 28060 components: - type: Transform - pos: -4.5,-13.5 + pos: -6.5,43.5 parent: 2 - - uid: 32883 + - uid: 28068 components: - type: Transform - pos: -3.5,-13.5 + pos: -6.5,44.5 parent: 2 - - uid: 32886 + - uid: 28070 components: - type: Transform - pos: -2.5,-13.5 + pos: -6.5,45.5 parent: 2 - - uid: 32887 + - uid: 28072 components: - type: Transform - pos: -1.5,-13.5 + pos: -28.5,56.5 parent: 2 - - uid: 32938 + - uid: 28073 components: - type: Transform - pos: -0.5,-13.5 + pos: -27.5,56.5 parent: 2 - - uid: 32941 + - uid: 28075 components: - type: Transform - pos: -15.5,-8.5 + pos: -26.5,56.5 parent: 2 - - uid: 32942 + - uid: 28076 components: - type: Transform - pos: -14.5,-8.5 + pos: -25.5,56.5 parent: 2 - - uid: 32943 + - uid: 28077 components: - type: Transform - pos: -14.5,-9.5 + pos: -24.5,56.5 parent: 2 - - uid: 32945 + - uid: 28078 components: - type: Transform - pos: -14.5,-10.5 + pos: -23.5,56.5 parent: 2 - - uid: 32994 + - uid: 28079 components: - type: Transform - pos: -0.5,-12.5 + pos: -22.5,56.5 parent: 2 - - uid: 33001 + - uid: 28080 components: - type: Transform - pos: -0.5,-11.5 + pos: -21.5,56.5 parent: 2 - - uid: 33002 + - uid: 28084 components: - type: Transform - pos: -1.5,-11.5 + pos: -20.5,56.5 parent: 2 - - uid: 33003 + - uid: 28091 components: - type: Transform - pos: -1.5,-10.5 + pos: -20.5,55.5 parent: 2 - - uid: 33009 + - uid: 28092 components: - type: Transform - pos: -1.5,-9.5 + pos: -20.5,54.5 parent: 2 - - uid: 33019 + - uid: 28093 components: - type: Transform - pos: -0.5,-9.5 + pos: -20.5,53.5 parent: 2 - - uid: 33021 + - uid: 28094 components: - type: Transform - pos: 0.5,-9.5 + pos: -23.5,55.5 parent: 2 - - uid: 33022 + - uid: 28095 components: - type: Transform - pos: 0.5,-10.5 + pos: -23.5,54.5 parent: 2 - - uid: 33023 + - uid: 28213 components: - type: Transform - pos: 0.5,-11.5 + pos: -23.5,52.5 parent: 2 - - uid: 33024 + - uid: 28214 components: - type: Transform - pos: 1.5,-10.5 + pos: -22.5,52.5 parent: 2 - - uid: 33026 + - uid: 28244 components: - type: Transform - pos: 2.5,-10.5 + pos: -7.5,48.5 parent: 2 - - uid: 33048 + - uid: 28247 components: - type: Transform - pos: 3.5,-10.5 + pos: -7.5,47.5 parent: 2 - - uid: 33338 + - uid: 28251 components: - type: Transform - pos: 3.5,-9.5 + pos: -6.5,47.5 parent: 2 - - uid: 33339 + - uid: 28257 components: - type: Transform - pos: 3.5,-8.5 + pos: -6.5,46.5 parent: 2 - - uid: 33340 + - uid: 28327 components: - type: Transform - pos: -4.5,-8.5 + pos: -17.5,66.5 parent: 2 - - uid: 33341 + - uid: 28329 components: - type: Transform - pos: -4.5,-9.5 + pos: -18.5,66.5 parent: 2 - - uid: 33342 + - uid: 28344 components: - type: Transform - pos: -4.5,-10.5 + pos: -19.5,66.5 parent: 2 - - uid: 33343 + - uid: 28345 components: - type: Transform - pos: -3.5,-10.5 + pos: -20.5,66.5 parent: 2 - - uid: 33344 + - uid: 28346 components: - type: Transform - pos: -2.5,-10.5 + pos: -21.5,66.5 parent: 2 - - uid: 33353 + - uid: 28385 components: - type: Transform - pos: -1.5,-7.5 + pos: -22.5,66.5 parent: 2 - - uid: 33354 + - uid: 28386 components: - type: Transform - pos: -1.5,-6.5 + pos: -23.5,66.5 parent: 2 - - uid: 33355 + - uid: 28387 components: - type: Transform - pos: -2.5,-6.5 + pos: -24.5,66.5 parent: 2 - - uid: 33356 + - uid: 28474 components: - type: Transform - pos: -0.5,-6.5 + pos: -24.5,65.5 parent: 2 - - uid: 33362 + - uid: 28475 components: - type: Transform - pos: -2.5,-5.5 + pos: -24.5,64.5 parent: 2 - - uid: 33363 + - uid: 28476 components: - type: Transform - pos: -0.5,-5.5 + pos: -24.5,63.5 parent: 2 - - uid: 33364 + - uid: 28477 components: - type: Transform - pos: -0.5,-4.5 + pos: -24.5,62.5 parent: 2 - - uid: 33365 + - uid: 28478 components: - type: Transform - pos: -0.5,-3.5 + pos: -24.5,61.5 parent: 2 - - uid: 33366 + - uid: 28483 components: - type: Transform - pos: -0.5,-2.5 + pos: -24.5,60.5 parent: 2 - - uid: 33367 + - uid: 28487 components: - type: Transform - pos: -0.5,-1.5 + pos: -24.5,59.5 parent: 2 - - uid: 33368 + - uid: 28488 components: - type: Transform - pos: -0.5,-0.5 + pos: -24.5,58.5 parent: 2 - - uid: 33369 + - uid: 28489 components: - type: Transform - pos: -0.5,0.5 + pos: -24.5,57.5 parent: 2 - - uid: 33374 + - uid: 28646 components: - type: Transform - pos: 0.5,-3.5 + pos: 53.5,-43.5 parent: 2 - - uid: 33375 + - uid: 28696 components: - type: Transform - pos: 1.5,-3.5 + pos: -34.5,16.5 parent: 2 - - uid: 33376 + - uid: 28697 components: - type: Transform - pos: 2.5,-3.5 + pos: -34.5,17.5 parent: 2 - - uid: 33377 + - uid: 28699 components: - type: Transform - pos: 3.5,-3.5 + pos: -49.5,29.5 parent: 2 - - uid: 33378 + - uid: 28701 components: - type: Transform - pos: 4.5,-3.5 + pos: -48.5,29.5 parent: 2 - - uid: 33379 + - uid: 28703 components: - type: Transform - pos: 4.5,-2.5 + pos: -47.5,29.5 parent: 2 - - uid: 33380 + - uid: 28704 components: - type: Transform - pos: 4.5,-1.5 + pos: -46.5,29.5 parent: 2 - - uid: 33385 + - uid: 28705 components: - type: Transform - pos: -1.5,0.5 + pos: -46.5,30.5 parent: 2 - - uid: 33386 + - uid: 28706 components: - type: Transform - pos: -1.5,1.5 + pos: -46.5,31.5 parent: 2 - - uid: 33387 + - uid: 28707 components: - type: Transform - pos: -1.5,2.5 + pos: -42.5,22.5 parent: 2 - - uid: 33388 + - uid: 28708 components: - type: Transform - pos: -1.5,3.5 + pos: -43.5,22.5 parent: 2 - - uid: 33389 + - uid: 28713 components: - type: Transform - pos: -0.5,3.5 + pos: -44.5,22.5 parent: 2 - - uid: 33390 + - uid: 28714 components: - type: Transform - pos: 0.5,3.5 + pos: -45.5,22.5 parent: 2 - - uid: 33391 + - uid: 28715 components: - type: Transform - pos: -7.5,7.5 + pos: -46.5,22.5 parent: 2 - - uid: 33392 + - uid: 28720 components: - type: Transform - pos: -8.5,7.5 + pos: -46.5,20.5 parent: 2 - - uid: 33393 + - uid: 28725 components: - type: Transform - pos: -9.5,7.5 + pos: -46.5,21.5 parent: 2 - - uid: 33394 + - uid: 28726 components: - type: Transform - pos: 0.5,2.5 + pos: -46.5,19.5 parent: 2 - - uid: 33395 + - uid: 28727 components: - type: Transform - pos: 0.5,1.5 + pos: -46.5,18.5 parent: 2 - - uid: 33396 + - uid: 28728 components: - type: Transform - pos: 0.5,0.5 + pos: -46.5,17.5 parent: 2 - - uid: 33397 + - uid: 28729 components: - type: Transform - pos: -9.5,6.5 + pos: -43.5,17.5 parent: 2 - - uid: 33398 + - uid: 28730 components: - type: Transform - pos: -9.5,5.5 + pos: -45.5,17.5 parent: 2 - - uid: 33399 + - uid: 28731 components: - type: Transform - pos: -9.5,4.5 + pos: -44.5,17.5 parent: 2 - - uid: 33400 + - uid: 28774 components: - type: Transform - pos: -9.5,3.5 + pos: -46.5,16.5 parent: 2 - - uid: 33401 + - uid: 28779 components: - type: Transform - pos: -9.5,2.5 + pos: -46.5,15.5 parent: 2 - - uid: 33402 + - uid: 28783 components: - type: Transform - pos: -9.5,1.5 + pos: -46.5,14.5 parent: 2 - - uid: 33403 + - uid: 28785 components: - type: Transform - pos: -9.5,0.5 + pos: -46.5,13.5 parent: 2 - - uid: 33404 + - uid: 28792 components: - type: Transform - pos: -9.5,-0.5 + pos: -46.5,12.5 parent: 2 - - uid: 33405 + - uid: 28803 components: - type: Transform - pos: -9.5,-1.5 + pos: -50.5,10.5 parent: 2 - - uid: 33406 + - uid: 28807 components: - type: Transform - pos: -9.5,-2.5 + pos: -49.5,10.5 parent: 2 - - uid: 33407 + - uid: 28809 components: - type: Transform - pos: -9.5,-3.5 + pos: -49.5,11.5 parent: 2 - - uid: 33408 + - uid: 28812 components: - type: Transform - pos: -9.5,-4.5 + pos: -49.5,12.5 parent: 2 - - uid: 33409 + - uid: 28814 components: - type: Transform - pos: -9.5,-5.5 + pos: -48.5,12.5 parent: 2 - - uid: 33410 + - uid: 28818 components: - type: Transform - pos: -9.5,-6.5 + pos: -47.5,12.5 parent: 2 - - uid: 33411 + - uid: 28825 components: - type: Transform - pos: -9.5,-7.5 + pos: -49.5,22.5 parent: 2 - - uid: 33412 + - uid: 28836 components: - type: Transform - pos: -9.5,-8.5 + pos: -46.5,23.5 parent: 2 - - uid: 33413 + - uid: 28839 components: - type: Transform - pos: -8.5,-8.5 + pos: -46.5,24.5 parent: 2 - - uid: 33414 + - uid: 28841 components: - type: Transform - pos: -8.5,-9.5 + pos: -47.5,24.5 parent: 2 - - uid: 33415 + - uid: 28842 components: - type: Transform - pos: -7.5,-9.5 + pos: -48.5,24.5 parent: 2 - - uid: 33416 + - uid: 28855 components: - type: Transform - pos: 4.5,2.5 + pos: -49.5,24.5 parent: 2 - - uid: 33417 + - uid: 28857 components: - type: Transform - pos: 4.5,3.5 + pos: -49.5,23.5 parent: 2 - - uid: 33418 + - uid: 28858 components: - type: Transform - pos: 4.5,4.5 + pos: -49.5,21.5 parent: 2 - - uid: 33419 + - uid: 28869 components: - type: Transform - pos: -7.5,-10.5 + pos: -49.5,20.5 parent: 2 - - uid: 33420 + - uid: 28890 components: - type: Transform - pos: -6.5,-10.5 + pos: -48.5,20.5 parent: 2 - - uid: 33421 + - uid: 28897 components: - type: Transform - pos: 4.5,5.5 + pos: -47.5,20.5 parent: 2 - - uid: 33422 + - uid: 28916 components: - type: Transform - pos: -0.5,5.5 + pos: -47.5,16.5 parent: 2 - - uid: 33423 + - uid: 28923 components: - type: Transform - pos: -10.5,0.5 + pos: -48.5,16.5 parent: 2 - - uid: 33424 + - uid: 28983 components: - type: Transform - pos: 0.5,5.5 + pos: -49.5,16.5 parent: 2 - - uid: 33425 + - uid: 28985 components: - type: Transform - pos: -5.5,-10.5 + pos: -49.5,15.5 parent: 2 - - uid: 33426 + - uid: 28996 components: - type: Transform - pos: 4.5,-10.5 + pos: -49.5,14.5 parent: 2 - - uid: 33427 + - uid: 28997 components: - type: Transform - pos: 5.5,-10.5 + pos: -49.5,13.5 parent: 2 - - uid: 33428 + - uid: 29095 components: - type: Transform - pos: 6.5,-10.5 + pos: -50.5,22.5 parent: 2 - - uid: 33429 + - uid: 29101 components: - type: Transform - pos: 6.5,-9.5 + pos: -51.5,22.5 parent: 2 - - uid: 33430 + - uid: 29113 components: - type: Transform - pos: 7.5,-9.5 + pos: -52.5,22.5 parent: 2 - - uid: 33431 + - uid: 29118 components: - type: Transform - pos: 7.5,-8.5 + pos: -53.5,22.5 parent: 2 - - uid: 33432 + - uid: 29119 components: - type: Transform - pos: 8.5,-8.5 + pos: -54.5,22.5 parent: 2 - - uid: 33438 + - uid: 29120 components: - type: Transform - pos: 8.5,-7.5 + pos: -55.5,22.5 parent: 2 - - uid: 33439 + - uid: 29121 components: - type: Transform - pos: 8.5,-6.5 + pos: -56.5,22.5 parent: 2 - - uid: 33440 + - uid: 29129 components: - type: Transform - pos: 8.5,-5.5 + pos: -57.5,22.5 parent: 2 - - uid: 33441 + - uid: 29130 components: - type: Transform - pos: 8.5,-4.5 + pos: -58.5,22.5 parent: 2 - - uid: 33442 + - uid: 29131 components: - type: Transform - pos: 8.5,-3.5 + pos: -56.5,28.5 parent: 2 - - uid: 33443 + - uid: 29192 components: - type: Transform - pos: 8.5,-2.5 + pos: -57.5,28.5 parent: 2 - - uid: 33444 + - uid: 29251 components: - type: Transform - pos: 8.5,-1.5 + pos: -58.5,28.5 parent: 2 - - uid: 33445 + - uid: 29508 components: - type: Transform - pos: 8.5,-0.5 + pos: -58.5,27.5 parent: 2 - - uid: 33446 + - uid: 29509 components: - type: Transform - pos: 8.5,0.5 + pos: -58.5,26.5 parent: 2 - - uid: 33447 + - uid: 29510 components: - type: Transform - pos: 8.5,1.5 + pos: -58.5,25.5 parent: 2 - - uid: 33448 + - uid: 29511 components: - type: Transform - pos: 8.5,2.5 + pos: -58.5,24.5 parent: 2 - - uid: 33449 + - uid: 29512 components: - type: Transform - pos: 8.5,3.5 + pos: -58.5,23.5 parent: 2 - - uid: 33450 + - uid: 29619 components: - type: Transform - pos: 8.5,4.5 + pos: -59.5,22.5 parent: 2 - - uid: 33451 + - uid: 29620 components: - type: Transform - pos: 8.5,5.5 + pos: -60.5,22.5 parent: 2 - - uid: 33452 + - uid: 29626 components: - type: Transform - pos: 8.5,6.5 + pos: -61.5,22.5 parent: 2 - - uid: 33453 + - uid: 29628 components: - type: Transform - pos: 8.5,7.5 + pos: -62.5,22.5 parent: 2 - - uid: 33465 + - uid: 29629 components: - type: Transform - pos: 7.5,7.5 + pos: -63.5,22.5 parent: 2 - - uid: 33466 + - uid: 29630 components: - type: Transform - pos: 6.5,7.5 + pos: -64.5,22.5 parent: 2 - - uid: 33472 + - uid: 29632 components: - type: Transform - pos: 2.5,2.5 + pos: -65.5,22.5 parent: 2 - - uid: 33473 + - uid: 29634 components: - type: Transform - pos: 2.5,1.5 + pos: -66.5,22.5 parent: 2 - - uid: 33475 + - uid: 29635 components: - type: Transform - pos: 1.5,0.5 + pos: -67.5,22.5 parent: 2 - - uid: 33476 + - uid: 29638 components: - type: Transform - pos: 2.5,0.5 + pos: -68.5,22.5 parent: 2 - - uid: 33491 + - uid: 29669 components: - type: Transform - pos: -0.5,4.5 + pos: -69.5,22.5 parent: 2 - - uid: 33492 + - uid: 29676 components: - type: Transform - pos: 1.5,5.5 + pos: -70.5,22.5 parent: 2 - - uid: 33493 + - uid: 29677 components: - type: Transform - pos: 2.5,5.5 + pos: -71.5,22.5 parent: 2 - - uid: 33494 + - uid: 29679 components: - type: Transform - pos: 3.5,5.5 + pos: -72.5,22.5 parent: 2 - - uid: 33495 + - uid: 29685 components: - type: Transform - pos: -11.5,0.5 + pos: -73.5,22.5 parent: 2 - - uid: 33496 + - uid: 29693 components: - type: Transform - pos: -12.5,0.5 + pos: -74.5,22.5 parent: 2 - - uid: 33497 + - uid: 29694 components: - type: Transform - pos: -13.5,0.5 + pos: -75.5,22.5 parent: 2 - - uid: 33498 + - uid: 29695 components: - type: Transform - pos: -14.5,0.5 + pos: -76.5,22.5 parent: 2 - - uid: 33499 + - uid: 29697 components: - type: Transform - pos: -15.5,0.5 + pos: -76.5,23.5 parent: 2 - - uid: 33500 + - uid: 29698 components: - type: Transform - pos: -12.5,1.5 + pos: -76.5,24.5 parent: 2 - - uid: 33501 + - uid: 29743 components: - type: Transform - pos: -12.5,2.5 + pos: -76.5,25.5 parent: 2 - - uid: 33502 + - uid: 29764 components: - type: Transform - pos: -15.5,1.5 + pos: -76.5,26.5 parent: 2 - - uid: 33503 + - uid: 29765 components: - type: Transform - pos: -15.5,2.5 + pos: -76.5,27.5 parent: 2 - - uid: 33504 + - uid: 29766 components: - type: Transform - pos: -15.5,3.5 + pos: -76.5,28.5 parent: 2 - - uid: 33740 + - uid: 29772 components: - type: Transform - pos: -15.5,4.5 + pos: -75.5,28.5 parent: 2 - - uid: 33741 + - uid: 29774 components: - type: Transform - pos: -15.5,5.5 + pos: -74.5,28.5 parent: 2 - - uid: 33742 + - uid: 29814 components: - type: Transform - pos: -15.5,6.5 + pos: -50.5,14.5 parent: 2 - - uid: 33743 + - uid: 29828 components: - type: Transform - pos: -15.5,7.5 + pos: -51.5,14.5 parent: 2 - - uid: 33744 + - uid: 29845 components: - type: Transform - pos: -15.5,8.5 + pos: -52.5,14.5 parent: 2 - - uid: 33745 + - uid: 29846 components: - type: Transform - pos: -15.5,9.5 + pos: -53.5,14.5 parent: 2 - - uid: 33746 + - uid: 29847 components: - type: Transform - pos: -15.5,10.5 + pos: -54.5,14.5 parent: 2 - - uid: 33747 + - uid: 29855 components: - type: Transform - pos: 14.5,-11.5 + pos: -55.5,14.5 parent: 2 - - uid: 33748 + - uid: 29863 components: - type: Transform - pos: 13.5,-11.5 + pos: -56.5,14.5 parent: 2 - - uid: 33749 + - uid: 29885 components: - type: Transform - pos: 13.5,-10.5 + pos: -57.5,14.5 parent: 2 - - uid: 33750 + - uid: 29903 components: - type: Transform - pos: 12.5,-10.5 + pos: -58.5,14.5 parent: 2 - - uid: 33751 + - uid: 29908 components: - type: Transform - pos: 11.5,-10.5 + pos: -59.5,14.5 parent: 2 - - uid: 33752 + - uid: 29919 components: - type: Transform - pos: 11.5,-9.5 + pos: -60.5,14.5 parent: 2 - - uid: 33753 + - uid: 29920 components: - type: Transform - pos: 11.5,-8.5 + pos: -61.5,14.5 parent: 2 - - uid: 33754 + - uid: 29932 components: - type: Transform - pos: 12.5,-8.5 + pos: -62.5,14.5 parent: 2 - - uid: 33755 + - uid: 29958 components: - type: Transform - pos: 18.5,-8.5 + pos: -63.5,14.5 parent: 2 - - uid: 33756 + - uid: 29959 components: - type: Transform - pos: 13.5,-8.5 + pos: -64.5,14.5 parent: 2 - - uid: 33758 + - uid: 29966 components: - type: Transform - pos: 19.5,-8.5 + pos: -64.5,13.5 parent: 2 - - uid: 33759 + - uid: 29968 components: - type: Transform - pos: 16.5,-7.5 + pos: -64.5,12.5 parent: 2 - - uid: 33760 + - uid: 29974 components: - type: Transform - pos: 16.5,-8.5 + pos: -65.5,14.5 parent: 2 - - uid: 33761 + - uid: 29975 components: - type: Transform - pos: 15.5,-8.5 + pos: -66.5,14.5 parent: 2 - - uid: 33762 + - uid: 29976 components: - type: Transform - pos: 14.5,-8.5 + pos: -67.5,14.5 parent: 2 - - uid: 33767 + - uid: 29977 components: - type: Transform - pos: 17.5,-8.5 + pos: -68.5,14.5 parent: 2 - - uid: 33768 + - uid: 29978 components: - type: Transform - pos: 20.5,-8.5 + pos: -69.5,14.5 parent: 2 - - uid: 33798 + - uid: 29980 components: - type: Transform - pos: 25.5,-4.5 + pos: -70.5,14.5 parent: 2 - - uid: 33799 + - uid: 29982 components: - type: Transform - pos: 25.5,-5.5 + pos: -71.5,14.5 parent: 2 - - uid: 33800 + - uid: 30005 components: - type: Transform - pos: 24.5,-5.5 + pos: -72.5,14.5 parent: 2 - - uid: 33801 + - uid: 30006 components: - type: Transform - pos: -2.5,-14.5 + pos: -73.5,14.5 parent: 2 - - uid: 33802 + - uid: 30007 components: - type: Transform - pos: 24.5,-6.5 + pos: -74.5,14.5 parent: 2 - - uid: 33803 + - uid: 30018 components: - type: Transform - pos: 24.5,-7.5 + pos: -75.5,14.5 parent: 2 - - uid: 33804 + - uid: 30022 components: - type: Transform - pos: 24.5,-8.5 + pos: -76.5,14.5 parent: 2 - - uid: 33821 + - uid: 30101 components: - type: Transform - pos: 20.5,-9.5 + pos: -77.5,14.5 parent: 2 - - uid: 33822 + - uid: 30102 components: - type: Transform - pos: 20.5,-10.5 + pos: -77.5,13.5 parent: 2 - - uid: 33823 + - uid: 30103 components: - type: Transform - pos: 20.5,-11.5 + pos: -77.5,12.5 parent: 2 - - uid: 33824 + - uid: 30109 components: - type: Transform - pos: 20.5,-12.5 + pos: -96.5,12.5 parent: 2 - - uid: 33825 + - uid: 30120 components: - type: Transform - pos: 20.5,-13.5 + pos: -96.5,13.5 parent: 2 - - uid: 33826 + - uid: 30121 components: - type: Transform - pos: 20.5,-14.5 + pos: -96.5,14.5 parent: 2 - - uid: 33830 + - uid: 30127 components: - type: Transform - pos: 23.5,-8.5 + pos: -95.5,14.5 parent: 2 - - uid: 33831 + - uid: 30128 components: - type: Transform - pos: 23.5,-9.5 + pos: -94.5,14.5 parent: 2 - - uid: 33832 + - uid: 30133 components: - type: Transform - pos: 17.5,-20.5 + pos: -93.5,14.5 parent: 2 - - uid: 33833 + - uid: 30135 components: - type: Transform - pos: 17.5,-19.5 + pos: -92.5,14.5 parent: 2 - - uid: 33834 + - uid: 30142 components: - type: Transform - pos: 17.5,-18.5 + pos: -91.5,14.5 parent: 2 - - uid: 33835 + - uid: 30144 components: - type: Transform - pos: 17.5,-17.5 + pos: -90.5,14.5 parent: 2 - - uid: 33836 + - uid: 30151 components: - type: Transform - pos: 17.5,-16.5 + pos: -89.5,14.5 parent: 2 - - uid: 33837 + - uid: 30228 components: - type: Transform - pos: 17.5,-15.5 + pos: -88.5,14.5 parent: 2 - - uid: 33838 + - uid: 30237 components: - type: Transform - pos: 17.5,-14.5 + pos: -87.5,14.5 parent: 2 - - uid: 33839 + - uid: 30240 components: - type: Transform - pos: 18.5,-14.5 + pos: -86.5,14.5 parent: 2 - - uid: 33840 + - uid: 30242 components: - type: Transform - pos: 19.5,-14.5 + pos: -85.5,14.5 parent: 2 - - uid: 33841 + - uid: 30252 components: - type: Transform - pos: 18.5,-20.5 + pos: -84.5,14.5 parent: 2 - - uid: 33842 + - uid: 30264 components: - type: Transform - pos: 19.5,-20.5 + pos: -83.5,14.5 parent: 2 - - uid: 33843 + - uid: 30266 components: - type: Transform - pos: 19.5,-19.5 + pos: -82.5,14.5 parent: 2 - - uid: 33844 + - uid: 30269 components: - type: Transform - pos: 19.5,-18.5 + pos: -81.5,14.5 parent: 2 - - uid: 33845 + - uid: 30273 components: - type: Transform - pos: 21.5,-14.5 + pos: -80.5,14.5 parent: 2 - - uid: 33846 + - uid: 30275 components: - type: Transform - pos: 22.5,-14.5 + pos: -79.5,14.5 parent: 2 - - uid: 33847 + - uid: 30276 components: - type: Transform - pos: 23.5,-14.5 + pos: -78.5,14.5 parent: 2 - - uid: 33848 + - uid: 30283 components: - type: Transform - pos: 23.5,-15.5 + pos: -96.5,24.5 parent: 2 - - uid: 33849 + - uid: 30284 components: - type: Transform - pos: 23.5,-16.5 + pos: -96.5,23.5 parent: 2 - - uid: 33850 + - uid: 30285 components: - type: Transform - pos: 23.5,-17.5 + pos: -96.5,22.5 parent: 2 - - uid: 33851 + - uid: 30289 components: - type: Transform - pos: 23.5,-18.5 + pos: -95.5,22.5 parent: 2 - - uid: 33852 + - uid: 30298 components: - type: Transform - pos: 23.5,-19.5 + pos: -94.5,22.5 parent: 2 - - uid: 33853 + - uid: 30300 components: - type: Transform - pos: 23.5,-20.5 + pos: -93.5,22.5 parent: 2 - - uid: 33854 + - uid: 30306 components: - type: Transform - pos: 24.5,-20.5 + pos: -92.5,22.5 parent: 2 - - uid: 33855 + - uid: 30312 components: - type: Transform - pos: 25.5,-20.5 + pos: -91.5,22.5 parent: 2 - - uid: 33856 + - uid: 30313 components: - type: Transform - pos: 26.5,-20.5 + pos: -90.5,22.5 parent: 2 - - uid: 33858 + - uid: 30331 components: - type: Transform - pos: 20.5,-20.5 + pos: -89.5,22.5 parent: 2 - - uid: 34468 + - uid: 30340 components: - type: Transform - pos: 24.5,-14.5 + pos: -88.5,22.5 parent: 2 - - uid: 34469 + - uid: 30346 components: - type: Transform - pos: 25.5,-14.5 + pos: -87.5,22.5 parent: 2 - - uid: 34470 + - uid: 30347 components: - type: Transform - pos: 26.5,-14.5 + pos: -86.5,22.5 parent: 2 - - uid: 34476 + - uid: 30354 components: - type: Transform - pos: 27.5,-14.5 + pos: -85.5,22.5 parent: 2 - - uid: 34497 + - uid: 30360 components: - type: Transform - pos: 28.5,-14.5 + pos: -84.5,22.5 parent: 2 - - uid: 34562 + - uid: 30363 components: - type: Transform - pos: 28.5,-13.5 + pos: -83.5,22.5 parent: 2 - - uid: 34563 + - uid: 30372 components: - type: Transform - pos: 28.5,-12.5 + pos: -82.5,22.5 parent: 2 - - uid: 34569 + - uid: 30389 components: - type: Transform - pos: 23.5,-10.5 + pos: -81.5,22.5 parent: 2 - - uid: 34571 + - uid: 30399 components: - type: Transform - pos: 23.5,-11.5 + pos: -80.5,22.5 parent: 2 - - uid: 34578 + - uid: 30401 components: - type: Transform - pos: 23.5,-24.5 + pos: -79.5,22.5 parent: 2 - - uid: 34579 + - uid: 30405 components: - type: Transform - pos: 24.5,-24.5 + pos: -78.5,22.5 parent: 2 - - uid: 34598 + - uid: 30410 components: - type: Transform - pos: 25.5,-24.5 + pos: -77.5,22.5 parent: 2 - - uid: 34917 + - uid: 30428 components: - type: Transform - pos: 26.5,-24.5 + pos: -78.5,23.5 parent: 2 - - uid: 34918 + - uid: 30430 components: - type: Transform - pos: 27.5,-24.5 + pos: -78.5,24.5 parent: 2 - - uid: 34919 + - uid: 30435 components: - type: Transform - pos: 27.5,-23.5 + pos: -94.5,23.5 parent: 2 - - uid: 34920 + - uid: 30445 components: - type: Transform - pos: 27.5,-22.5 + pos: -94.5,24.5 parent: 2 - - uid: 34921 + - uid: 30456 components: - type: Transform - pos: 27.5,-21.5 + pos: -94.5,25.5 parent: 2 - - uid: 34922 + - uid: 30457 components: - type: Transform - pos: 27.5,-20.5 + pos: -94.5,27.5 parent: 2 - - uid: 34923 + - uid: 30469 components: - type: Transform - pos: 23.5,-12.5 + pos: -94.5,28.5 parent: 2 - - uid: 34924 + - uid: 30473 components: - type: Transform - pos: 23.5,-13.5 + pos: -93.5,28.5 parent: 2 - - uid: 34928 + - uid: 30480 components: - type: Transform - pos: 28.5,-20.5 + pos: -92.5,28.5 parent: 2 - - uid: 34929 + - uid: 30483 components: - type: Transform - pos: 29.5,-20.5 + pos: -56.5,-16.5 parent: 2 - - uid: 34930 + - uid: 30484 components: - type: Transform - pos: 30.5,-20.5 + pos: -56.5,-15.5 parent: 2 - - uid: 34931 + - uid: 30485 components: - type: Transform - pos: 31.5,-20.5 + pos: -57.5,-15.5 parent: 2 - - uid: 34932 + - uid: 30486 components: - type: Transform - pos: 32.5,-20.5 + pos: -57.5,-14.5 parent: 2 - - uid: 34933 + - uid: 30487 components: - type: Transform - pos: 32.5,-19.5 + pos: -57.5,-13.5 parent: 2 - - uid: 34934 + - uid: 30495 components: - type: Transform - pos: 32.5,-18.5 + pos: -92.5,-12.5 parent: 2 - - uid: 34938 + - uid: 30496 components: - type: Transform - pos: 32.5,-17.5 + pos: -91.5,-12.5 parent: 2 - - uid: 34939 + - uid: 30497 components: - type: Transform - pos: 33.5,-20.5 + pos: -91.5,-11.5 parent: 2 - - uid: 34940 + - uid: 30499 components: - type: Transform - pos: 34.5,-20.5 + pos: -91.5,-10.5 parent: 2 - - uid: 34941 + - uid: 30533 components: - type: Transform - pos: 35.5,-20.5 + pos: -91.5,-9.5 parent: 2 - - uid: 34942 + - uid: 30542 components: - type: Transform - pos: 36.5,-20.5 + pos: -91.5,-8.5 parent: 2 - - uid: 34944 + - uid: 30549 components: - type: Transform - pos: 32.5,-21.5 + pos: -91.5,-7.5 parent: 2 - - uid: 34945 + - uid: 30556 components: - type: Transform - pos: 32.5,-22.5 + pos: -90.5,-7.5 parent: 2 - - uid: 34946 + - uid: 30557 components: - type: Transform - pos: 32.5,-23.5 + pos: -89.5,-7.5 parent: 2 - - uid: 34947 + - uid: 30602 components: - type: Transform - pos: 17.5,-13.5 + pos: -88.5,-7.5 parent: 2 - - uid: 34948 + - uid: 30603 components: - type: Transform - pos: 17.5,-12.5 + pos: -87.5,-7.5 parent: 2 - - uid: 34949 + - uid: 30605 components: - type: Transform - pos: 18.5,-12.5 + pos: -86.5,-7.5 parent: 2 - - uid: 34957 + - uid: 30608 components: - type: Transform - pos: 40.5,-19.5 + pos: -85.5,-7.5 parent: 2 - - uid: 34958 + - uid: 30611 components: - type: Transform - pos: 40.5,-18.5 + pos: -84.5,-7.5 parent: 2 - - uid: 34964 + - uid: 30613 components: - type: Transform - pos: 40.5,-17.5 + pos: -83.5,-7.5 parent: 2 - - uid: 34965 + - uid: 30616 components: - type: Transform - pos: 40.5,-16.5 + pos: -82.5,-12.5 parent: 2 - - uid: 34966 + - uid: 30617 components: - type: Transform - pos: 40.5,-15.5 + pos: -83.5,-12.5 parent: 2 - - uid: 34967 + - uid: 30619 components: - type: Transform - pos: 40.5,-14.5 + pos: -83.5,-11.5 parent: 2 - - uid: 34968 + - uid: 30620 components: - type: Transform - pos: 40.5,-13.5 + pos: -83.5,-10.5 parent: 2 - - uid: 34969 + - uid: 30623 components: - type: Transform - pos: 40.5,-12.5 + pos: -83.5,-9.5 parent: 2 - - uid: 34971 + - uid: 30640 components: - type: Transform - pos: 42.5,-19.5 + pos: -83.5,-8.5 parent: 2 - - uid: 34972 + - uid: 30641 components: - type: Transform - pos: 42.5,-18.5 + pos: -82.5,-7.5 parent: 2 - - uid: 34973 + - uid: 30667 components: - type: Transform - pos: 42.5,-17.5 + pos: -81.5,-7.5 parent: 2 - - uid: 34974 + - uid: 30671 components: - type: Transform - pos: 52.5,-43.5 + pos: -80.5,-7.5 parent: 2 - - uid: 34975 + - uid: 30675 components: - type: Transform - pos: 51.5,-43.5 + pos: -79.5,-7.5 parent: 2 - - uid: 34976 + - uid: 30681 components: - type: Transform - pos: 50.5,-43.5 + pos: -78.5,-7.5 parent: 2 - - uid: 34977 + - uid: 30682 components: - type: Transform - pos: 49.5,-43.5 + pos: -77.5,-7.5 parent: 2 - - uid: 34978 + - uid: 30710 components: - type: Transform - pos: 49.5,-44.5 + pos: -76.5,-7.5 parent: 2 - - uid: 34979 + - uid: 30765 components: - type: Transform - pos: 49.5,-45.5 + pos: -75.5,-7.5 parent: 2 - - uid: 34980 + - uid: 30782 components: - type: Transform - pos: 49.5,-46.5 + pos: -74.5,-7.5 parent: 2 - - uid: 34981 + - uid: 30786 components: - type: Transform - pos: 49.5,-47.5 + pos: -73.5,-7.5 parent: 2 - - uid: 34982 + - uid: 30788 components: - type: Transform - pos: 51.5,-21.5 + pos: -58.5,-13.5 parent: 2 - - uid: 34983 + - uid: 30806 components: - type: Transform - pos: 51.5,-20.5 + pos: -59.5,-13.5 parent: 2 - - uid: 34984 + - uid: 30810 components: - type: Transform - pos: 51.5,-19.5 + pos: -60.5,-13.5 parent: 2 - - uid: 34985 + - uid: 30831 components: - type: Transform - pos: 52.5,-21.5 + pos: -61.5,-13.5 parent: 2 - - uid: 34986 + - uid: 30878 components: - type: Transform - pos: 53.5,-21.5 + pos: -62.5,-13.5 parent: 2 - - uid: 34987 + - uid: 30895 components: - type: Transform - pos: 54.5,-21.5 + pos: -63.5,-13.5 parent: 2 - - uid: 34988 + - uid: 30896 components: - type: Transform - pos: 55.5,-21.5 + pos: -64.5,-13.5 parent: 2 - - uid: 34989 + - uid: 30898 components: - type: Transform - pos: 56.5,-21.5 + pos: -65.5,-13.5 parent: 2 - - uid: 34990 + - uid: 30906 components: - type: Transform - pos: 56.5,-22.5 + pos: -66.5,-13.5 parent: 2 - - uid: 34991 + - uid: 30910 components: - type: Transform - pos: 56.5,-23.5 + pos: -67.5,-13.5 parent: 2 - - uid: 34992 + - uid: 30911 components: - type: Transform - pos: 56.5,-24.5 + pos: -68.5,-13.5 parent: 2 - - uid: 34993 + - uid: 30912 components: - type: Transform - pos: 56.5,-27.5 + pos: -69.5,-13.5 parent: 2 - - uid: 34994 + - uid: 30914 components: - type: Transform - pos: 56.5,-26.5 + pos: -69.5,-14.5 parent: 2 - - uid: 34995 + - uid: 30915 components: - type: Transform - pos: 56.5,-25.5 + pos: -69.5,-15.5 parent: 2 - - uid: 35027 + - uid: 30916 components: - type: Transform - pos: 69.5,-35.5 + pos: -70.5,-15.5 parent: 2 - - uid: 35028 + - uid: 30935 components: - type: Transform - pos: 68.5,-35.5 + pos: -71.5,-15.5 parent: 2 - - uid: 35062 + - uid: 30937 components: - type: Transform - pos: 67.5,-35.5 + pos: -71.5,-14.5 parent: 2 - - uid: 35069 + - uid: 30938 components: - type: Transform - pos: 66.5,-35.5 + pos: -72.5,-14.5 parent: 2 - - uid: 35070 + - uid: 30939 components: - type: Transform - pos: 65.5,-35.5 + pos: -72.5,-13.5 parent: 2 - - uid: 35083 + - uid: 30941 components: - type: Transform - pos: 64.5,-35.5 + pos: -72.5,-12.5 parent: 2 - - uid: 35084 + - uid: 30942 components: - type: Transform - pos: 64.5,-34.5 + pos: -72.5,-11.5 parent: 2 - - uid: 35085 + - uid: 30945 components: - type: Transform - pos: 63.5,-34.5 + pos: -72.5,-10.5 parent: 2 - - uid: 35086 + - uid: 30946 components: - type: Transform - pos: 62.5,-34.5 + pos: -72.5,-9.5 parent: 2 - - uid: 35087 + - uid: 30947 components: - type: Transform - pos: 61.5,-34.5 + pos: -72.5,-8.5 parent: 2 - - uid: 35447 + - uid: 30948 components: - type: Transform - pos: 61.5,-43.5 + pos: -72.5,-7.5 parent: 2 - - uid: 35452 + - uid: 30951 components: - type: Transform - pos: 61.5,-44.5 + pos: -57.5,-12.5 parent: 2 - - uid: 35456 + - uid: 30956 components: - type: Transform - pos: 21.5,-21.5 + pos: -56.5,-12.5 parent: 2 - - uid: 35457 + - uid: 30957 components: - type: Transform - pos: 21.5,-22.5 + pos: -55.5,-12.5 parent: 2 - - uid: 35485 + - uid: 30958 components: - type: Transform - pos: 56.5,-37.5 + pos: -55.5,-11.5 parent: 2 - - uid: 35486 + - uid: 30959 components: - type: Transform - pos: 56.5,-36.5 + pos: -55.5,-10.5 parent: 2 - - uid: 35487 + - uid: 31005 components: - type: Transform - pos: 56.5,-35.5 + pos: -55.5,-9.5 parent: 2 - - uid: 35500 + - uid: 31011 components: - type: Transform - pos: 62.5,-44.5 + pos: -55.5,-8.5 parent: 2 - - uid: 35501 + - uid: 31062 components: - type: Transform - pos: 63.5,-44.5 + pos: -55.5,-7.5 parent: 2 - - uid: 35502 + - uid: 31065 components: - type: Transform - pos: 64.5,-44.5 + pos: -55.5,-6.5 parent: 2 - - uid: 35503 + - uid: 31071 components: - type: Transform - pos: 65.5,-44.5 + pos: -72.5,-6.5 parent: 2 - - uid: 35504 + - uid: 31072 components: - type: Transform - pos: 66.5,-44.5 + pos: -56.5,-7.5 parent: 2 - - uid: 35507 + - uid: 31074 components: - type: Transform - pos: 67.5,-44.5 + pos: -72.5,-5.5 parent: 2 - - uid: 35508 + - uid: 31142 components: - type: Transform - pos: 68.5,-44.5 + pos: -72.5,-4.5 parent: 2 - - uid: 35509 + - uid: 31143 components: - type: Transform - pos: 69.5,-44.5 + pos: -72.5,-3.5 parent: 2 - - uid: 35512 + - uid: 31150 components: - type: Transform - pos: 70.5,-44.5 + pos: -71.5,-3.5 parent: 2 - - uid: 35513 + - uid: 31151 components: - type: Transform - pos: 71.5,-44.5 + pos: -70.5,-3.5 parent: 2 - - uid: 35516 + - uid: 31191 components: - type: Transform - pos: 72.5,-44.5 + pos: -69.5,-3.5 parent: 2 - - uid: 35517 + - uid: 31193 components: - type: Transform - pos: 73.5,-44.5 + pos: -68.5,-3.5 parent: 2 - - uid: 35518 + - uid: 31194 components: - type: Transform - pos: 74.5,-44.5 + pos: -67.5,-3.5 parent: 2 - - uid: 35520 + - uid: 31208 components: - type: Transform - pos: 75.5,-44.5 + pos: -66.5,-3.5 parent: 2 - - uid: 35521 + - uid: 31212 components: - type: Transform - pos: 76.5,-44.5 + pos: -66.5,-4.5 parent: 2 - - uid: 35522 + - uid: 31215 components: - type: Transform - pos: 77.5,-44.5 + pos: -66.5,-5.5 parent: 2 - - uid: 35523 + - uid: 31218 components: - type: Transform - pos: 78.5,-44.5 + pos: -66.5,-6.5 parent: 2 - - uid: 35524 + - uid: 31219 components: - type: Transform - pos: 78.5,-43.5 + pos: -66.5,-7.5 parent: 2 - - uid: 35525 + - uid: 31225 components: - type: Transform - pos: 78.5,-42.5 + pos: -66.5,-8.5 parent: 2 - - uid: 36161 + - uid: 31243 components: - type: Transform - pos: 57.5,-39.5 + pos: -66.5,-9.5 parent: 2 - - uid: 36638 + - uid: 31264 components: - type: Transform - pos: 54.5,-43.5 + pos: -66.5,-10.5 parent: 2 - - uid: 36639 + - uid: 31299 components: - type: Transform - pos: -21.5,-45.5 + pos: -67.5,-10.5 parent: 2 - - uid: 36640 + - uid: 31310 components: - type: Transform - pos: 55.5,-43.5 + pos: -68.5,-10.5 parent: 2 - - uid: 36641 + - uid: 31323 components: - type: Transform - pos: 56.5,-43.5 + pos: -68.5,-9.5 parent: 2 - - uid: 36642 + - uid: 31330 components: - type: Transform - pos: 57.5,-43.5 + pos: -68.5,-8.5 parent: 2 - - uid: 36643 + - uid: 31347 components: - type: Transform - pos: 58.5,-43.5 + pos: -68.5,-7.5 parent: 2 - - uid: 36644 + - uid: 31348 components: - type: Transform - pos: 59.5,-43.5 + pos: -68.5,-6.5 parent: 2 - - uid: 36645 + - uid: 31355 components: - type: Transform - pos: 60.5,-43.5 + pos: -68.5,-5.5 parent: 2 - - uid: 36646 + - uid: 31356 components: - type: Transform - pos: 49.5,-42.5 + pos: -65.5,-3.5 parent: 2 - - uid: 36647 + - uid: 31357 components: - type: Transform - pos: 49.5,-41.5 + pos: -64.5,-3.5 parent: 2 - - uid: 36648 + - uid: 31358 components: - type: Transform - pos: 44.5,7.5 + pos: -63.5,-3.5 parent: 2 - - uid: 36649 + - uid: 31369 components: - type: Transform - pos: 45.5,7.5 + pos: -62.5,-3.5 parent: 2 - - uid: 36650 + - uid: 31370 components: - type: Transform - pos: 46.5,7.5 + pos: -61.5,-3.5 parent: 2 - - uid: 36651 + - uid: 31371 components: - type: Transform - pos: 46.5,8.5 + pos: -60.5,-3.5 parent: 2 - - uid: 36657 + - uid: 31430 components: - type: Transform - pos: 45.5,6.5 + pos: -59.5,-3.5 parent: 2 - - uid: 36658 + - uid: 31431 components: - type: Transform - pos: 45.5,5.5 + pos: -55.5,-5.5 parent: 2 - - uid: 36659 + - uid: 31439 components: - type: Transform - pos: 45.5,4.5 + pos: -55.5,-4.5 parent: 2 - - uid: 36665 + - uid: 31444 components: - type: Transform - pos: 44.5,5.5 + pos: -56.5,-4.5 parent: 2 - - uid: 36666 + - uid: 31445 components: - type: Transform - pos: 43.5,5.5 + pos: -57.5,-4.5 parent: 2 - - uid: 36667 + - uid: 31450 components: - type: Transform - pos: 42.5,5.5 + pos: -58.5,-4.5 parent: 2 - - uid: 36676 + - uid: 31458 components: - type: Transform - pos: 42.5,4.5 + pos: -58.5,-3.5 parent: 2 - - uid: 36677 + - uid: 31490 components: - type: Transform - pos: 42.5,3.5 + pos: -62.5,6.5 parent: 2 - - uid: 36678 + - uid: 31494 components: - type: Transform - pos: 42.5,2.5 + pos: -62.5,7.5 parent: 2 - - uid: 36679 + - uid: 31495 components: - type: Transform - pos: 42.5,1.5 + pos: -62.5,8.5 parent: 2 - - uid: 36680 + - uid: 31498 components: - type: Transform - pos: 42.5,0.5 + pos: -62.5,9.5 parent: 2 - - uid: 36691 + - uid: 31551 components: - type: Transform - pos: 46.5,4.5 + pos: -61.5,9.5 parent: 2 - - uid: 36692 + - uid: 31591 components: - type: Transform - pos: 47.5,4.5 + pos: -60.5,9.5 parent: 2 - - uid: 36693 + - uid: 31599 components: - type: Transform - pos: 48.5,4.5 + pos: -59.5,9.5 parent: 2 - - uid: 36694 + - uid: 31600 components: - type: Transform - pos: 49.5,4.5 + pos: -58.5,9.5 parent: 2 - - uid: 36695 + - uid: 31612 components: - type: Transform - pos: 50.5,4.5 + pos: -57.5,9.5 parent: 2 - - uid: 36696 + - uid: 31618 components: - type: Transform - pos: 51.5,4.5 + pos: -56.5,9.5 parent: 2 - - uid: 36697 + - uid: 31623 components: - type: Transform - pos: 52.5,4.5 + pos: -55.5,9.5 parent: 2 - - uid: 36698 + - uid: 31628 components: - type: Transform - pos: 53.5,4.5 + pos: -55.5,8.5 parent: 2 - - uid: 36699 + - uid: 31635 components: - type: Transform - pos: 54.5,4.5 + pos: -55.5,7.5 parent: 2 - - uid: 36705 + - uid: 31642 components: - type: Transform - pos: 54.5,3.5 + pos: -55.5,6.5 parent: 2 - - uid: 36710 + - uid: 31714 components: - type: Transform - pos: 55.5,3.5 + pos: -58.5,8.5 parent: 2 - - uid: 36711 + - uid: 31720 components: - type: Transform - pos: 54.5,2.5 + pos: -58.5,7.5 parent: 2 - - uid: 36712 + - uid: 31723 components: - type: Transform - pos: 61.5,8.5 + pos: -58.5,6.5 parent: 2 - - uid: 36713 + - uid: 31753 components: - type: Transform - pos: 60.5,8.5 + pos: -58.5,5.5 parent: 2 - - uid: 36714 + - uid: 31825 components: - type: Transform - pos: 59.5,8.5 + pos: -58.5,4.5 parent: 2 - - uid: 36715 + - uid: 31860 components: - type: Transform - pos: 58.5,8.5 + pos: -58.5,3.5 parent: 2 - - uid: 36716 + - uid: 31861 components: - type: Transform - pos: 58.5,7.5 + pos: -58.5,2.5 parent: 2 - - uid: 36717 + - uid: 31863 components: - type: Transform - pos: 58.5,6.5 + pos: -58.5,1.5 parent: 2 - - uid: 36724 + - uid: 31901 components: - type: Transform - pos: 58.5,5.5 + pos: -58.5,0.5 parent: 2 - - uid: 36743 + - uid: 31906 components: - type: Transform - pos: 58.5,4.5 + pos: -58.5,-0.5 parent: 2 - - uid: 36772 + - uid: 31908 components: - type: Transform - pos: 58.5,3.5 + pos: -58.5,-1.5 parent: 2 - - uid: 36781 + - uid: 31912 components: - type: Transform - pos: 58.5,2.5 + pos: -58.5,-2.5 parent: 2 - - uid: 36802 + - uid: 31915 components: - type: Transform - pos: 58.5,1.5 + pos: -57.5,0.5 parent: 2 - - uid: 36805 + - uid: 31922 components: - type: Transform - pos: 58.5,0.5 + pos: -56.5,0.5 parent: 2 - - uid: 36806 + - uid: 31923 components: - type: Transform - pos: 58.5,-0.5 + pos: -55.5,0.5 parent: 2 - - uid: 36807 + - uid: 31924 components: - type: Transform - pos: 58.5,-1.5 + pos: -54.5,0.5 parent: 2 - - uid: 36808 + - uid: 31925 components: - type: Transform - pos: 58.5,-2.5 + pos: -53.5,0.5 parent: 2 - - uid: 36908 + - uid: 31926 components: - type: Transform - pos: 57.5,-2.5 + pos: -52.5,0.5 parent: 2 - - uid: 36909 + - uid: 31934 components: - type: Transform - pos: 56.5,-2.5 + pos: -51.5,0.5 parent: 2 - - uid: 36910 + - uid: 31937 components: - type: Transform - pos: 55.5,-2.5 + pos: -50.5,0.5 parent: 2 - - uid: 36911 + - uid: 31938 components: - type: Transform - pos: 54.5,-2.5 + pos: -49.5,0.5 parent: 2 - - uid: 36912 + - uid: 31943 components: - type: Transform - pos: 54.5,-1.5 + pos: -48.5,0.5 parent: 2 - - uid: 36913 + - uid: 31945 components: - type: Transform - pos: 54.5,-0.5 + pos: -47.5,0.5 parent: 2 - - uid: 36914 + - uid: 31949 components: - type: Transform - pos: 54.5,0.5 + pos: -47.5,1.5 parent: 2 - - uid: 36915 + - uid: 31957 components: - type: Transform - pos: 54.5,1.5 + pos: -47.5,2.5 parent: 2 - - uid: 36916 + - uid: 31961 components: - type: Transform - pos: 54.5,-44.5 + pos: -46.5,0.5 parent: 2 - - uid: 36917 + - uid: 31965 components: - type: Transform - pos: 54.5,-45.5 + pos: -45.5,0.5 parent: 2 - - uid: 36918 + - uid: 31966 components: - type: Transform - pos: 54.5,-46.5 + pos: -44.5,0.5 parent: 2 - - uid: 36919 + - uid: 31968 components: - type: Transform - pos: 54.5,-47.5 + pos: -43.5,0.5 parent: 2 - - uid: 36920 + - uid: 31974 components: - type: Transform - pos: 54.5,-48.5 + pos: -42.5,0.5 parent: 2 - - uid: 36921 + - uid: 31985 components: - type: Transform - pos: 54.5,-49.5 + pos: -41.5,0.5 parent: 2 - - uid: 36922 + - uid: 31987 components: - type: Transform - pos: 54.5,-50.5 + pos: -40.5,0.5 parent: 2 - - uid: 36923 + - uid: 31989 components: - type: Transform - pos: 54.5,-51.5 + pos: -39.5,0.5 parent: 2 - - uid: 36924 + - uid: 31994 components: - type: Transform - pos: 56.5,-51.5 + pos: -38.5,0.5 parent: 2 - - uid: 36925 + - uid: 32000 components: - type: Transform - pos: 57.5,-51.5 + pos: -37.5,0.5 parent: 2 - - uid: 37061 + - uid: 32005 components: - type: Transform - pos: 58.5,-51.5 + pos: -36.5,0.5 parent: 2 - - uid: 37062 + - uid: 32013 components: - type: Transform - pos: 59.5,-51.5 + pos: -35.5,0.5 parent: 2 - - uid: 37063 + - uid: 32015 components: - type: Transform - pos: 60.5,-51.5 + pos: -34.5,0.5 parent: 2 - - uid: 37064 + - uid: 32025 components: - type: Transform - pos: 61.5,-51.5 + pos: -33.5,0.5 parent: 2 - - uid: 37065 + - uid: 32028 components: - type: Transform - pos: 62.5,-51.5 + pos: -32.5,0.5 parent: 2 - - uid: 37066 + - uid: 32038 components: - type: Transform - pos: 62.5,-50.5 + pos: -31.5,0.5 parent: 2 - - uid: 37067 + - uid: 32039 components: - type: Transform - pos: 62.5,-49.5 + pos: -31.5,1.5 parent: 2 - - uid: 37068 + - uid: 32064 components: - type: Transform - pos: 41.5,0.5 + pos: -31.5,2.5 parent: 2 - - uid: 37069 + - uid: 32065 components: - type: Transform - pos: 40.5,0.5 + pos: -33.5,-0.5 parent: 2 - - uid: 37070 + - uid: 32067 components: - type: Transform - pos: 39.5,0.5 + pos: -33.5,-1.5 parent: 2 - - uid: 37071 + - uid: 32068 components: - type: Transform - pos: 38.5,0.5 + pos: -33.5,-2.5 parent: 2 - - uid: 37072 + - uid: 32072 components: - type: Transform - pos: 37.5,0.5 + pos: -33.5,-3.5 parent: 2 - - uid: 37073 + - uid: 32076 components: - type: Transform - pos: 36.5,0.5 + pos: -34.5,-3.5 parent: 2 - - uid: 37074 + - uid: 32080 components: - type: Transform - pos: 35.5,0.5 + pos: -35.5,-3.5 parent: 2 - - uid: 37075 + - uid: 32081 components: - type: Transform - pos: 34.5,0.5 + pos: -27.5,8.5 parent: 2 - - uid: 37076 + - uid: 32082 components: - type: Transform - pos: 33.5,0.5 + pos: -27.5,7.5 parent: 2 - - uid: 37077 + - uid: 32136 components: - type: Transform - pos: 32.5,0.5 + pos: -27.5,6.5 parent: 2 - - uid: 37078 + - uid: 32137 components: - type: Transform - pos: 31.5,0.5 + pos: -27.5,5.5 parent: 2 - - uid: 37079 + - uid: 32138 components: - type: Transform - pos: 30.5,0.5 + pos: -27.5,4.5 parent: 2 - - uid: 37080 + - uid: 32139 components: - type: Transform - pos: 29.5,0.5 + pos: -27.5,3.5 parent: 2 - - uid: 37081 + - uid: 32140 components: - type: Transform - pos: 28.5,0.5 + pos: -26.5,3.5 parent: 2 - - uid: 37082 + - uid: 32141 components: - type: Transform - pos: 27.5,0.5 + pos: -26.5,2.5 parent: 2 - - uid: 37083 + - uid: 32153 components: - type: Transform - pos: 26.5,0.5 + pos: -26.5,1.5 parent: 2 - - uid: 37084 + - uid: 32154 components: - type: Transform - pos: 25.5,0.5 + pos: -26.5,0.5 parent: 2 - - uid: 37085 + - uid: 32216 components: - type: Transform - pos: 25.5,1.5 + pos: -27.5,0.5 parent: 2 - - uid: 37089 + - uid: 32219 components: - type: Transform - pos: 25.5,2.5 + pos: -28.5,0.5 parent: 2 - - uid: 37116 + - uid: 32225 components: - type: Transform - pos: -32.5,-83.5 + pos: -29.5,0.5 parent: 2 - - uid: 37147 + - uid: 32232 components: - type: Transform - pos: 54.5,-3.5 + pos: -30.5,0.5 parent: 2 - - uid: 37148 + - uid: 32375 components: - type: Transform - pos: 54.5,-4.5 + pos: -21.5,11.5 parent: 2 - - uid: 37149 + - uid: 32378 components: - type: Transform - pos: 54.5,-5.5 + pos: -21.5,12.5 parent: 2 - - uid: 37150 + - uid: 32387 components: - type: Transform - pos: 73.5,-21.5 + pos: -21.5,13.5 parent: 2 - - uid: 37151 + - uid: 32389 components: - type: Transform - pos: 72.5,-21.5 + pos: -21.5,14.5 parent: 2 - - uid: 37152 + - uid: 32390 components: - type: Transform - pos: 71.5,-21.5 + pos: -21.5,10.5 parent: 2 - - uid: 37153 + - uid: 32391 components: - type: Transform - pos: 70.5,-21.5 + pos: -22.5,10.5 parent: 2 - - uid: 37154 + - uid: 32393 components: - type: Transform - pos: 53.5,-5.5 + pos: -23.5,10.5 parent: 2 - - uid: 37155 + - uid: 32394 components: - type: Transform - pos: 52.5,-5.5 + pos: -21.5,15.5 parent: 2 - - uid: 37156 + - uid: 32395 components: - type: Transform - pos: 51.5,-5.5 + pos: -21.5,16.5 parent: 2 - - uid: 37157 + - uid: 32775 components: - type: Transform - pos: 50.5,-5.5 + pos: -18.5,-13.5 parent: 2 - - uid: 37158 + - uid: 32776 components: - type: Transform - pos: 49.5,-5.5 + pos: -17.5,-13.5 parent: 2 - - uid: 37159 + - uid: 32795 components: - type: Transform - pos: 48.5,-5.5 + pos: -11.5,-12.5 parent: 2 - - uid: 37160 + - uid: 32797 components: - type: Transform - pos: 47.5,-5.5 + pos: -10.5,-12.5 parent: 2 - - uid: 37161 + - uid: 32798 components: - type: Transform - pos: 46.5,-5.5 + pos: -9.5,-12.5 parent: 2 - - uid: 37162 + - uid: 32799 components: - type: Transform - pos: 45.5,-5.5 + pos: -9.5,-13.5 parent: 2 - - uid: 37163 + - uid: 32800 components: - type: Transform - pos: 44.5,-5.5 + pos: -8.5,-13.5 parent: 2 - - uid: 37164 + - uid: 32861 components: - type: Transform - pos: 70.5,-22.5 + pos: -7.5,-13.5 parent: 2 - - uid: 37165 + - uid: 32875 components: - type: Transform - pos: 44.5,-4.5 + pos: -6.5,-13.5 parent: 2 - - uid: 37166 + - uid: 32877 components: - type: Transform - pos: 44.5,-3.5 + pos: -5.5,-13.5 parent: 2 - - uid: 37167 + - uid: 32879 components: - type: Transform - pos: 69.5,-22.5 + pos: -4.5,-13.5 parent: 2 - - uid: 37168 + - uid: 32883 components: - type: Transform - pos: 68.5,-22.5 + pos: -3.5,-13.5 parent: 2 - - uid: 37169 + - uid: 32886 components: - type: Transform - pos: 67.5,-22.5 + pos: -2.5,-13.5 parent: 2 - - uid: 37170 + - uid: 32887 components: - type: Transform - pos: 66.5,-22.5 + pos: -1.5,-13.5 parent: 2 - - uid: 37171 + - uid: 32938 components: - type: Transform - pos: 65.5,-22.5 + pos: -0.5,-13.5 parent: 2 - - uid: 37172 + - uid: 32943 components: - type: Transform - pos: 65.5,-21.5 + pos: -14.5,-9.5 parent: 2 - - uid: 37173 + - uid: 32945 components: - type: Transform - pos: 65.5,-20.5 + pos: -14.5,-10.5 parent: 2 - - uid: 37174 + - uid: 32994 components: - type: Transform - pos: 65.5,-19.5 + pos: -0.5,-12.5 parent: 2 - - uid: 37175 + - uid: 33001 components: - type: Transform - pos: 64.5,-19.5 + pos: -0.5,-11.5 parent: 2 - - uid: 37176 + - uid: 33002 components: - type: Transform - pos: 64.5,-18.5 + pos: -1.5,-11.5 parent: 2 - - uid: 37177 + - uid: 33003 components: - type: Transform - pos: 64.5,-17.5 + pos: -1.5,-10.5 parent: 2 - - uid: 37178 + - uid: 33009 components: - type: Transform - pos: 64.5,-16.5 + pos: -1.5,-9.5 parent: 2 - - uid: 37179 + - uid: 33019 components: - type: Transform - pos: 64.5,-15.5 + pos: -0.5,-9.5 parent: 2 - - uid: 37180 + - uid: 33021 components: - type: Transform - pos: 63.5,-15.5 + pos: 0.5,-9.5 parent: 2 - - uid: 37181 + - uid: 33022 components: - type: Transform - pos: 63.5,-14.5 + pos: 0.5,-10.5 parent: 2 - - uid: 37182 + - uid: 33023 components: - type: Transform - pos: 63.5,-13.5 + pos: 0.5,-11.5 parent: 2 - - uid: 37183 + - uid: 33024 components: - type: Transform - pos: 63.5,-12.5 + pos: 1.5,-10.5 parent: 2 - - uid: 37184 + - uid: 33026 components: - type: Transform - pos: 63.5,-11.5 + pos: 2.5,-10.5 parent: 2 - - uid: 37185 + - uid: 33048 components: - type: Transform - pos: 63.5,-10.5 + pos: 3.5,-10.5 parent: 2 - - uid: 37186 + - uid: 33338 components: - type: Transform - pos: 62.5,-10.5 + pos: 3.5,-9.5 parent: 2 - - uid: 37187 + - uid: 33339 components: - type: Transform - pos: 61.5,-10.5 + pos: 3.5,-8.5 parent: 2 - - uid: 37188 + - uid: 33340 components: - type: Transform - pos: 61.5,-9.5 + pos: -4.5,-8.5 parent: 2 - - uid: 37189 + - uid: 33341 components: - type: Transform - pos: 60.5,-9.5 + pos: -4.5,-9.5 parent: 2 - - uid: 37190 + - uid: 33342 components: - type: Transform - pos: 59.5,-9.5 + pos: -4.5,-10.5 parent: 2 - - uid: 37191 + - uid: 33343 components: - type: Transform - pos: 58.5,-9.5 + pos: -3.5,-10.5 parent: 2 - - uid: 37192 + - uid: 33344 components: - type: Transform - pos: 58.5,-6.5 + pos: -2.5,-10.5 parent: 2 - - uid: 37193 + - uid: 33353 components: - type: Transform - pos: 58.5,-8.5 + pos: -1.5,-7.5 parent: 2 - - uid: 37194 + - uid: 33354 components: - type: Transform - pos: 64.5,4.5 + pos: -1.5,-6.5 parent: 2 - - uid: 37195 + - uid: 33355 components: - type: Transform - pos: 58.5,-7.5 + pos: -2.5,-6.5 parent: 2 - - uid: 37196 + - uid: 33356 components: - type: Transform - pos: 58.5,-5.5 + pos: -0.5,-6.5 parent: 2 - - uid: 37197 + - uid: 33362 components: - type: Transform - pos: 58.5,-4.5 + pos: -2.5,-5.5 parent: 2 - - uid: 37198 + - uid: 33363 components: - type: Transform - pos: 58.5,-3.5 + pos: -0.5,-5.5 parent: 2 - - uid: 37199 + - uid: 33364 components: - type: Transform - pos: 64.5,3.5 + pos: -0.5,-4.5 parent: 2 - - uid: 37200 + - uid: 33365 components: - type: Transform - pos: 64.5,2.5 + pos: -0.5,-3.5 parent: 2 - - uid: 37201 + - uid: 33366 components: - type: Transform - pos: 64.5,1.5 + pos: -0.5,-2.5 parent: 2 - - uid: 37202 + - uid: 33367 components: - type: Transform - pos: 64.5,0.5 + pos: -0.5,-1.5 parent: 2 - - uid: 37203 + - uid: 33368 components: - type: Transform - pos: 65.5,4.5 + pos: -0.5,-0.5 parent: 2 - - uid: 37204 + - uid: 33369 components: - type: Transform - pos: 66.5,4.5 + pos: -0.5,0.5 parent: 2 - - uid: 37205 + - uid: 33374 components: - type: Transform - pos: 66.5,5.5 + pos: 0.5,-3.5 parent: 2 - - uid: 37206 + - uid: 33375 components: - type: Transform - pos: 66.5,6.5 + pos: 1.5,-3.5 parent: 2 - - uid: 37207 + - uid: 33376 components: - type: Transform - pos: 35.5,-10.5 + pos: 2.5,-3.5 parent: 2 - - uid: 37208 + - uid: 33377 components: - type: Transform - pos: 36.5,-10.5 + pos: 3.5,-3.5 parent: 2 - - uid: 37209 + - uid: 33378 components: - type: Transform - pos: 36.5,-9.5 + pos: 4.5,-3.5 parent: 2 - - uid: 37215 + - uid: 33379 components: - type: Transform - pos: 42.5,-10.5 + pos: 4.5,-2.5 parent: 2 - - uid: 37216 + - uid: 33380 components: - type: Transform - pos: 59.5,-2.5 + pos: 4.5,-1.5 parent: 2 - - uid: 37217 + - uid: 33391 components: - type: Transform - pos: 60.5,-2.5 + pos: -7.5,7.5 parent: 2 - - uid: 37218 + - uid: 33392 components: - type: Transform - pos: 61.5,-2.5 + pos: -8.5,7.5 parent: 2 - - uid: 37219 + - uid: 33393 components: - type: Transform - pos: 62.5,-2.5 + pos: -9.5,7.5 parent: 2 - - uid: 37220 + - uid: 33396 components: - type: Transform - pos: 63.5,-2.5 + pos: 0.5,0.5 parent: 2 - - uid: 37221 + - uid: 33397 components: - type: Transform - pos: 64.5,-2.5 + pos: -9.5,6.5 parent: 2 - - uid: 37222 + - uid: 33398 components: - type: Transform - pos: 57.5,-40.5 + pos: -9.5,5.5 parent: 2 - - uid: 37225 + - uid: 33399 components: - type: Transform - pos: 64.5,-1.5 + pos: -9.5,4.5 parent: 2 - - uid: 37226 + - uid: 33400 components: - type: Transform - pos: 64.5,-0.5 + pos: -9.5,3.5 parent: 2 - - uid: 37227 + - uid: 33401 components: - type: Transform - pos: 58.5,-34.5 + pos: -9.5,2.5 parent: 2 - - uid: 37229 + - uid: 33402 components: - type: Transform - pos: 59.5,-36.5 + pos: -9.5,1.5 parent: 2 - - uid: 37248 + - uid: 33403 components: - type: Transform - pos: 37.5,-9.5 + pos: -9.5,0.5 parent: 2 - - uid: 37249 + - uid: 33404 components: - type: Transform - pos: 38.5,-9.5 + pos: -9.5,-0.5 parent: 2 - - uid: 37257 + - uid: 33405 components: - type: Transform - pos: 73.5,-3.5 + pos: -9.5,-1.5 parent: 2 - - uid: 37258 + - uid: 33406 components: - type: Transform - pos: 73.5,-2.5 + pos: -9.5,-2.5 parent: 2 - - uid: 37259 + - uid: 33407 components: - type: Transform - pos: 72.5,-2.5 + pos: -9.5,-3.5 parent: 2 - - uid: 37260 + - uid: 33408 components: - type: Transform - pos: 71.5,-2.5 + pos: -9.5,-4.5 parent: 2 - - uid: 37261 + - uid: 33409 components: - type: Transform - pos: 70.5,-2.5 + pos: -9.5,-5.5 parent: 2 - - uid: 37262 + - uid: 33410 components: - type: Transform - pos: 69.5,-2.5 + pos: -9.5,-6.5 parent: 2 - - uid: 37263 + - uid: 33411 components: - type: Transform - pos: 68.5,-2.5 + pos: -9.5,-7.5 parent: 2 - - uid: 37264 + - uid: 33412 components: - type: Transform - pos: 67.5,-2.5 + pos: -9.5,-8.5 parent: 2 - - uid: 37265 + - uid: 33413 components: - type: Transform - pos: 66.5,-2.5 + pos: -8.5,-8.5 parent: 2 - - uid: 37266 + - uid: 33414 components: - type: Transform - pos: 65.5,-2.5 + pos: -8.5,-9.5 parent: 2 - - uid: 37275 + - uid: 33415 components: - type: Transform - pos: 44.5,-12.5 + pos: -7.5,-9.5 parent: 2 - - uid: 37276 + - uid: 33419 components: - type: Transform - pos: 44.5,-11.5 + pos: -7.5,-10.5 parent: 2 - - uid: 37277 + - uid: 33420 components: - type: Transform - pos: 44.5,-10.5 + pos: -6.5,-10.5 parent: 2 - - uid: 37278 + - uid: 33423 components: - type: Transform - pos: 43.5,-10.5 + pos: -10.5,0.5 parent: 2 - - uid: 37497 + - uid: 33425 components: - type: Transform - pos: 23.5,-43.5 + pos: -5.5,-10.5 parent: 2 - - uid: 37498 + - uid: 33426 components: - type: Transform - pos: 23.5,-42.5 + pos: 4.5,-10.5 parent: 2 - - uid: 37500 + - uid: 33427 components: - type: Transform - pos: 22.5,-43.5 + pos: 5.5,-10.5 parent: 2 - - uid: 37501 + - uid: 33428 components: - type: Transform - pos: 21.5,-43.5 + pos: 6.5,-10.5 parent: 2 - - uid: 37502 + - uid: 33429 components: - type: Transform - pos: 20.5,-43.5 + pos: 6.5,-9.5 parent: 2 - - uid: 37503 + - uid: 33430 components: - type: Transform - pos: 19.5,-43.5 + pos: 7.5,-9.5 parent: 2 - - uid: 37504 + - uid: 33431 components: - type: Transform - pos: 19.5,-42.5 + pos: 7.5,-8.5 parent: 2 - - uid: 37505 + - uid: 33432 components: - type: Transform - pos: 19.5,-41.5 + pos: 8.5,-8.5 parent: 2 - - uid: 37506 + - uid: 33438 components: - type: Transform - pos: 19.5,-40.5 + pos: 8.5,-7.5 parent: 2 - - uid: 37507 + - uid: 33439 components: - type: Transform - pos: 19.5,-39.5 + pos: 8.5,-6.5 parent: 2 - - uid: 37508 + - uid: 33440 components: - type: Transform - pos: 20.5,-39.5 + pos: 8.5,-5.5 parent: 2 - - uid: 37509 + - uid: 33441 components: - type: Transform - pos: 21.5,-39.5 + pos: 8.5,-4.5 parent: 2 - - uid: 37510 + - uid: 33442 components: - type: Transform - pos: 22.5,-39.5 + pos: 8.5,-3.5 parent: 2 - - uid: 37511 + - uid: 33443 components: - type: Transform - pos: 22.5,-38.5 + pos: 8.5,-2.5 parent: 2 - - uid: 37512 + - uid: 33444 components: - type: Transform - pos: 22.5,-37.5 + pos: 8.5,-1.5 parent: 2 - - uid: 37513 + - uid: 33445 components: - type: Transform - pos: 22.5,-36.5 + pos: 8.5,-0.5 parent: 2 - - uid: 37514 + - uid: 33446 components: - type: Transform - pos: 22.5,-35.5 + pos: 8.5,0.5 parent: 2 - - uid: 37515 + - uid: 33447 components: - type: Transform - pos: 22.5,-34.5 + pos: 8.5,1.5 parent: 2 - - uid: 37521 + - uid: 33448 components: - type: Transform - pos: 23.5,-34.5 + pos: 8.5,2.5 parent: 2 - - uid: 37522 + - uid: 33449 components: - type: Transform - pos: 24.5,-34.5 + pos: 8.5,3.5 parent: 2 - - uid: 37523 + - uid: 33450 components: - type: Transform - pos: 24.5,-35.5 + pos: 8.5,4.5 parent: 2 - - uid: 37524 + - uid: 33451 components: - type: Transform - pos: 24.5,-36.5 + pos: 8.5,5.5 parent: 2 - - uid: 37525 + - uid: 33452 components: - type: Transform - pos: 24.5,-37.5 + pos: 8.5,6.5 parent: 2 - - uid: 37526 + - uid: 33453 components: - type: Transform - pos: 25.5,-37.5 + pos: 8.5,7.5 parent: 2 - - uid: 37527 + - uid: 33465 components: - type: Transform - pos: 26.5,-37.5 + pos: 7.5,7.5 parent: 2 - - uid: 37528 + - uid: 33466 components: - type: Transform - pos: 27.5,-37.5 + pos: 6.5,7.5 parent: 2 - - uid: 37529 + - uid: 33472 components: - type: Transform - pos: 28.5,-37.5 + pos: 2.5,2.5 parent: 2 - - uid: 37530 + - uid: 33473 components: - type: Transform - pos: 29.5,-37.5 + pos: 2.5,1.5 parent: 2 - - uid: 37531 + - uid: 33475 components: - type: Transform - pos: 30.5,-37.5 + pos: 1.5,0.5 parent: 2 - - uid: 37532 + - uid: 33476 components: - type: Transform - pos: 31.5,-37.5 + pos: 2.5,0.5 parent: 2 - - uid: 37533 + - uid: 33495 components: - type: Transform - pos: 32.5,-37.5 + pos: -11.5,0.5 parent: 2 - - uid: 37534 + - uid: 33496 components: - type: Transform - pos: 33.5,-37.5 + pos: -12.5,0.5 parent: 2 - - uid: 37535 + - uid: 33497 components: - type: Transform - pos: 33.5,-36.5 + pos: -13.5,0.5 parent: 2 - - uid: 37536 + - uid: 33498 components: - type: Transform - pos: 29.5,-39.5 + pos: -14.5,0.5 parent: 2 - - uid: 37537 + - uid: 33499 components: - type: Transform - pos: 28.5,-39.5 + pos: -15.5,0.5 parent: 2 - - uid: 37538 + - uid: 33500 components: - type: Transform - pos: 28.5,-38.5 + pos: -12.5,1.5 parent: 2 - - uid: 37541 + - uid: 33501 components: - type: Transform - pos: 21.5,-28.5 + pos: -12.5,2.5 parent: 2 - - uid: 37542 + - uid: 33502 components: - type: Transform - pos: 21.5,-29.5 + pos: -15.5,1.5 parent: 2 - - uid: 37543 + - uid: 33503 components: - type: Transform - pos: 22.5,-29.5 + pos: -15.5,2.5 parent: 2 - - uid: 37544 + - uid: 33504 components: - type: Transform - pos: 23.5,-29.5 + pos: -15.5,3.5 parent: 2 - - uid: 37545 + - uid: 33740 components: - type: Transform - pos: 24.5,-29.5 + pos: -15.5,4.5 parent: 2 - - uid: 37546 + - uid: 33741 components: - type: Transform - pos: 24.5,-30.5 + pos: -15.5,5.5 parent: 2 - - uid: 37547 + - uid: 33742 components: - type: Transform - pos: 24.5,-31.5 + pos: -15.5,6.5 parent: 2 - - uid: 37548 + - uid: 33743 components: - type: Transform - pos: 24.5,-32.5 + pos: -15.5,7.5 parent: 2 - - uid: 37549 + - uid: 33744 components: - type: Transform - pos: 24.5,-33.5 + pos: -15.5,8.5 parent: 2 - - uid: 37550 + - uid: 33745 components: - type: Transform - pos: 3.5,-26.5 + pos: -15.5,9.5 parent: 2 - - uid: 37551 + - uid: 33746 components: - type: Transform - pos: 3.5,-27.5 + pos: -15.5,10.5 parent: 2 - - uid: 37552 + - uid: 33747 components: - type: Transform - pos: 4.5,-27.5 + pos: 14.5,-11.5 parent: 2 - - uid: 37553 + - uid: 33748 components: - type: Transform - pos: 5.5,-27.5 + pos: 13.5,-11.5 parent: 2 - - uid: 37554 + - uid: 33749 components: - type: Transform - pos: 5.5,-28.5 + pos: 13.5,-10.5 parent: 2 - - uid: 37555 + - uid: 33750 components: - type: Transform - pos: 5.5,-29.5 + pos: 12.5,-10.5 parent: 2 - - uid: 37556 + - uid: 33751 components: - type: Transform - pos: 5.5,-30.5 + pos: 11.5,-10.5 parent: 2 - - uid: 37557 + - uid: 33752 components: - type: Transform - pos: 6.5,-30.5 + pos: 11.5,-9.5 parent: 2 - - uid: 37558 + - uid: 33753 components: - type: Transform - pos: 7.5,-30.5 + pos: 11.5,-8.5 parent: 2 - - uid: 37559 + - uid: 33754 components: - type: Transform - pos: 8.5,-30.5 + pos: 12.5,-8.5 parent: 2 - - uid: 37560 + - uid: 33755 components: - type: Transform - pos: 8.5,-29.5 + pos: 18.5,-8.5 parent: 2 - - uid: 37561 + - uid: 33756 components: - type: Transform - pos: 9.5,-29.5 + pos: 13.5,-8.5 parent: 2 - - uid: 37562 + - uid: 33758 components: - type: Transform - pos: 10.5,-29.5 + pos: 19.5,-8.5 parent: 2 - - uid: 37563 + - uid: 33759 components: - type: Transform - pos: 11.5,-29.5 + pos: 16.5,-7.5 parent: 2 - - uid: 37564 + - uid: 33760 components: - type: Transform - pos: 12.5,-29.5 + pos: 16.5,-8.5 parent: 2 - - uid: 37565 + - uid: 33761 components: - type: Transform - pos: 13.5,-29.5 + pos: 15.5,-8.5 parent: 2 - - uid: 37566 + - uid: 33762 components: - type: Transform - pos: 14.5,-29.5 + pos: 14.5,-8.5 parent: 2 - - uid: 37567 + - uid: 33767 components: - type: Transform - pos: 15.5,-29.5 + pos: 17.5,-8.5 parent: 2 - - uid: 37568 + - uid: 33768 components: - type: Transform - pos: 16.5,-29.5 + pos: 20.5,-8.5 parent: 2 - - uid: 37569 + - uid: 33798 components: - type: Transform - pos: 17.5,-29.5 + pos: 25.5,-4.5 parent: 2 - - uid: 37570 + - uid: 33799 components: - type: Transform - pos: 18.5,-29.5 + pos: 25.5,-5.5 parent: 2 - - uid: 37571 + - uid: 33800 components: - type: Transform - pos: 19.5,-29.5 + pos: 24.5,-5.5 parent: 2 - - uid: 37572 + - uid: 33801 components: - type: Transform - pos: 20.5,-29.5 + pos: -2.5,-14.5 parent: 2 - - uid: 37591 + - uid: 33802 components: - type: Transform - pos: 23.5,-48.5 + pos: 24.5,-6.5 parent: 2 - - uid: 37592 + - uid: 33803 components: - type: Transform - pos: 23.5,-49.5 + pos: 24.5,-7.5 parent: 2 - - uid: 37593 + - uid: 33804 components: - type: Transform - pos: 22.5,-49.5 + pos: 24.5,-8.5 parent: 2 - - uid: 37594 + - uid: 33821 components: - type: Transform - pos: 21.5,-49.5 + pos: 20.5,-9.5 parent: 2 - - uid: 37595 + - uid: 33822 components: - type: Transform - pos: 20.5,-49.5 + pos: 20.5,-10.5 parent: 2 - - uid: 37596 + - uid: 33823 components: - type: Transform - pos: 19.5,-49.5 + pos: 20.5,-11.5 parent: 2 - - uid: 37597 + - uid: 33824 components: - type: Transform - pos: 19.5,-48.5 + pos: 20.5,-12.5 parent: 2 - - uid: 37598 + - uid: 33825 components: - type: Transform - pos: 19.5,-47.5 + pos: 20.5,-13.5 parent: 2 - - uid: 37599 + - uid: 33826 components: - type: Transform - pos: 19.5,-46.5 + pos: 20.5,-14.5 parent: 2 - - uid: 37600 + - uid: 33830 components: - type: Transform - pos: 19.5,-45.5 + pos: 23.5,-8.5 parent: 2 - - uid: 37601 + - uid: 33831 components: - type: Transform - pos: 19.5,-44.5 + pos: 23.5,-9.5 parent: 2 - - uid: 41015 + - uid: 33832 components: - type: Transform - pos: 29.5,-65.5 + pos: 17.5,-20.5 parent: 2 - - uid: 41016 + - uid: 33833 components: - type: Transform - pos: 28.5,-65.5 + pos: 17.5,-19.5 parent: 2 - - uid: 41018 + - uid: 33834 components: - type: Transform - pos: 27.5,-65.5 + pos: 17.5,-18.5 parent: 2 - - uid: 41020 + - uid: 33835 components: - type: Transform - pos: 26.5,-65.5 + pos: 17.5,-17.5 parent: 2 - - uid: 41023 + - uid: 33836 components: - type: Transform - pos: -48.5,-64.5 + pos: 17.5,-16.5 parent: 2 - - uid: 41024 + - uid: 33837 components: - type: Transform - pos: -47.5,-64.5 + pos: 17.5,-15.5 parent: 2 - - uid: 41027 + - uid: 33838 components: - type: Transform - pos: -46.5,-64.5 + pos: 17.5,-14.5 parent: 2 - - uid: 41029 + - uid: 33839 components: - type: Transform - pos: -45.5,-64.5 + pos: 18.5,-14.5 parent: 2 - - uid: 41039 + - uid: 33840 components: - type: Transform - pos: -44.5,-64.5 + pos: 19.5,-14.5 parent: 2 - - uid: 41040 + - uid: 33841 components: - type: Transform - pos: -44.5,-65.5 + pos: 18.5,-20.5 parent: 2 - - uid: 41041 + - uid: 33842 components: - type: Transform - pos: -43.5,-65.5 + pos: 19.5,-20.5 parent: 2 - - uid: 41042 + - uid: 33843 components: - type: Transform - pos: -42.5,-65.5 + pos: 19.5,-19.5 parent: 2 - - uid: 41045 + - uid: 33844 components: - type: Transform - pos: -41.5,-65.5 + pos: 19.5,-18.5 parent: 2 - - uid: 41046 + - uid: 33845 components: - type: Transform - pos: -40.5,-65.5 + pos: 21.5,-14.5 parent: 2 - - uid: 41050 + - uid: 33846 components: - type: Transform - pos: -39.5,-65.5 + pos: 22.5,-14.5 parent: 2 - - uid: 41051 + - uid: 33847 components: - type: Transform - pos: -38.5,-65.5 + pos: 23.5,-14.5 parent: 2 - - uid: 41055 + - uid: 33848 components: - type: Transform - pos: -37.5,-65.5 + pos: 23.5,-15.5 parent: 2 - - uid: 41057 + - uid: 33849 components: - type: Transform - pos: -34.5,-70.5 + pos: 23.5,-16.5 parent: 2 - - uid: 41067 + - uid: 33850 components: - type: Transform - pos: -35.5,-70.5 + pos: 23.5,-17.5 parent: 2 - - uid: 41075 + - uid: 33851 components: - type: Transform - pos: -36.5,-70.5 + pos: 23.5,-18.5 parent: 2 - - uid: 41076 + - uid: 33852 components: - type: Transform - pos: -37.5,-70.5 + pos: 23.5,-19.5 parent: 2 - - uid: 41077 + - uid: 33853 components: - type: Transform - pos: -38.5,-70.5 + pos: 23.5,-20.5 parent: 2 - - uid: 41082 + - uid: 33854 components: - type: Transform - pos: -39.5,-70.5 + pos: 24.5,-20.5 parent: 2 - - uid: 41083 + - uid: 33855 components: - type: Transform - pos: -40.5,-70.5 + pos: 25.5,-20.5 parent: 2 - - uid: 41084 + - uid: 33856 components: - type: Transform - pos: -41.5,-70.5 + pos: 26.5,-20.5 parent: 2 - - uid: 41085 + - uid: 33858 components: - type: Transform - pos: -42.5,-70.5 + pos: 20.5,-20.5 parent: 2 - - uid: 41086 + - uid: 34468 components: - type: Transform - pos: -43.5,-70.5 + pos: 24.5,-14.5 parent: 2 - - uid: 41087 + - uid: 34469 components: - type: Transform - pos: -44.5,-70.5 + pos: 25.5,-14.5 parent: 2 - - uid: 41116 + - uid: 34470 components: - type: Transform - pos: -45.5,-70.5 + pos: 26.5,-14.5 parent: 2 - - uid: 41117 + - uid: 34476 components: - type: Transform - pos: -46.5,-70.5 + pos: 27.5,-14.5 parent: 2 - - uid: 41118 + - uid: 34497 components: - type: Transform - pos: -47.5,-70.5 + pos: 28.5,-14.5 parent: 2 - - uid: 41119 + - uid: 34562 components: - type: Transform - pos: -48.5,-70.5 + pos: 28.5,-13.5 parent: 2 - - uid: 41120 + - uid: 34563 components: - type: Transform - pos: -48.5,-69.5 + pos: 28.5,-12.5 parent: 2 - - uid: 41152 + - uid: 34569 components: - type: Transform - pos: -48.5,-68.5 + pos: 23.5,-10.5 parent: 2 - - uid: 41271 + - uid: 34571 components: - type: Transform - pos: -31.5,-39.5 + pos: 23.5,-11.5 parent: 2 - - uid: 41322 + - uid: 34578 components: - type: Transform - pos: -31.5,-40.5 + pos: 23.5,-24.5 parent: 2 - - uid: 41323 + - uid: 34579 components: - type: Transform - pos: -32.5,-40.5 + pos: 24.5,-24.5 parent: 2 - - uid: 41325 + - uid: 34598 components: - type: Transform - pos: -33.5,-40.5 + pos: 25.5,-24.5 parent: 2 - - uid: 41326 + - uid: 34917 components: - type: Transform - pos: -34.5,-40.5 + pos: 26.5,-24.5 parent: 2 - - uid: 41450 + - uid: 34918 components: - type: Transform - pos: -35.5,-40.5 + pos: 27.5,-24.5 parent: 2 - - uid: 41451 + - uid: 34919 components: - type: Transform - pos: -35.5,-41.5 + pos: 27.5,-23.5 parent: 2 - - uid: 41521 + - uid: 34920 components: - type: Transform - pos: -35.5,-42.5 + pos: 27.5,-22.5 parent: 2 - - uid: 41563 + - uid: 34921 components: - type: Transform - pos: -35.5,-43.5 + pos: 27.5,-21.5 parent: 2 - - uid: 41620 + - uid: 34922 components: - type: Transform - pos: -35.5,-44.5 + pos: 27.5,-20.5 parent: 2 - - uid: 41770 + - uid: 34923 components: - type: Transform - pos: -35.5,-45.5 + pos: 23.5,-12.5 parent: 2 - - uid: 41771 + - uid: 34924 components: - type: Transform - pos: -35.5,-46.5 + pos: 23.5,-13.5 parent: 2 - - uid: 41778 + - uid: 34928 components: - type: Transform - pos: -35.5,-47.5 + pos: 28.5,-20.5 parent: 2 - - uid: 41808 + - uid: 34929 components: - type: Transform - pos: -35.5,-48.5 + pos: 29.5,-20.5 parent: 2 - - uid: 41809 + - uid: 34930 components: - type: Transform - pos: -35.5,-49.5 + pos: 30.5,-20.5 parent: 2 - - uid: 41810 + - uid: 34931 components: - type: Transform - pos: -35.5,-50.5 + pos: 31.5,-20.5 parent: 2 - - uid: 41813 + - uid: 34932 components: - type: Transform - pos: -35.5,-51.5 + pos: 32.5,-20.5 parent: 2 - - uid: 41820 + - uid: 34933 components: - type: Transform - pos: -37.5,-51.5 + pos: 32.5,-19.5 parent: 2 - - uid: 41821 + - uid: 34934 components: - type: Transform - pos: -37.5,-52.5 + pos: 32.5,-18.5 parent: 2 - - uid: 41822 + - uid: 34938 components: - type: Transform - pos: -36.5,-52.5 + pos: 32.5,-17.5 parent: 2 - - uid: 41823 + - uid: 34939 components: - type: Transform - pos: -35.5,-52.5 + pos: 33.5,-20.5 parent: 2 - - uid: 41824 + - uid: 34940 components: - type: Transform - pos: -31.5,-53.5 + pos: 34.5,-20.5 parent: 2 - - uid: 41825 + - uid: 34941 components: - type: Transform - pos: -31.5,-54.5 + pos: 35.5,-20.5 parent: 2 - - uid: 41826 + - uid: 34942 components: - type: Transform - pos: -32.5,-54.5 + pos: 36.5,-20.5 parent: 2 - - uid: 41829 + - uid: 34944 components: - type: Transform - pos: -33.5,-54.5 + pos: 32.5,-21.5 parent: 2 - - uid: 41830 + - uid: 34945 components: - type: Transform - pos: -34.5,-54.5 + pos: 32.5,-22.5 parent: 2 - - uid: 41831 + - uid: 34946 components: - type: Transform - pos: -35.5,-54.5 + pos: 32.5,-23.5 parent: 2 - - uid: 41834 + - uid: 34947 components: - type: Transform - pos: -35.5,-53.5 + pos: 17.5,-13.5 parent: 2 - - uid: 41835 + - uid: 34948 components: - type: Transform - pos: -35.5,-55.5 + pos: 17.5,-12.5 parent: 2 - - uid: 41836 + - uid: 34949 components: - type: Transform - pos: -35.5,-56.5 + pos: 18.5,-12.5 parent: 2 - - uid: 41837 + - uid: 34957 components: - type: Transform - pos: -35.5,-57.5 + pos: 40.5,-19.5 parent: 2 - - uid: 41838 + - uid: 34958 components: - type: Transform - pos: -35.5,-58.5 + pos: 40.5,-18.5 parent: 2 - - uid: 41839 + - uid: 34964 components: - type: Transform - pos: -35.5,-59.5 + pos: 40.5,-17.5 parent: 2 - - uid: 41840 + - uid: 34965 components: - type: Transform - pos: -35.5,-60.5 + pos: 40.5,-16.5 parent: 2 - - uid: 41841 + - uid: 34966 components: - type: Transform - pos: -33.5,-63.5 + pos: 40.5,-15.5 parent: 2 - - uid: 41842 + - uid: 34967 components: - type: Transform - pos: -33.5,-62.5 + pos: 40.5,-14.5 parent: 2 - - uid: 41843 + - uid: 34968 components: - type: Transform - pos: -32.5,-62.5 + pos: 40.5,-13.5 parent: 2 - - uid: 41844 + - uid: 34969 components: - type: Transform - pos: -32.5,-61.5 + pos: 40.5,-12.5 parent: 2 - - uid: 41845 + - uid: 34971 components: - type: Transform - pos: -32.5,-60.5 + pos: 42.5,-19.5 parent: 2 - - uid: 41846 + - uid: 34972 components: - type: Transform - pos: -33.5,-60.5 + pos: 42.5,-18.5 parent: 2 - - uid: 41847 + - uid: 34973 components: - type: Transform - pos: -34.5,-60.5 + pos: 42.5,-17.5 parent: 2 - - uid: 41848 + - uid: 34974 components: - type: Transform - pos: -35.5,-61.5 + pos: 52.5,-43.5 parent: 2 - - uid: 41854 + - uid: 34975 components: - type: Transform - pos: -35.5,-62.5 + pos: 51.5,-43.5 parent: 2 - - uid: 41865 + - uid: 34976 components: - type: Transform - pos: -35.5,-63.5 + pos: 50.5,-43.5 parent: 2 - - uid: 41866 + - uid: 34977 components: - type: Transform - pos: -35.5,-64.5 + pos: 49.5,-43.5 parent: 2 - - uid: 41867 + - uid: 34978 components: - type: Transform - pos: -35.5,-65.5 + pos: 49.5,-44.5 parent: 2 - - uid: 41868 + - uid: 34979 components: - type: Transform - pos: -36.5,-65.5 + pos: 49.5,-45.5 parent: 2 - - uid: 41877 + - uid: 34980 components: - type: Transform - pos: -22.5,-63.5 + pos: 49.5,-46.5 parent: 2 - - uid: 41879 + - uid: 34981 components: - type: Transform - pos: -21.5,-63.5 + pos: 49.5,-47.5 parent: 2 - - uid: 41888 + - uid: 34982 components: - type: Transform - pos: -21.5,-64.5 + pos: 51.5,-21.5 parent: 2 - - uid: 41889 + - uid: 34983 components: - type: Transform - pos: -21.5,-65.5 + pos: 51.5,-20.5 parent: 2 - - uid: 41890 + - uid: 34984 components: - type: Transform - pos: -21.5,-66.5 + pos: 51.5,-19.5 parent: 2 - - uid: 41891 + - uid: 34985 components: - type: Transform - pos: -21.5,-67.5 + pos: 52.5,-21.5 parent: 2 - - uid: 41892 + - uid: 34986 components: - type: Transform - pos: -22.5,-67.5 + pos: 53.5,-21.5 parent: 2 - - uid: 41893 + - uid: 34987 components: - type: Transform - pos: -23.5,-67.5 + pos: 54.5,-21.5 parent: 2 - - uid: 41894 + - uid: 34988 components: - type: Transform - pos: -24.5,-67.5 + pos: 55.5,-21.5 parent: 2 - - uid: 41895 + - uid: 34989 components: - type: Transform - pos: -25.5,-67.5 + pos: 56.5,-21.5 parent: 2 - - uid: 41896 + - uid: 34990 components: - type: Transform - pos: -26.5,-67.5 + pos: 56.5,-22.5 parent: 2 - - uid: 41897 + - uid: 34991 components: - type: Transform - pos: -27.5,-67.5 + pos: 56.5,-23.5 parent: 2 - - uid: 41898 + - uid: 34992 components: - type: Transform - pos: -28.5,-67.5 + pos: 56.5,-24.5 parent: 2 - - uid: 41899 + - uid: 34993 components: - type: Transform - pos: -29.5,-67.5 + pos: 56.5,-27.5 parent: 2 - - uid: 41900 + - uid: 34994 components: - type: Transform - pos: -30.5,-67.5 + pos: 56.5,-26.5 parent: 2 - - uid: 41901 + - uid: 34995 components: - type: Transform - pos: -31.5,-67.5 + pos: 56.5,-25.5 parent: 2 - - uid: 41902 + - uid: 35027 components: - type: Transform - pos: -32.5,-67.5 + pos: 69.5,-35.5 parent: 2 - - uid: 41903 + - uid: 35028 components: - type: Transform - pos: -33.5,-67.5 + pos: 68.5,-35.5 parent: 2 - - uid: 41904 + - uid: 35062 components: - type: Transform - pos: -34.5,-67.5 + pos: 67.5,-35.5 parent: 2 - - uid: 41905 + - uid: 35069 components: - type: Transform - pos: -35.5,-67.5 + pos: 66.5,-35.5 parent: 2 - - uid: 41906 + - uid: 35070 components: - type: Transform - pos: -35.5,-66.5 + pos: 65.5,-35.5 parent: 2 - - uid: 41912 + - uid: 35083 components: - type: Transform - pos: -5.5,-73.5 + pos: 64.5,-35.5 parent: 2 - - uid: 41913 + - uid: 35084 components: - type: Transform - pos: -6.5,-73.5 + pos: 64.5,-34.5 parent: 2 - - uid: 41915 + - uid: 35085 components: - type: Transform - pos: -6.5,-72.5 + pos: 63.5,-34.5 parent: 2 - - uid: 41916 + - uid: 35086 components: - type: Transform - pos: -6.5,-71.5 + pos: 62.5,-34.5 parent: 2 - - uid: 41917 + - uid: 35087 components: - type: Transform - pos: -6.5,-70.5 + pos: 61.5,-34.5 parent: 2 - - uid: 41918 + - uid: 35447 components: - type: Transform - pos: -6.5,-69.5 + pos: 61.5,-43.5 parent: 2 - - uid: 41919 + - uid: 35452 components: - type: Transform - pos: -5.5,-69.5 + pos: 61.5,-44.5 parent: 2 - - uid: 41920 + - uid: 35456 components: - type: Transform - pos: -4.5,-69.5 + pos: 21.5,-21.5 parent: 2 - - uid: 41923 + - uid: 35457 components: - type: Transform - pos: -3.5,-69.5 + pos: 21.5,-22.5 parent: 2 - - uid: 41928 + - uid: 35485 components: - type: Transform - pos: -3.5,-70.5 + pos: 56.5,-37.5 parent: 2 - - uid: 41929 + - uid: 35486 components: - type: Transform - pos: -3.5,-71.5 + pos: 56.5,-36.5 parent: 2 - - uid: 41930 + - uid: 35487 components: - type: Transform - pos: -4.5,-71.5 + pos: 56.5,-35.5 parent: 2 - - uid: 41934 + - uid: 35500 components: - type: Transform - pos: -7.5,-69.5 + pos: 62.5,-44.5 parent: 2 - - uid: 41935 + - uid: 35501 components: - type: Transform - pos: -8.5,-69.5 + pos: 63.5,-44.5 parent: 2 - - uid: 41936 + - uid: 35502 components: - type: Transform - pos: -9.5,-69.5 + pos: 64.5,-44.5 parent: 2 - - uid: 41937 + - uid: 35503 components: - type: Transform - pos: -10.5,-69.5 + pos: 65.5,-44.5 parent: 2 - - uid: 41938 + - uid: 35504 components: - type: Transform - pos: -11.5,-69.5 + pos: 66.5,-44.5 parent: 2 - - uid: 41940 + - uid: 35507 components: - type: Transform - pos: -11.5,-68.5 + pos: 67.5,-44.5 parent: 2 - - uid: 41941 + - uid: 35508 components: - type: Transform - pos: -12.5,-68.5 + pos: 68.5,-44.5 parent: 2 - - uid: 41983 + - uid: 35509 components: - type: Transform - pos: -32.5,-70.5 + pos: 69.5,-44.5 parent: 2 - - uid: 41994 + - uid: 35512 components: - type: Transform - pos: -31.5,-70.5 + pos: 70.5,-44.5 parent: 2 - - uid: 41995 + - uid: 35513 components: - type: Transform - pos: -30.5,-70.5 + pos: 71.5,-44.5 parent: 2 - - uid: 41996 + - uid: 35516 components: - type: Transform - pos: -30.5,-71.5 + pos: 72.5,-44.5 parent: 2 - - uid: 41997 + - uid: 35517 components: - type: Transform - pos: -30.5,-72.5 + pos: 73.5,-44.5 parent: 2 - - uid: 41998 + - uid: 35518 components: - type: Transform - pos: -29.5,-72.5 + pos: 74.5,-44.5 parent: 2 - - uid: 42010 + - uid: 35520 components: - type: Transform - pos: -28.5,-72.5 + pos: 75.5,-44.5 parent: 2 - - uid: 42012 + - uid: 35521 components: - type: Transform - pos: -27.5,-72.5 + pos: 76.5,-44.5 parent: 2 - - uid: 42023 + - uid: 35522 components: - type: Transform - pos: -26.5,-72.5 + pos: 77.5,-44.5 parent: 2 - - uid: 42025 + - uid: 35523 components: - type: Transform - pos: -25.5,-72.5 + pos: 78.5,-44.5 parent: 2 - - uid: 42033 + - uid: 35524 components: - type: Transform - pos: -24.5,-72.5 + pos: 78.5,-43.5 parent: 2 - - uid: 42035 + - uid: 35525 components: - type: Transform - pos: -23.5,-72.5 + pos: 78.5,-42.5 parent: 2 - - uid: 42036 + - uid: 36161 components: - type: Transform - pos: -23.5,-71.5 + pos: 57.5,-39.5 parent: 2 - - uid: 42040 + - uid: 36638 components: - type: Transform - pos: -23.5,-70.5 + pos: 54.5,-43.5 parent: 2 - - uid: 42041 + - uid: 36639 components: - type: Transform - pos: -22.5,-70.5 + pos: -21.5,-45.5 parent: 2 - - uid: 42053 + - uid: 36640 components: - type: Transform - pos: -21.5,-70.5 + pos: 55.5,-43.5 parent: 2 - - uid: 42058 + - uid: 36641 components: - type: Transform - pos: -20.5,-70.5 + pos: 56.5,-43.5 parent: 2 - - uid: 42067 + - uid: 36642 components: - type: Transform - pos: -19.5,-70.5 + pos: 57.5,-43.5 parent: 2 - - uid: 42106 + - uid: 36643 components: - type: Transform - pos: -18.5,-70.5 + pos: 58.5,-43.5 parent: 2 - - uid: 42114 + - uid: 36644 components: - type: Transform - pos: -17.5,-70.5 + pos: 59.5,-43.5 parent: 2 - - uid: 42122 + - uid: 36645 components: - type: Transform - pos: -17.5,-69.5 + pos: 60.5,-43.5 parent: 2 - - uid: 42124 + - uid: 36646 components: - type: Transform - pos: -17.5,-68.5 + pos: 49.5,-42.5 parent: 2 - - uid: 42139 + - uid: 36647 components: - type: Transform - pos: -17.5,-67.5 + pos: 49.5,-41.5 parent: 2 - - uid: 42140 + - uid: 36648 components: - type: Transform - pos: -16.5,-67.5 + pos: 44.5,7.5 parent: 2 - - uid: 42141 + - uid: 36649 components: - type: Transform - pos: -15.5,-67.5 + pos: 45.5,7.5 parent: 2 - - uid: 42142 + - uid: 36650 components: - type: Transform - pos: -14.5,-67.5 + pos: 46.5,7.5 parent: 2 - - uid: 42143 + - uid: 36651 components: - type: Transform - pos: -14.5,-66.5 + pos: 46.5,8.5 parent: 2 - - uid: 42144 + - uid: 36657 components: - type: Transform - pos: -13.5,-66.5 + pos: 45.5,6.5 parent: 2 - - uid: 42145 + - uid: 36658 components: - type: Transform - pos: -12.5,-66.5 + pos: 45.5,5.5 parent: 2 - - uid: 42146 + - uid: 36659 components: - type: Transform - pos: -11.5,-66.5 + pos: 45.5,4.5 parent: 2 - - uid: 42147 + - uid: 36665 components: - type: Transform - pos: -11.5,-67.5 + pos: 44.5,5.5 parent: 2 - - uid: 42148 + - uid: 36666 components: - type: Transform - pos: -32.5,-84.5 + pos: 43.5,5.5 parent: 2 - - uid: 42150 + - uid: 36667 components: - type: Transform - pos: -32.5,-85.5 + pos: 42.5,5.5 parent: 2 - - uid: 42154 + - uid: 36676 components: - type: Transform - pos: -31.5,-85.5 + pos: 42.5,4.5 parent: 2 - - uid: 42156 + - uid: 36677 components: - type: Transform - pos: -30.5,-85.5 + pos: 42.5,3.5 parent: 2 - - uid: 42157 + - uid: 36678 components: - type: Transform - pos: -29.5,-85.5 + pos: 42.5,2.5 parent: 2 - - uid: 42158 + - uid: 36679 components: - type: Transform - pos: -28.5,-85.5 + pos: 42.5,1.5 parent: 2 - - uid: 42159 + - uid: 36680 components: - type: Transform - pos: -27.5,-85.5 + pos: 42.5,0.5 parent: 2 - - uid: 42160 + - uid: 36691 components: - type: Transform - pos: -26.5,-85.5 + pos: 46.5,4.5 parent: 2 - - uid: 42161 + - uid: 36692 components: - type: Transform - pos: -25.5,-85.5 + pos: 47.5,4.5 parent: 2 - - uid: 42162 + - uid: 36693 components: - type: Transform - pos: -24.5,-85.5 + pos: 48.5,4.5 parent: 2 - - uid: 42163 + - uid: 36694 components: - type: Transform - pos: -23.5,-85.5 + pos: 49.5,4.5 parent: 2 - - uid: 42165 + - uid: 36695 components: - type: Transform - pos: -23.5,-84.5 + pos: 50.5,4.5 parent: 2 - - uid: 42166 + - uid: 36696 components: - type: Transform - pos: -22.5,-84.5 + pos: 51.5,4.5 parent: 2 - - uid: 42167 + - uid: 36697 components: - type: Transform - pos: -21.5,-84.5 + pos: 52.5,4.5 parent: 2 - - uid: 42168 + - uid: 36698 components: - type: Transform - pos: -20.5,-84.5 + pos: 53.5,4.5 parent: 2 - - uid: 42169 + - uid: 36699 components: - type: Transform - pos: -19.5,-84.5 + pos: 54.5,4.5 parent: 2 - - uid: 42170 + - uid: 36705 components: - type: Transform - pos: -19.5,-83.5 + pos: 54.5,3.5 parent: 2 - - uid: 42171 + - uid: 36710 components: - type: Transform - pos: -19.5,-82.5 + pos: 55.5,3.5 parent: 2 - - uid: 42172 + - uid: 36711 components: - type: Transform - pos: -19.5,-81.5 + pos: 54.5,2.5 parent: 2 - - uid: 42173 + - uid: 36712 components: - type: Transform - pos: -19.5,-80.5 + pos: 61.5,8.5 parent: 2 - - uid: 42174 + - uid: 36713 components: - type: Transform - pos: -19.5,-79.5 + pos: 60.5,8.5 parent: 2 - - uid: 42175 + - uid: 36714 components: - type: Transform - pos: -19.5,-78.5 + pos: 59.5,8.5 parent: 2 - - uid: 42176 + - uid: 36715 components: - type: Transform - pos: -19.5,-77.5 + pos: 58.5,8.5 parent: 2 - - uid: 42177 + - uid: 36716 components: - type: Transform - pos: -19.5,-76.5 + pos: 58.5,7.5 parent: 2 - - uid: 42178 + - uid: 36717 components: - type: Transform - pos: -19.5,-75.5 + pos: 58.5,6.5 parent: 2 - - uid: 42179 + - uid: 36724 components: - type: Transform - pos: -19.5,-74.5 + pos: 58.5,5.5 parent: 2 - - uid: 42180 + - uid: 36743 components: - type: Transform - pos: -19.5,-73.5 + pos: 58.5,4.5 parent: 2 - - uid: 42181 + - uid: 36772 components: - type: Transform - pos: -19.5,-72.5 + pos: 58.5,3.5 parent: 2 - - uid: 42182 + - uid: 36781 components: - type: Transform - pos: -20.5,-72.5 + pos: 58.5,2.5 parent: 2 - - uid: 42183 + - uid: 36802 components: - type: Transform - pos: -21.5,-72.5 + pos: 58.5,1.5 parent: 2 - - uid: 42184 + - uid: 36805 components: - type: Transform - pos: -22.5,-72.5 + pos: 58.5,0.5 parent: 2 - - uid: 42192 + - uid: 36806 components: - type: Transform - pos: -2.5,-70.5 + pos: 58.5,-0.5 parent: 2 - - uid: 42193 + - uid: 36807 components: - type: Transform - pos: -1.5,-70.5 + pos: 58.5,-1.5 parent: 2 - - uid: 42194 + - uid: 36808 components: - type: Transform - pos: -0.5,-70.5 + pos: 58.5,-2.5 parent: 2 - - uid: 42195 + - uid: 36908 components: - type: Transform - pos: 0.5,-70.5 + pos: 57.5,-2.5 parent: 2 - - uid: 42196 + - uid: 36909 components: - type: Transform - pos: 1.5,-70.5 + pos: 56.5,-2.5 parent: 2 - - uid: 42197 + - uid: 36910 components: - type: Transform - pos: 2.5,-70.5 + pos: 55.5,-2.5 parent: 2 - - uid: 42198 + - uid: 36911 components: - type: Transform - pos: 3.5,-70.5 + pos: 54.5,-2.5 parent: 2 - - uid: 42199 + - uid: 36912 components: - type: Transform - pos: 4.5,-70.5 + pos: 54.5,-1.5 parent: 2 - - uid: 42200 + - uid: 36913 components: - type: Transform - pos: 5.5,-70.5 + pos: 54.5,-0.5 parent: 2 - - uid: 42201 + - uid: 36914 components: - type: Transform - pos: 6.5,-70.5 + pos: 54.5,0.5 parent: 2 - - uid: 42202 + - uid: 36915 components: - type: Transform - pos: 7.5,-70.5 + pos: 54.5,1.5 parent: 2 - - uid: 42203 + - uid: 36916 components: - type: Transform - pos: 8.5,-70.5 + pos: 54.5,-44.5 parent: 2 - - uid: 42204 + - uid: 36917 components: - type: Transform - pos: 9.5,-70.5 + pos: 54.5,-45.5 parent: 2 - - uid: 42205 + - uid: 36918 components: - type: Transform - pos: 10.5,-70.5 + pos: 54.5,-46.5 parent: 2 - - uid: 42206 + - uid: 36919 components: - type: Transform - pos: 11.5,-70.5 + pos: 54.5,-47.5 parent: 2 - - uid: 42207 + - uid: 36920 components: - type: Transform - pos: 12.5,-70.5 + pos: 54.5,-48.5 parent: 2 - - uid: 42208 + - uid: 36921 components: - type: Transform - pos: 13.5,-70.5 + pos: 54.5,-49.5 parent: 2 - - uid: 42209 + - uid: 36922 components: - type: Transform - pos: 14.5,-70.5 + pos: 54.5,-50.5 parent: 2 - - uid: 42210 + - uid: 36923 components: - type: Transform - pos: 15.5,-70.5 + pos: 54.5,-51.5 parent: 2 - - uid: 42211 + - uid: 36924 components: - type: Transform - pos: 16.5,-70.5 + pos: 56.5,-51.5 parent: 2 - - uid: 42212 + - uid: 36925 components: - type: Transform - pos: 17.5,-70.5 + pos: 57.5,-51.5 parent: 2 - - uid: 42213 + - uid: 37061 components: - type: Transform - pos: 18.5,-70.5 + pos: 58.5,-51.5 parent: 2 - - uid: 42224 + - uid: 37062 components: - type: Transform - pos: 16.5,-65.5 + pos: 59.5,-51.5 parent: 2 - - uid: 42225 + - uid: 37063 components: - type: Transform - pos: 16.5,-66.5 + pos: 60.5,-51.5 parent: 2 - - uid: 42226 + - uid: 37064 components: - type: Transform - pos: 17.5,-66.5 + pos: 61.5,-51.5 parent: 2 - - uid: 42227 + - uid: 37065 components: - type: Transform - pos: 18.5,-66.5 + pos: 62.5,-51.5 parent: 2 - - uid: 42228 + - uid: 37066 components: - type: Transform - pos: 18.5,-67.5 + pos: 62.5,-50.5 parent: 2 - - uid: 42229 + - uid: 37067 components: - type: Transform - pos: 18.5,-68.5 + pos: 62.5,-49.5 parent: 2 - - uid: 42230 + - uid: 37068 components: - type: Transform - pos: 18.5,-69.5 + pos: 41.5,0.5 parent: 2 - - uid: 42299 + - uid: 37069 components: - type: Transform - pos: -55.5,-21.5 + pos: 40.5,0.5 parent: 2 - - uid: 42318 + - uid: 37070 components: - type: Transform - pos: -55.5,-22.5 + pos: 39.5,0.5 parent: 2 - - uid: 42321 + - uid: 37071 components: - type: Transform - pos: -55.5,-23.5 + pos: 38.5,0.5 parent: 2 - - uid: 42374 + - uid: 37072 components: - type: Transform - pos: -56.5,-23.5 + pos: 37.5,0.5 parent: 2 - - uid: 42375 + - uid: 37073 components: - type: Transform - pos: -57.5,-23.5 + pos: 36.5,0.5 parent: 2 - - uid: 42376 + - uid: 37074 components: - type: Transform - pos: -58.5,-23.5 + pos: 35.5,0.5 parent: 2 - - uid: 42377 + - uid: 37075 components: - type: Transform - pos: -59.5,-23.5 + pos: 34.5,0.5 parent: 2 - - uid: 42378 + - uid: 37076 components: - type: Transform - pos: -60.5,-23.5 + pos: 33.5,0.5 parent: 2 - - uid: 42379 + - uid: 37077 components: - type: Transform - pos: -61.5,-23.5 + pos: 32.5,0.5 parent: 2 - - uid: 42382 + - uid: 37078 components: - type: Transform - pos: -62.5,-23.5 + pos: 31.5,0.5 parent: 2 - - uid: 42384 + - uid: 37079 components: - type: Transform - pos: -63.5,-23.5 + pos: 30.5,0.5 parent: 2 - - uid: 42385 + - uid: 37080 components: - type: Transform - pos: -64.5,-23.5 + pos: 29.5,0.5 parent: 2 - - uid: 42395 + - uid: 37081 components: - type: Transform - pos: -65.5,-23.5 + pos: 28.5,0.5 parent: 2 - - uid: 42397 + - uid: 37082 components: - type: Transform - pos: -66.5,-23.5 + pos: 27.5,0.5 parent: 2 - - uid: 42398 + - uid: 37083 components: - type: Transform - pos: -66.5,-22.5 + pos: 26.5,0.5 parent: 2 - - uid: 42407 + - uid: 37084 components: - type: Transform - pos: -67.5,-22.5 + pos: 25.5,0.5 parent: 2 - - uid: 42418 + - uid: 37085 components: - type: Transform - pos: -67.5,-21.5 + pos: 25.5,1.5 parent: 2 - - uid: 42419 + - uid: 37089 components: - type: Transform - pos: -67.5,-20.5 + pos: 25.5,2.5 parent: 2 - - uid: 42420 + - uid: 37116 components: - type: Transform - pos: -67.5,-19.5 + pos: -32.5,-83.5 parent: 2 - - uid: 42421 + - uid: 37147 components: - type: Transform - pos: -67.5,-18.5 + pos: 54.5,-3.5 parent: 2 - - uid: 42422 + - uid: 37148 components: - type: Transform - pos: -67.5,-17.5 + pos: 54.5,-4.5 parent: 2 - - uid: 42423 + - uid: 37149 components: - type: Transform - pos: -67.5,-16.5 + pos: 54.5,-5.5 parent: 2 - - uid: 42424 + - uid: 37150 components: - type: Transform - pos: -68.5,-16.5 + pos: 73.5,-21.5 parent: 2 - - uid: 42425 + - uid: 37151 components: - type: Transform - pos: -69.5,-16.5 + pos: 72.5,-21.5 parent: 2 - - uid: 42439 + - uid: 37152 components: - type: Transform - pos: -32.5,-46.5 + pos: 71.5,-21.5 parent: 2 - - uid: 42440 + - uid: 37153 components: - type: Transform - pos: -31.5,-46.5 + pos: 70.5,-21.5 parent: 2 - - uid: 42441 + - uid: 37154 components: - type: Transform - pos: -31.5,-47.5 + pos: 53.5,-5.5 parent: 2 - - uid: 42442 + - uid: 37155 components: - type: Transform - pos: -31.5,-48.5 + pos: 52.5,-5.5 parent: 2 - - uid: 42443 + - uid: 37156 components: - type: Transform - pos: -31.5,-49.5 + pos: 51.5,-5.5 parent: 2 - - uid: 42444 + - uid: 37157 components: - type: Transform - pos: -31.5,-50.5 + pos: 50.5,-5.5 parent: 2 - - uid: 42445 + - uid: 37158 components: - type: Transform - pos: -30.5,-50.5 + pos: 49.5,-5.5 parent: 2 - - uid: 42446 + - uid: 37159 components: - type: Transform - pos: -29.5,-50.5 + pos: 48.5,-5.5 parent: 2 - - uid: 42447 + - uid: 37160 components: - type: Transform - pos: -28.5,-50.5 + pos: 47.5,-5.5 parent: 2 - - uid: 42448 + - uid: 37161 components: - type: Transform - pos: -27.5,-50.5 + pos: 46.5,-5.5 parent: 2 - - uid: 42449 + - uid: 37162 components: - type: Transform - pos: -26.5,-50.5 + pos: 45.5,-5.5 parent: 2 - - uid: 42450 + - uid: 37163 components: - type: Transform - pos: -25.5,-50.5 + pos: 44.5,-5.5 parent: 2 - - uid: 42457 + - uid: 37164 components: - type: Transform - pos: -25.5,-51.5 + pos: 70.5,-22.5 parent: 2 - - uid: 42458 + - uid: 37165 components: - type: Transform - pos: -25.5,-52.5 + pos: 44.5,-4.5 parent: 2 - - uid: 42460 + - uid: 37166 components: - type: Transform - pos: -25.5,-53.5 + pos: 44.5,-3.5 parent: 2 - - uid: 42461 + - uid: 37167 components: - type: Transform - pos: -26.5,-53.5 + pos: 69.5,-22.5 parent: 2 - - uid: 42462 + - uid: 37168 components: - type: Transform - pos: -26.5,-54.5 + pos: 68.5,-22.5 parent: 2 - - uid: 42463 + - uid: 37169 components: - type: Transform - pos: -26.5,-55.5 + pos: 67.5,-22.5 parent: 2 - - uid: 42464 + - uid: 37170 components: - type: Transform - pos: -25.5,-55.5 + pos: 66.5,-22.5 parent: 2 - - uid: 42466 + - uid: 37171 components: - type: Transform - pos: -24.5,-55.5 + pos: 65.5,-22.5 parent: 2 - - uid: 42467 + - uid: 37172 components: - type: Transform - pos: -23.5,-55.5 + pos: 65.5,-21.5 parent: 2 - - uid: 42509 + - uid: 37173 components: - type: Transform - pos: -23.5,-54.5 + pos: 65.5,-20.5 parent: 2 - - uid: 42510 + - uid: 37174 components: - type: Transform - pos: -23.5,-53.5 + pos: 65.5,-19.5 parent: 2 - - uid: 42517 + - uid: 37175 components: - type: Transform - pos: -22.5,-53.5 + pos: 64.5,-19.5 parent: 2 - - uid: 42518 + - uid: 37176 components: - type: Transform - pos: -22.5,-52.5 + pos: 64.5,-18.5 parent: 2 - - uid: 42531 + - uid: 37177 components: - type: Transform - pos: -22.5,-51.5 + pos: 64.5,-17.5 parent: 2 - - uid: 42544 + - uid: 37178 components: - type: Transform - pos: -22.5,-50.5 + pos: 64.5,-16.5 parent: 2 - - uid: 42546 + - uid: 37179 components: - type: Transform - pos: -22.5,-49.5 + pos: 64.5,-15.5 parent: 2 - - uid: 42548 + - uid: 37180 components: - type: Transform - pos: -22.5,-48.5 + pos: 63.5,-15.5 parent: 2 - - uid: 42549 + - uid: 37181 components: - type: Transform - pos: -22.5,-47.5 + pos: 63.5,-14.5 parent: 2 - - uid: 42560 + - uid: 37182 components: - type: Transform - pos: -22.5,-46.5 + pos: 63.5,-13.5 parent: 2 - - uid: 42562 + - uid: 37183 components: - type: Transform - pos: -22.5,-45.5 + pos: 63.5,-12.5 parent: 2 - - uid: 42580 + - uid: 37184 components: - type: Transform - pos: -23.5,-45.5 + pos: 63.5,-11.5 parent: 2 - - uid: 42581 + - uid: 37185 components: - type: Transform - pos: -23.5,-44.5 + pos: 63.5,-10.5 parent: 2 - - uid: 42582 + - uid: 37186 components: - type: Transform - pos: -23.5,-43.5 + pos: 62.5,-10.5 parent: 2 - - uid: 42583 + - uid: 37187 components: - type: Transform - pos: -20.5,-45.5 + pos: 61.5,-10.5 parent: 2 - - uid: 42584 + - uid: 37188 components: - type: Transform - pos: -19.5,-45.5 + pos: 61.5,-9.5 parent: 2 - - uid: 42595 + - uid: 37189 components: - type: Transform - pos: -15.5,-14.5 + pos: 60.5,-9.5 parent: 2 - - uid: 42598 + - uid: 37190 components: - type: Transform - pos: -19.5,-44.5 + pos: 59.5,-9.5 parent: 2 - - uid: 42599 + - uid: 37191 components: - type: Transform - pos: -19.5,-43.5 + pos: 58.5,-9.5 parent: 2 - - uid: 42600 + - uid: 37192 components: - type: Transform - pos: -19.5,-42.5 + pos: 58.5,-6.5 parent: 2 - - uid: 42601 + - uid: 37193 components: - type: Transform - pos: -19.5,-41.5 + pos: 58.5,-8.5 parent: 2 - - uid: 42614 + - uid: 37194 components: - type: Transform - pos: -19.5,-40.5 + pos: 64.5,4.5 parent: 2 - - uid: 42616 + - uid: 37195 components: - type: Transform - pos: -18.5,-40.5 + pos: 58.5,-7.5 parent: 2 - - uid: 42617 + - uid: 37196 components: - type: Transform - pos: -17.5,-40.5 + pos: 58.5,-5.5 parent: 2 - - uid: 42618 + - uid: 37197 components: - type: Transform - pos: -16.5,-40.5 + pos: 58.5,-4.5 parent: 2 - - uid: 42619 + - uid: 37198 components: - type: Transform - pos: -15.5,-40.5 + pos: 58.5,-3.5 parent: 2 - - uid: 42620 + - uid: 37199 components: - type: Transform - pos: -14.5,-40.5 + pos: 64.5,3.5 parent: 2 - - uid: 42623 + - uid: 37200 components: - type: Transform - pos: -14.5,-41.5 + pos: 64.5,2.5 parent: 2 - - uid: 42627 + - uid: 37201 components: - type: Transform - pos: -14.5,-42.5 + pos: 64.5,1.5 parent: 2 - - uid: 42635 + - uid: 37202 components: - type: Transform - pos: -14.5,-43.5 + pos: 64.5,0.5 parent: 2 - - uid: 42636 + - uid: 37203 components: - type: Transform - pos: -14.5,-44.5 + pos: 65.5,4.5 parent: 2 - - uid: 42649 + - uid: 37204 components: - type: Transform - pos: -13.5,-44.5 + pos: 66.5,4.5 parent: 2 - - uid: 42655 + - uid: 37205 components: - type: Transform - pos: -12.5,-44.5 + pos: 66.5,5.5 parent: 2 - - uid: 42699 + - uid: 37206 components: - type: Transform - pos: -11.5,-44.5 + pos: 66.5,6.5 parent: 2 - - uid: 42706 + - uid: 37207 components: - type: Transform - pos: -18.5,-48.5 + pos: 35.5,-10.5 parent: 2 - - uid: 42712 + - uid: 37208 components: - type: Transform - pos: -18.5,-49.5 + pos: 36.5,-10.5 parent: 2 - - uid: 42714 + - uid: 37209 components: - type: Transform - pos: -18.5,-50.5 + pos: 36.5,-9.5 parent: 2 - - uid: 42715 + - uid: 37215 components: - type: Transform - pos: -17.5,-50.5 + pos: 42.5,-10.5 parent: 2 - - uid: 42717 + - uid: 37216 components: - type: Transform - pos: -16.5,-50.5 + pos: 59.5,-2.5 parent: 2 - - uid: 42719 + - uid: 37217 components: - type: Transform - pos: -16.5,-49.5 + pos: 60.5,-2.5 parent: 2 - - uid: 42720 + - uid: 37218 components: - type: Transform - pos: -16.5,-48.5 + pos: 61.5,-2.5 parent: 2 - - uid: 42721 + - uid: 37219 components: - type: Transform - pos: -16.5,-47.5 + pos: 62.5,-2.5 parent: 2 - - uid: 42722 + - uid: 37220 components: - type: Transform - pos: -15.5,-47.5 + pos: 63.5,-2.5 parent: 2 - - uid: 42723 + - uid: 37221 components: - type: Transform - pos: -15.5,-46.5 + pos: 64.5,-2.5 parent: 2 - - uid: 42724 + - uid: 37222 components: - type: Transform - pos: -15.5,-45.5 + pos: 57.5,-40.5 parent: 2 - - uid: 42725 + - uid: 37225 components: - type: Transform - pos: -15.5,-44.5 + pos: 64.5,-1.5 parent: 2 - - uid: 42726 + - uid: 37226 components: - type: Transform - pos: -13.5,-40.5 + pos: 64.5,-0.5 parent: 2 - - uid: 42727 + - uid: 37227 components: - type: Transform - pos: -12.5,-40.5 + pos: 58.5,-34.5 parent: 2 - - uid: 42729 + - uid: 37229 components: - type: Transform - pos: -11.5,-40.5 + pos: 59.5,-36.5 parent: 2 - - uid: 42730 + - uid: 37248 components: - type: Transform - pos: -10.5,-40.5 + pos: 37.5,-9.5 parent: 2 - - uid: 42731 + - uid: 37249 components: - type: Transform - pos: -9.5,-40.5 + pos: 38.5,-9.5 parent: 2 - - uid: 42732 + - uid: 37257 components: - type: Transform - pos: -8.5,-40.5 + pos: 73.5,-3.5 parent: 2 - - uid: 42733 + - uid: 37258 components: - type: Transform - pos: -10.5,-39.5 + pos: 73.5,-2.5 parent: 2 - - uid: 42734 + - uid: 37259 components: - type: Transform - pos: -10.5,-38.5 + pos: 72.5,-2.5 parent: 2 - - uid: 42735 + - uid: 37260 components: - type: Transform - pos: -10.5,-37.5 + pos: 71.5,-2.5 parent: 2 - - uid: 42736 + - uid: 37261 components: - type: Transform - pos: -11.5,-37.5 + pos: 70.5,-2.5 parent: 2 - - uid: 42737 + - uid: 37262 components: - type: Transform - pos: -12.5,-37.5 + pos: 69.5,-2.5 parent: 2 - - uid: 42738 + - uid: 37263 components: - type: Transform - pos: -13.5,-37.5 + pos: 68.5,-2.5 parent: 2 - - uid: 42739 + - uid: 37264 components: - type: Transform - pos: -7.5,-40.5 + pos: 67.5,-2.5 parent: 2 - - uid: 42740 + - uid: 37265 components: - type: Transform - pos: -6.5,-40.5 + pos: 66.5,-2.5 parent: 2 - - uid: 42741 + - uid: 37266 components: - type: Transform - pos: -6.5,-39.5 + pos: 65.5,-2.5 parent: 2 - - uid: 42742 + - uid: 37275 components: - type: Transform - pos: -11.5,-51.5 + pos: 44.5,-12.5 parent: 2 - - uid: 42743 + - uid: 37276 components: - type: Transform - pos: -10.5,-51.5 + pos: 44.5,-11.5 parent: 2 - - uid: 42744 + - uid: 37277 components: - type: Transform - pos: -9.5,-51.5 + pos: 44.5,-10.5 parent: 2 - - uid: 42745 + - uid: 37278 components: - type: Transform - pos: -8.5,-51.5 + pos: 43.5,-10.5 parent: 2 - - uid: 42746 + - uid: 37497 components: - type: Transform - pos: -7.5,-51.5 + pos: 23.5,-43.5 parent: 2 - - uid: 42747 + - uid: 37498 components: - type: Transform - pos: -6.5,-51.5 + pos: 23.5,-42.5 parent: 2 - - uid: 42748 + - uid: 37500 components: - type: Transform - pos: -5.5,-51.5 + pos: 22.5,-43.5 parent: 2 - - uid: 42749 + - uid: 37501 components: - type: Transform - pos: -4.5,-51.5 + pos: 21.5,-43.5 parent: 2 - - uid: 42750 + - uid: 37502 components: - type: Transform - pos: -4.5,-50.5 + pos: 20.5,-43.5 parent: 2 - - uid: 42751 + - uid: 37503 components: - type: Transform - pos: -4.5,-49.5 + pos: 19.5,-43.5 parent: 2 - - uid: 42752 + - uid: 37504 components: - type: Transform - pos: -4.5,-48.5 + pos: 19.5,-42.5 parent: 2 - - uid: 42754 + - uid: 37505 components: - type: Transform - pos: -4.5,-47.5 + pos: 19.5,-41.5 parent: 2 - - uid: 42755 + - uid: 37506 components: - type: Transform - pos: -4.5,-46.5 + pos: 19.5,-40.5 parent: 2 - - uid: 42756 + - uid: 37507 components: - type: Transform - pos: -4.5,-45.5 + pos: 19.5,-39.5 parent: 2 - - uid: 42757 + - uid: 37508 components: - type: Transform - pos: -4.5,-44.5 + pos: 20.5,-39.5 parent: 2 - - uid: 42758 + - uid: 37509 components: - type: Transform - pos: -4.5,-43.5 + pos: 21.5,-39.5 parent: 2 - - uid: 42759 + - uid: 37510 components: - type: Transform - pos: -4.5,-42.5 + pos: 22.5,-39.5 parent: 2 - - uid: 42760 + - uid: 37511 components: - type: Transform - pos: -4.5,-41.5 + pos: 22.5,-38.5 parent: 2 - - uid: 42762 + - uid: 37512 components: - type: Transform - pos: -4.5,-40.5 + pos: 22.5,-37.5 parent: 2 - - uid: 42763 + - uid: 37513 components: - type: Transform - pos: -5.5,-40.5 + pos: 22.5,-36.5 parent: 2 - - uid: 42764 + - uid: 37514 components: - type: Transform - pos: -6.5,-27.5 + pos: 22.5,-35.5 parent: 2 - - uid: 42765 + - uid: 37515 components: - type: Transform - pos: -6.5,-28.5 + pos: 22.5,-34.5 parent: 2 - - uid: 42770 + - uid: 37521 components: - type: Transform - pos: -6.5,-29.5 + pos: 23.5,-34.5 parent: 2 - - uid: 42774 + - uid: 37522 components: - type: Transform - pos: -5.5,-29.5 + pos: 24.5,-34.5 parent: 2 - - uid: 42775 + - uid: 37523 components: - type: Transform - pos: -4.5,-29.5 + pos: 24.5,-35.5 parent: 2 - - uid: 42776 + - uid: 37524 components: - type: Transform - pos: -3.5,-29.5 + pos: 24.5,-36.5 parent: 2 - - uid: 42777 + - uid: 37525 components: - type: Transform - pos: -2.5,-29.5 + pos: 24.5,-37.5 parent: 2 - - uid: 42778 + - uid: 37526 components: - type: Transform - pos: -1.5,-29.5 + pos: 25.5,-37.5 parent: 2 - - uid: 42779 + - uid: 37527 components: - type: Transform - pos: -0.5,-29.5 + pos: 26.5,-37.5 parent: 2 - - uid: 42829 + - uid: 37528 components: - type: Transform - pos: -0.5,-30.5 + pos: 27.5,-37.5 parent: 2 - - uid: 42830 + - uid: 37529 components: - type: Transform - pos: -0.5,-31.5 + pos: 28.5,-37.5 parent: 2 - - uid: 42831 + - uid: 37530 components: - type: Transform - pos: -0.5,-32.5 + pos: 29.5,-37.5 parent: 2 - - uid: 42832 + - uid: 37531 components: - type: Transform - pos: -0.5,-33.5 + pos: 30.5,-37.5 parent: 2 - - uid: 42835 + - uid: 37532 components: - type: Transform - pos: -0.5,-34.5 + pos: 31.5,-37.5 parent: 2 - - uid: 42836 + - uid: 37533 components: - type: Transform - pos: -0.5,-35.5 + pos: 32.5,-37.5 parent: 2 - - uid: 42837 + - uid: 37534 components: - type: Transform - pos: -0.5,-36.5 + pos: 33.5,-37.5 parent: 2 - - uid: 42840 + - uid: 37535 components: - type: Transform - pos: -1.5,-36.5 + pos: 33.5,-36.5 parent: 2 - - uid: 42841 + - uid: 37536 components: - type: Transform - pos: -1.5,-37.5 + pos: 29.5,-39.5 parent: 2 - - uid: 42842 + - uid: 37537 components: - type: Transform - pos: -2.5,-37.5 + pos: 28.5,-39.5 parent: 2 - - uid: 42843 + - uid: 37538 components: - type: Transform - pos: -3.5,-37.5 + pos: 28.5,-38.5 parent: 2 - - uid: 42844 + - uid: 37541 components: - type: Transform - pos: -4.5,-37.5 + pos: 21.5,-28.5 parent: 2 - - uid: 42845 + - uid: 37542 components: - type: Transform - pos: -4.5,-38.5 + pos: 21.5,-29.5 parent: 2 - - uid: 42846 + - uid: 37543 components: - type: Transform - pos: -4.5,-39.5 + pos: 22.5,-29.5 parent: 2 - - uid: 42847 + - uid: 37544 components: - type: Transform - pos: 0.5,-36.5 + pos: 23.5,-29.5 parent: 2 - - uid: 42848 + - uid: 37545 components: - type: Transform - pos: 0.5,-37.5 + pos: 24.5,-29.5 parent: 2 - - uid: 42849 + - uid: 37546 components: - type: Transform - pos: 1.5,-37.5 + pos: 24.5,-30.5 parent: 2 - - uid: 42850 + - uid: 37547 components: - type: Transform - pos: 2.5,-37.5 + pos: 24.5,-31.5 parent: 2 - - uid: 42851 + - uid: 37548 components: - type: Transform - pos: 3.5,-37.5 + pos: 24.5,-32.5 parent: 2 - - uid: 42852 + - uid: 37549 components: - type: Transform - pos: 4.5,-37.5 + pos: 24.5,-33.5 parent: 2 - - uid: 42853 + - uid: 37550 components: - type: Transform - pos: 4.5,-38.5 + pos: 3.5,-26.5 parent: 2 - - uid: 42854 + - uid: 37551 components: - type: Transform - pos: 4.5,-39.5 + pos: 3.5,-27.5 parent: 2 - - uid: 42855 + - uid: 37552 components: - type: Transform - pos: 4.5,-40.5 + pos: 4.5,-27.5 parent: 2 - - uid: 42856 + - uid: 37553 components: - type: Transform - pos: 4.5,-41.5 + pos: 5.5,-27.5 parent: 2 - - uid: 42857 + - uid: 37554 components: - type: Transform - pos: 4.5,-42.5 + pos: 5.5,-28.5 parent: 2 - - uid: 42860 + - uid: 37555 components: - type: Transform - pos: 7.5,-33.5 + pos: 5.5,-29.5 parent: 2 - - uid: 42861 + - uid: 37556 components: - type: Transform - pos: 6.5,-33.5 + pos: 5.5,-30.5 parent: 2 - - uid: 42862 + - uid: 37557 components: - type: Transform - pos: 5.5,-33.5 + pos: 6.5,-30.5 parent: 2 - - uid: 42863 + - uid: 37558 components: - type: Transform - pos: 4.5,-33.5 + pos: 7.5,-30.5 parent: 2 - - uid: 42864 + - uid: 37559 components: - type: Transform - pos: 4.5,-34.5 + pos: 8.5,-30.5 parent: 2 - - uid: 42865 + - uid: 37560 components: - type: Transform - pos: 4.5,-35.5 + pos: 8.5,-29.5 parent: 2 - - uid: 42866 + - uid: 37561 components: - type: Transform - pos: 4.5,-36.5 + pos: 9.5,-29.5 parent: 2 - - uid: 42867 + - uid: 37562 components: - type: Transform - pos: 5.5,-35.5 + pos: 10.5,-29.5 parent: 2 - - uid: 42868 + - uid: 37563 components: - type: Transform - pos: -4.5,-52.5 + pos: 11.5,-29.5 parent: 2 - - uid: 42869 + - uid: 37564 components: - type: Transform - pos: -3.5,-52.5 + pos: 12.5,-29.5 parent: 2 - - uid: 42870 + - uid: 37565 components: - type: Transform - pos: -2.5,-52.5 + pos: 13.5,-29.5 parent: 2 - - uid: 42871 + - uid: 37566 components: - type: Transform - pos: -1.5,-52.5 + pos: 14.5,-29.5 parent: 2 - - uid: 42872 + - uid: 37567 components: - type: Transform - pos: -0.5,-52.5 + pos: 15.5,-29.5 parent: 2 - - uid: 42873 + - uid: 37568 components: - type: Transform - pos: 0.5,-52.5 + pos: 16.5,-29.5 parent: 2 - - uid: 42874 + - uid: 37569 components: - type: Transform - pos: 1.5,-52.5 + pos: 17.5,-29.5 parent: 2 - - uid: 42875 + - uid: 37570 components: - type: Transform - pos: 2.5,-52.5 + pos: 18.5,-29.5 parent: 2 - - uid: 42878 + - uid: 37571 components: - type: Transform - pos: 3.5,-52.5 + pos: 19.5,-29.5 parent: 2 - - uid: 42879 + - uid: 37572 components: - type: Transform - pos: 4.5,-52.5 + pos: 20.5,-29.5 parent: 2 - - uid: 42880 + - uid: 37591 components: - type: Transform - pos: 5.5,-52.5 + pos: 23.5,-48.5 parent: 2 - - uid: 42881 + - uid: 37592 components: - type: Transform - pos: 5.5,-51.5 + pos: 23.5,-49.5 parent: 2 - - uid: 42882 + - uid: 37593 components: - type: Transform - pos: 5.5,-50.5 + pos: 22.5,-49.5 parent: 2 - - uid: 42883 + - uid: 37594 components: - type: Transform - pos: 5.5,-49.5 + pos: 21.5,-49.5 parent: 2 - - uid: 42884 + - uid: 37595 components: - type: Transform - pos: 5.5,-48.5 + pos: 20.5,-49.5 parent: 2 - - uid: 42885 + - uid: 37596 components: - type: Transform - pos: 5.5,-47.5 + pos: 19.5,-49.5 parent: 2 - - uid: 42886 + - uid: 37597 components: - type: Transform - pos: 5.5,-46.5 + pos: 19.5,-48.5 parent: 2 - - uid: 42887 + - uid: 37598 components: - type: Transform - pos: 5.5,-45.5 + pos: 19.5,-47.5 parent: 2 - - uid: 42888 + - uid: 37599 components: - type: Transform - pos: 5.5,-44.5 + pos: 19.5,-46.5 parent: 2 - - uid: 42889 + - uid: 37600 components: - type: Transform - pos: 5.5,-43.5 + pos: 19.5,-45.5 parent: 2 - - uid: 42890 + - uid: 37601 components: - type: Transform - pos: 4.5,-43.5 + pos: 19.5,-44.5 parent: 2 - - uid: 42891 + - uid: 41015 components: - type: Transform - pos: 2.5,-51.5 + pos: 29.5,-65.5 parent: 2 - - uid: 42892 + - uid: 41016 components: - type: Transform - pos: 2.5,-50.5 + pos: 28.5,-65.5 parent: 2 - - uid: 42893 + - uid: 41018 components: - type: Transform - pos: 3.5,-48.5 + pos: 27.5,-65.5 parent: 2 - - uid: 42894 + - uid: 41020 components: - type: Transform - pos: 2.5,-48.5 + pos: 26.5,-65.5 parent: 2 - - uid: 42895 + - uid: 41023 components: - type: Transform - pos: 1.5,-48.5 + pos: -48.5,-64.5 parent: 2 - - uid: 42897 + - uid: 41024 components: - type: Transform - pos: 1.5,-49.5 + pos: -47.5,-64.5 parent: 2 - - uid: 42898 + - uid: 41027 components: - type: Transform - pos: 1.5,-50.5 + pos: -46.5,-64.5 parent: 2 - - uid: 42899 + - uid: 41029 components: - type: Transform - pos: -3.5,-43.5 + pos: -45.5,-64.5 parent: 2 - - uid: 42900 + - uid: 41039 components: - type: Transform - pos: -2.5,-43.5 + pos: -44.5,-64.5 parent: 2 - - uid: 42901 + - uid: 41040 components: - type: Transform - pos: -1.5,-43.5 + pos: -44.5,-65.5 parent: 2 - - uid: 42902 + - uid: 41041 components: - type: Transform - pos: -0.5,-43.5 + pos: -43.5,-65.5 parent: 2 - - uid: 42903 + - uid: 41042 components: - type: Transform - pos: 0.5,-43.5 + pos: -42.5,-65.5 parent: 2 - - uid: 42904 + - uid: 41045 components: - type: Transform - pos: 1.5,-43.5 + pos: -41.5,-65.5 parent: 2 - - uid: 42905 + - uid: 41046 components: - type: Transform - pos: 2.5,-43.5 + pos: -40.5,-65.5 parent: 2 - - uid: 42906 + - uid: 41050 components: - type: Transform - pos: 3.5,-43.5 + pos: -39.5,-65.5 parent: 2 - - uid: 42907 + - uid: 41051 components: - type: Transform - pos: 7.5,-56.5 + pos: -38.5,-65.5 parent: 2 - - uid: 42908 + - uid: 41055 components: - type: Transform - pos: 7.5,-57.5 + pos: -37.5,-65.5 parent: 2 - - uid: 42909 + - uid: 41057 components: - type: Transform - pos: 7.5,-58.5 + pos: -34.5,-70.5 parent: 2 - - uid: 42910 + - uid: 41067 components: - type: Transform - pos: 8.5,-58.5 + pos: -35.5,-70.5 parent: 2 - - uid: 42911 + - uid: 41075 components: - type: Transform - pos: 9.5,-58.5 + pos: -36.5,-70.5 parent: 2 - - uid: 42912 + - uid: 41076 components: - type: Transform - pos: 9.5,-57.5 + pos: -37.5,-70.5 parent: 2 - - uid: 42923 + - uid: 41077 components: - type: Transform - pos: 9.5,-56.5 + pos: -38.5,-70.5 parent: 2 - - uid: 42924 + - uid: 41082 components: - type: Transform - pos: 9.5,-55.5 + pos: -39.5,-70.5 parent: 2 - - uid: 42947 + - uid: 41083 components: - type: Transform - pos: 9.5,-54.5 + pos: -40.5,-70.5 parent: 2 - - uid: 42967 + - uid: 41084 components: - type: Transform - pos: 9.5,-53.5 + pos: -41.5,-70.5 parent: 2 - - uid: 42993 + - uid: 41085 components: - type: Transform - pos: 9.5,-52.5 + pos: -42.5,-70.5 parent: 2 - - uid: 42998 + - uid: 41086 components: - type: Transform - pos: 9.5,-51.5 + pos: -43.5,-70.5 parent: 2 - - uid: 43007 + - uid: 41087 components: - type: Transform - pos: 9.5,-50.5 + pos: -44.5,-70.5 parent: 2 - - uid: 43011 + - uid: 41116 components: - type: Transform - pos: 9.5,-49.5 + pos: -45.5,-70.5 parent: 2 - - uid: 43017 + - uid: 41117 components: - type: Transform - pos: 9.5,-48.5 + pos: -46.5,-70.5 parent: 2 - - uid: 43018 + - uid: 41118 components: - type: Transform - pos: 9.5,-47.5 + pos: -47.5,-70.5 parent: 2 - - uid: 43019 + - uid: 41119 components: - type: Transform - pos: 9.5,-46.5 + pos: -48.5,-70.5 parent: 2 - - uid: 43020 + - uid: 41120 components: - type: Transform - pos: 8.5,-46.5 + pos: -48.5,-69.5 parent: 2 - - uid: 43024 + - uid: 41152 components: - type: Transform - pos: 7.5,-46.5 + pos: -48.5,-68.5 parent: 2 - - uid: 43025 + - uid: 41271 components: - type: Transform - pos: 6.5,-46.5 + pos: -31.5,-39.5 parent: 2 - - uid: 43026 + - uid: 41322 components: - type: Transform - pos: 10.5,-49.5 + pos: -31.5,-40.5 parent: 2 - - uid: 43027 + - uid: 41323 components: - type: Transform - pos: 14.5,-42.5 + pos: -32.5,-40.5 parent: 2 - - uid: 43028 + - uid: 41325 components: - type: Transform - pos: 14.5,-43.5 + pos: -33.5,-40.5 parent: 2 - - uid: 43044 + - uid: 41326 components: - type: Transform - pos: 13.5,-43.5 + pos: -34.5,-40.5 parent: 2 - - uid: 43076 + - uid: 41450 components: - type: Transform - pos: 13.5,-44.5 + pos: -35.5,-40.5 parent: 2 - - uid: 43077 + - uid: 41451 components: - type: Transform - pos: 13.5,-45.5 + pos: -35.5,-41.5 parent: 2 - - uid: 43078 + - uid: 41521 components: - type: Transform - pos: 13.5,-46.5 + pos: -35.5,-42.5 parent: 2 - - uid: 43082 + - uid: 41563 components: - type: Transform - pos: 12.5,-46.5 + pos: -35.5,-43.5 parent: 2 - - uid: 43083 + - uid: 41620 components: - type: Transform - pos: 11.5,-46.5 + pos: -35.5,-44.5 parent: 2 - - uid: 43086 + - uid: 41770 components: - type: Transform - pos: 10.5,-46.5 + pos: -35.5,-45.5 parent: 2 - - uid: 43088 + - uid: 41771 components: - type: Transform - pos: 9.5,-45.5 + pos: -35.5,-46.5 parent: 2 - - uid: 43089 + - uid: 41778 components: - type: Transform - pos: 9.5,-44.5 + pos: -35.5,-47.5 parent: 2 - - uid: 43090 + - uid: 41808 components: - type: Transform - pos: 9.5,-43.5 + pos: -35.5,-48.5 parent: 2 - - uid: 43091 + - uid: 41809 components: - type: Transform - pos: 9.5,-42.5 + pos: -35.5,-49.5 parent: 2 - - uid: 43141 + - uid: 41810 components: - type: Transform - pos: 10.5,-42.5 + pos: -35.5,-50.5 parent: 2 - - uid: 43178 + - uid: 41813 components: - type: Transform - pos: 11.5,-42.5 + pos: -35.5,-51.5 parent: 2 - - uid: 43367 + - uid: 41820 components: - type: Transform - pos: -22.5,-55.5 + pos: -37.5,-51.5 parent: 2 - - uid: 43368 + - uid: 41821 components: - type: Transform - pos: -21.5,-55.5 + pos: -37.5,-52.5 parent: 2 - - uid: 43369 + - uid: 41822 components: - type: Transform - pos: -20.5,-55.5 + pos: -36.5,-52.5 parent: 2 - - uid: 43370 + - uid: 41823 components: - type: Transform - pos: -19.5,-55.5 + pos: -35.5,-52.5 parent: 2 - - uid: 43384 + - uid: 41824 components: - type: Transform - pos: -18.5,-55.5 + pos: -31.5,-53.5 parent: 2 - - uid: 43398 + - uid: 41825 components: - type: Transform - pos: -17.5,-55.5 + pos: -31.5,-54.5 parent: 2 - - uid: 43419 + - uid: 41826 components: - type: Transform - pos: -16.5,-55.5 + pos: -32.5,-54.5 parent: 2 - - uid: 43430 + - uid: 41829 components: - type: Transform - pos: -15.5,-55.5 + pos: -33.5,-54.5 parent: 2 - - uid: 43431 + - uid: 41830 components: - type: Transform - pos: -14.5,-55.5 + pos: -34.5,-54.5 parent: 2 - - uid: 43432 + - uid: 41831 components: - type: Transform - pos: -13.5,-55.5 + pos: -35.5,-54.5 parent: 2 - - uid: 43433 + - uid: 41834 components: - type: Transform - pos: -12.5,-55.5 + pos: -35.5,-53.5 parent: 2 - - uid: 43434 + - uid: 41835 components: - type: Transform - pos: -12.5,-56.5 + pos: -35.5,-55.5 parent: 2 - - uid: 43435 + - uid: 41836 components: - type: Transform - pos: -11.5,-56.5 + pos: -35.5,-56.5 parent: 2 - - uid: 43441 + - uid: 41837 components: - type: Transform - pos: -10.5,-56.5 + pos: -35.5,-57.5 parent: 2 - - uid: 43442 + - uid: 41838 components: - type: Transform - pos: -10.5,-55.5 + pos: -35.5,-58.5 parent: 2 - - uid: 43443 + - uid: 41839 components: - type: Transform - pos: -10.5,-54.5 + pos: -35.5,-59.5 parent: 2 - - uid: 43444 + - uid: 41840 components: - type: Transform - pos: -9.5,-54.5 + pos: -35.5,-60.5 parent: 2 - - uid: 43453 + - uid: 41841 components: - type: Transform - pos: -9.5,-53.5 + pos: -33.5,-63.5 parent: 2 - - uid: 43454 + - uid: 41842 components: - type: Transform - pos: -9.5,-52.5 + pos: -33.5,-62.5 parent: 2 - - uid: 43513 + - uid: 41843 components: - type: Transform - pos: 29.5,7.5 + pos: -32.5,-62.5 parent: 2 - - uid: 43514 + - uid: 41844 components: - type: Transform - pos: 29.5,6.5 + pos: -32.5,-61.5 parent: 2 - - uid: 43515 + - uid: 41845 components: - type: Transform - pos: 30.5,6.5 + pos: -32.5,-60.5 parent: 2 - - uid: 43516 + - uid: 41846 components: - type: Transform - pos: 31.5,6.5 + pos: -33.5,-60.5 parent: 2 - - uid: 43517 + - uid: 41847 components: - type: Transform - pos: 32.5,6.5 + pos: -34.5,-60.5 parent: 2 - - uid: 43518 + - uid: 41848 components: - type: Transform - pos: 33.5,6.5 + pos: -35.5,-61.5 parent: 2 - - uid: 43519 + - uid: 41854 components: - type: Transform - pos: 34.5,6.5 + pos: -35.5,-62.5 parent: 2 - - uid: 43520 + - uid: 41865 components: - type: Transform - pos: 35.5,6.5 + pos: -35.5,-63.5 parent: 2 - - uid: 43521 + - uid: 41866 components: - type: Transform - pos: 36.5,6.5 + pos: -35.5,-64.5 parent: 2 - - uid: 43522 + - uid: 41867 components: - type: Transform - pos: 37.5,6.5 + pos: -35.5,-65.5 parent: 2 - - uid: 43523 + - uid: 41868 components: - type: Transform - pos: 38.5,6.5 + pos: -36.5,-65.5 parent: 2 - - uid: 43524 + - uid: 41877 components: - type: Transform - pos: 39.5,6.5 + pos: -22.5,-63.5 parent: 2 - - uid: 43525 + - uid: 41879 components: - type: Transform - pos: 40.5,6.5 + pos: -21.5,-63.5 parent: 2 - - uid: 43526 + - uid: 41888 components: - type: Transform - pos: 41.5,6.5 + pos: -21.5,-64.5 parent: 2 - - uid: 43527 + - uid: 41889 components: - type: Transform - pos: 42.5,6.5 + pos: -21.5,-65.5 parent: 2 - - uid: 44292 + - uid: 41890 components: - type: Transform - pos: -4.5,-58.5 + pos: -21.5,-66.5 parent: 2 - - uid: 44293 + - uid: 41891 components: - type: Transform - pos: -4.5,-59.5 + pos: -21.5,-67.5 parent: 2 - - uid: 44306 + - uid: 41892 components: - type: Transform - pos: -4.5,-60.5 + pos: -22.5,-67.5 parent: 2 - - uid: 44307 + - uid: 41893 components: - type: Transform - pos: -5.5,-60.5 + pos: -23.5,-67.5 parent: 2 - - uid: 44308 + - uid: 41894 components: - type: Transform - pos: -6.5,-60.5 + pos: -24.5,-67.5 parent: 2 - - uid: 44309 + - uid: 41895 components: - type: Transform - pos: -6.5,-61.5 + pos: -25.5,-67.5 parent: 2 - - uid: 44310 + - uid: 41896 components: - type: Transform - pos: -6.5,-62.5 + pos: -26.5,-67.5 parent: 2 - - uid: 44311 + - uid: 41897 components: - type: Transform - pos: -6.5,-63.5 + pos: -27.5,-67.5 parent: 2 - - uid: 44312 + - uid: 41898 components: - type: Transform - pos: -6.5,-64.5 + pos: -28.5,-67.5 parent: 2 - - uid: 44313 + - uid: 41899 components: - type: Transform - pos: -6.5,-65.5 + pos: -29.5,-67.5 parent: 2 - - uid: 44314 + - uid: 41900 components: - type: Transform - pos: -6.5,-66.5 + pos: -30.5,-67.5 parent: 2 - - uid: 44315 + - uid: 41901 components: - type: Transform - pos: -6.5,-67.5 + pos: -31.5,-67.5 parent: 2 - - uid: 44316 + - uid: 41902 components: - type: Transform - pos: -6.5,-68.5 + pos: -32.5,-67.5 parent: 2 - - uid: 45011 + - uid: 41903 components: - type: Transform - pos: -42.5,-44.5 + pos: -33.5,-67.5 parent: 2 - - uid: 45012 + - uid: 41904 components: - type: Transform - pos: -41.5,-44.5 + pos: -34.5,-67.5 parent: 2 - - uid: 45016 + - uid: 41905 components: - type: Transform - pos: -41.5,-43.5 + pos: -35.5,-67.5 parent: 2 - - uid: 45017 + - uid: 41906 components: - type: Transform - pos: -41.5,-42.5 + pos: -35.5,-66.5 parent: 2 - - uid: 45018 + - uid: 41912 components: - type: Transform - pos: -41.5,-41.5 + pos: -5.5,-73.5 parent: 2 - - uid: 45019 + - uid: 41913 components: - type: Transform - pos: -41.5,-40.5 + pos: -6.5,-73.5 parent: 2 - - uid: 45020 + - uid: 41915 components: - type: Transform - pos: -41.5,-39.5 + pos: -6.5,-72.5 parent: 2 - - uid: 45021 + - uid: 41916 components: - type: Transform - pos: -41.5,-38.5 + pos: -6.5,-71.5 parent: 2 - - uid: 45022 + - uid: 41917 components: - type: Transform - pos: -41.5,-37.5 + pos: -6.5,-70.5 parent: 2 - - uid: 45023 + - uid: 41918 components: - type: Transform - pos: -41.5,-36.5 + pos: -6.5,-69.5 parent: 2 - - uid: 45024 + - uid: 41919 components: - type: Transform - pos: -41.5,-35.5 + pos: -5.5,-69.5 parent: 2 - - uid: 47030 + - uid: 41920 components: - type: Transform - pos: 32.5,-24.5 + pos: -4.5,-69.5 parent: 2 - - uid: 47031 + - uid: 41923 components: - type: Transform - pos: 33.5,-24.5 + pos: -3.5,-69.5 parent: 2 - - uid: 47057 + - uid: 41928 components: - type: Transform - pos: -49.5,36.5 + pos: -3.5,-70.5 parent: 2 - - uid: 47092 + - uid: 41929 components: - type: Transform - pos: -39.5,28.5 + pos: -3.5,-71.5 parent: 2 - - uid: 47155 + - uid: 41930 components: - type: Transform - pos: -58.5,-15.5 + pos: -4.5,-71.5 parent: 2 - - uid: 47260 + - uid: 41934 components: - type: Transform - pos: -74.5,-21.5 + pos: -7.5,-69.5 parent: 2 - - uid: 47261 + - uid: 41935 components: - type: Transform - pos: -74.5,-20.5 + pos: -8.5,-69.5 parent: 2 - - uid: 47262 + - uid: 41936 components: - type: Transform - pos: -74.5,-19.5 + pos: -9.5,-69.5 parent: 2 - - uid: 47263 + - uid: 41937 components: - type: Transform - pos: -73.5,-19.5 + pos: -10.5,-69.5 parent: 2 - - uid: 47264 + - uid: 41938 components: - type: Transform - pos: -72.5,-19.5 + pos: -11.5,-69.5 parent: 2 - - uid: 47265 + - uid: 41940 components: - type: Transform - pos: -71.5,-19.5 + pos: -11.5,-68.5 parent: 2 - - uid: 47266 + - uid: 41941 components: - type: Transform - pos: -70.5,-19.5 + pos: -12.5,-68.5 parent: 2 - - uid: 47267 + - uid: 41983 components: - type: Transform - pos: -69.5,-19.5 + pos: -32.5,-70.5 parent: 2 - - uid: 47268 + - uid: 41994 components: - type: Transform - pos: -68.5,-19.5 + pos: -31.5,-70.5 parent: 2 - - uid: 47324 + - uid: 41995 components: - type: Transform - pos: -0.5,3.5 - parent: 32764 - - uid: 47325 + pos: -30.5,-70.5 + parent: 2 + - uid: 41996 components: - type: Transform - pos: 0.5,3.5 - parent: 32764 - - uid: 47326 + pos: -30.5,-71.5 + parent: 2 + - uid: 41997 components: - type: Transform - pos: 0.5,2.5 - parent: 32764 - - uid: 47327 + pos: -30.5,-72.5 + parent: 2 + - uid: 41998 components: - type: Transform - pos: 1.5,2.5 - parent: 32764 - - uid: 47380 + pos: -29.5,-72.5 + parent: 2 + - uid: 42010 components: - type: Transform - pos: 0.5,-0.5 - parent: 44868 - - uid: 47381 + pos: -28.5,-72.5 + parent: 2 + - uid: 42012 components: - type: Transform - pos: 0.5,-1.5 - parent: 44868 - - uid: 47382 + pos: -27.5,-72.5 + parent: 2 + - uid: 42023 components: - type: Transform - pos: 0.5,-2.5 - parent: 44868 - - uid: 47383 + pos: -26.5,-72.5 + parent: 2 + - uid: 42025 components: - type: Transform - pos: -0.5,-2.5 - parent: 44868 - - uid: 47384 + pos: -25.5,-72.5 + parent: 2 + - uid: 42033 components: - type: Transform - pos: 2.5,-0.5 - parent: 44868 - - uid: 47385 + pos: -24.5,-72.5 + parent: 2 + - uid: 42035 components: - type: Transform - pos: 2.5,-1.5 - parent: 44868 - - uid: 47386 + pos: -23.5,-72.5 + parent: 2 + - uid: 42036 components: - type: Transform - pos: 2.5,-2.5 - parent: 44868 - - uid: 47387 + pos: -23.5,-71.5 + parent: 2 + - uid: 42040 components: - type: Transform - pos: 1.5,-2.5 - parent: 44868 - - uid: 47496 + pos: -23.5,-70.5 + parent: 2 + - uid: 42041 components: - type: Transform - pos: 3.5,2.5 - parent: 56108 - - uid: 47497 + pos: -22.5,-70.5 + parent: 2 + - uid: 42053 components: - type: Transform - pos: 2.5,2.5 - parent: 56108 - - uid: 47498 + pos: -21.5,-70.5 + parent: 2 + - uid: 42058 components: - type: Transform - pos: 2.5,3.5 - parent: 56108 - - uid: 47563 + pos: -20.5,-70.5 + parent: 2 + - uid: 42067 components: - type: Transform - pos: 11.5,-49.5 + pos: -19.5,-70.5 parent: 2 - - uid: 47644 + - uid: 42106 components: - type: Transform - pos: 56.5,-32.5 + pos: -18.5,-70.5 parent: 2 - - uid: 47647 + - uid: 42114 components: - type: Transform - pos: 55.5,-28.5 + pos: -17.5,-70.5 parent: 2 - - uid: 47671 + - uid: 42122 components: - type: Transform - pos: 40.5,-9.5 + pos: -17.5,-69.5 parent: 2 - - uid: 47672 + - uid: 42124 components: - type: Transform - pos: 39.5,-9.5 + pos: -17.5,-68.5 parent: 2 - - uid: 47688 + - uid: 42139 components: - type: Transform - pos: 56.5,-40.5 + pos: -17.5,-67.5 parent: 2 - - uid: 47763 + - uid: 42140 components: - type: Transform - pos: 39.5,-19.5 + pos: -16.5,-67.5 parent: 2 - - uid: 47765 + - uid: 42141 components: - type: Transform - pos: 41.5,-19.5 + pos: -15.5,-67.5 parent: 2 -- proto: CableMVStack - entities: - - uid: 21049 + - uid: 42142 components: - type: Transform - pos: 36.494022,-18.367596 + pos: -14.5,-67.5 parent: 2 - - uid: 43340 + - uid: 42143 components: - type: Transform - pos: 50.540825,75.80521 + pos: -14.5,-66.5 parent: 2 - - uid: 52115 + - uid: 42144 components: - type: Transform - pos: 15.4619665,9.542518 + pos: -13.5,-66.5 parent: 2 -- proto: CableMVStack1 - entities: - - uid: 1842 + - uid: 42145 components: - type: Transform - pos: 36.97923,-30.440948 + pos: -12.5,-66.5 parent: 2 - - uid: 3862 + - uid: 42146 components: - type: Transform - pos: 23.419197,-58.755672 + pos: -11.5,-66.5 parent: 2 - - uid: 9719 + - uid: 42147 components: - type: Transform - pos: 22.41048,-59.491234 + pos: -11.5,-67.5 parent: 2 - - uid: 9820 + - uid: 42148 components: - type: Transform - pos: 36.617115,-25.667671 + pos: -32.5,-84.5 parent: 2 - - uid: 9821 + - uid: 42150 components: - type: Transform - pos: 31.57024,-25.44937 + pos: -32.5,-85.5 parent: 2 - - uid: 9825 + - uid: 42154 components: - type: Transform - pos: 38.537334,-24.493406 + pos: -31.5,-85.5 parent: 2 - - uid: 9827 + - uid: 42156 components: - type: Transform - pos: 41.063442,-26.637978 + pos: -30.5,-85.5 parent: 2 - - uid: 9831 + - uid: 42157 components: - type: Transform - pos: 54.279236,-59.706135 + pos: -29.5,-85.5 parent: 2 - - uid: 9832 + - uid: 42158 components: - type: Transform - pos: 53.013607,-58.674885 + pos: -28.5,-85.5 parent: 2 - - uid: 9833 + - uid: 42159 components: - type: Transform - pos: 52.52924,-59.56551 + pos: -27.5,-85.5 parent: 2 - - uid: 9834 + - uid: 42160 components: - type: Transform - pos: 52.91986,-59.39364 + pos: -26.5,-85.5 parent: 2 - - uid: 9835 + - uid: 42161 components: - type: Transform - pos: 53.482357,-58.15926 + pos: -25.5,-85.5 parent: 2 - - uid: 10972 + - uid: 42162 components: - type: Transform - pos: 27.74459,-60.332478 + pos: -24.5,-85.5 parent: 2 - - uid: 12214 + - uid: 42163 components: - type: Transform - pos: 44.32325,-26.60319 + pos: -23.5,-85.5 parent: 2 - - uid: 22335 + - uid: 42165 components: - type: Transform - pos: 34.182358,-33.2222 + pos: -23.5,-84.5 parent: 2 - - uid: 22336 + - uid: 42166 components: - type: Transform - pos: 42.32298,-33.675323 + pos: -22.5,-84.5 parent: 2 - - uid: 24365 + - uid: 42167 components: - type: Transform - pos: 21.931402,-62.348293 + pos: -21.5,-84.5 parent: 2 - - uid: 28441 + - uid: 42168 components: - type: Transform - pos: 38.682358,-31.1597 + pos: -20.5,-84.5 parent: 2 - - uid: 28460 + - uid: 42169 components: - type: Transform - pos: 35.932354,-30.894073 + pos: -19.5,-84.5 parent: 2 - - uid: 30481 + - uid: 42170 components: - type: Transform - pos: -94.48932,26.454062 + pos: -19.5,-83.5 parent: 2 - - uid: 33505 + - uid: 42171 components: - type: Transform - pos: 5.499396,-11.570922 - parent: 33049 - - uid: 33506 + pos: -19.5,-82.5 + parent: 2 + - uid: 42172 components: - type: Transform - pos: 4.5865064,-12.789672 - parent: 33049 - - uid: 33507 + pos: -19.5,-81.5 + parent: 2 + - uid: 42173 components: - type: Transform - pos: 5.936896,-10.602172 - parent: 33049 - - uid: 35029 + pos: -19.5,-80.5 + parent: 2 + - uid: 42174 components: - type: Transform - pos: -11.412076,16.136322 - parent: 34641 - - uid: 35030 + pos: -19.5,-79.5 + parent: 2 + - uid: 42175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.552701,16.245697 - parent: 34641 - - uid: 35031 + pos: -19.5,-78.5 + parent: 2 + - uid: 42176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.2819872,15.055053 - parent: 34641 - - uid: 45375 + pos: -19.5,-77.5 + parent: 2 + - uid: 42177 components: - type: Transform - pos: -1.4772129,1.3079655 - parent: 43176 - - uid: 45376 + pos: -19.5,-76.5 + parent: 2 + - uid: 42178 components: - type: Transform - pos: -0.9459629,-0.035784483 - parent: 43176 - - uid: 45377 + pos: -19.5,-75.5 + parent: 2 + - uid: 42179 components: - type: Transform - pos: 1.6477871,0.10484052 - parent: 43176 - - uid: 45378 + pos: -19.5,-74.5 + parent: 2 + - uid: 42180 components: - type: Transform - pos: -3.586588,1.4329655 - parent: 43176 - - uid: 45379 + pos: -19.5,-73.5 + parent: 2 + - uid: 42181 components: - type: Transform - pos: 3.585287,1.8235905 - parent: 43176 - - uid: 45380 + pos: -19.5,-72.5 + parent: 2 + - uid: 42182 components: - type: Transform - pos: 5.632162,1.1204655 - parent: 43176 - - uid: 45577 + pos: -20.5,-72.5 + parent: 2 + - uid: 42183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.308526,-3.488502 - parent: 45518 - - uid: 51171 + pos: -21.5,-72.5 + parent: 2 + - uid: 42184 components: - type: Transform - pos: 23.574612,-62.56292 + pos: -22.5,-72.5 parent: 2 - - uid: 51172 + - uid: 42192 components: - type: Transform - pos: 24.605862,-62.93792 + pos: -2.5,-70.5 parent: 2 -- proto: CableMVStack10 - entities: - - uid: 26033 + - uid: 42193 components: - type: Transform - pos: 39.046944,13.613185 + pos: -1.5,-70.5 parent: 2 - - uid: 35697 + - uid: 42194 components: - type: Transform - pos: 58.55101,-24.411997 + pos: -0.5,-70.5 parent: 2 - - uid: 43968 + - uid: 42195 components: - type: Transform - pos: -26.47073,4.7245026 + pos: 0.5,-70.5 parent: 2 - - uid: 45381 + - uid: 42196 components: - type: Transform - pos: 1.925353,-1.4877565 - parent: 43176 - - uid: 45382 + pos: 1.5,-70.5 + parent: 2 + - uid: 42197 components: - type: Transform - pos: 1.1634121,1.3392155 - parent: 43176 - - uid: 45578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.527276,-3.488502 - parent: 45518 - - uid: 53316 + pos: 2.5,-70.5 + parent: 2 + - uid: 42198 components: - type: Transform - pos: -11.306244,79.5473 - parent: 45711 -- proto: CableTerminal - entities: - - uid: 1197 + pos: 3.5,-70.5 + parent: 2 + - uid: 42199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,16.5 + pos: 4.5,-70.5 parent: 2 - - uid: 4041 + - uid: 42200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,15.5 + pos: 5.5,-70.5 parent: 2 - - uid: 5479 + - uid: 42201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,22.5 + pos: 6.5,-70.5 parent: 2 - - uid: 5561 + - uid: 42202 components: - type: Transform - pos: -57.5,-15.5 + pos: 7.5,-70.5 parent: 2 - - uid: 6188 + - uid: 42203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,15.5 + pos: 8.5,-70.5 parent: 2 - - uid: 6391 + - uid: 42204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-10.5 + pos: 9.5,-70.5 parent: 2 - - uid: 6751 + - uid: 42205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,18.5 + pos: 10.5,-70.5 parent: 2 - - uid: 7069 + - uid: 42206 components: - type: Transform - pos: -11.5,47.5 + pos: 11.5,-70.5 parent: 2 - - uid: 7448 + - uid: 42207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,75.5 + pos: 12.5,-70.5 parent: 2 - - uid: 7628 + - uid: 42208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-47.5 + pos: 13.5,-70.5 parent: 2 - - uid: 7924 + - uid: 42209 components: - type: Transform - pos: -24.5,-32.5 + pos: 14.5,-70.5 parent: 2 - - uid: 8265 + - uid: 42210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,18.5 + pos: 15.5,-70.5 parent: 2 - - uid: 8341 + - uid: 42211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,17.5 + pos: 16.5,-70.5 parent: 2 - - uid: 9379 + - uid: 42212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,17.5 + pos: 17.5,-70.5 parent: 2 - - uid: 9839 + - uid: 42213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-58.5 + pos: 18.5,-70.5 parent: 2 - - uid: 9847 + - uid: 42224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,66.5 + pos: 16.5,-65.5 parent: 2 - - uid: 9848 + - uid: 42225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,66.5 + pos: 16.5,-66.5 parent: 2 - - uid: 9849 + - uid: 42226 components: - type: Transform - pos: -73.5,2.5 + pos: 17.5,-66.5 parent: 2 - - uid: 9850 + - uid: 42227 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,7.5 + pos: 18.5,-66.5 parent: 2 - - uid: 9851 + - uid: 42228 components: - type: Transform - pos: -50.5,-64.5 + pos: 18.5,-67.5 parent: 2 - - uid: 10408 + - uid: 42229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,29.5 + pos: 18.5,-68.5 parent: 2 - - uid: 11228 + - uid: 42230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,16.5 + pos: 18.5,-69.5 parent: 2 - - uid: 16557 + - uid: 42299 components: - type: Transform - pos: -18.5,-11.5 + pos: -55.5,-21.5 parent: 2 - - uid: 17896 + - uid: 42318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,36.5 + pos: -55.5,-22.5 parent: 2 - - uid: 22983 + - uid: 42321 components: - type: Transform - pos: 48.5,-46.5 + pos: -55.5,-23.5 parent: 2 - - uid: 23648 + - uid: 42374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-64.5 + pos: -56.5,-23.5 parent: 2 - - uid: 26196 + - uid: 42375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,43.5 + pos: -57.5,-23.5 parent: 2 - - uid: 26197 + - uid: 42376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,44.5 + pos: -58.5,-23.5 parent: 2 - - uid: 26198 + - uid: 42377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,43.5 + pos: -59.5,-23.5 parent: 2 - - uid: 26230 + - uid: 42378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,44.5 + pos: -60.5,-23.5 parent: 2 - - uid: 29056 + - uid: 42379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,7.5 + pos: -61.5,-23.5 parent: 2 - - uid: 33508 + - uid: 42382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 33049 - - uid: 37281 + pos: -62.5,-23.5 + parent: 2 + - uid: 42384 components: - type: Transform - pos: 9.5,2.5 - parent: 36861 - - uid: 43059 + pos: -63.5,-23.5 + parent: 2 + - uid: 42385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,52.5 + pos: -64.5,-23.5 parent: 2 - - uid: 47877 + - uid: 42395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,25.5 - parent: 45711 - - uid: 51528 + pos: -65.5,-23.5 + parent: 2 + - uid: 42397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,21.5 + pos: -66.5,-23.5 parent: 2 - - uid: 51530 + - uid: 42398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,20.5 + pos: -66.5,-22.5 parent: 2 - - uid: 51610 + - uid: 42407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-72.5 + pos: -67.5,-22.5 parent: 2 - - uid: 52190 + - uid: 42418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-37.5 + pos: -67.5,-21.5 parent: 2 -- proto: Candle - entities: - - uid: 15306 + - uid: 42419 components: - type: Transform - pos: -31.670147,18.129068 + pos: -67.5,-20.5 parent: 2 - - uid: 15308 + - uid: 42420 components: - type: Transform - pos: -31.373272,17.97282 + pos: -67.5,-19.5 parent: 2 - - uid: 15309 + - uid: 42421 components: - type: Transform - pos: -31.654522,17.832195 + pos: -67.5,-18.5 parent: 2 - - uid: 15310 + - uid: 42422 components: - type: Transform - pos: -31.435772,17.613443 + pos: -67.5,-17.5 parent: 2 - - uid: 15311 + - uid: 42423 components: - type: Transform - pos: -31.670147,17.504068 + pos: -67.5,-16.5 parent: 2 - - uid: 15312 + - uid: 42424 components: - type: Transform - pos: -31.420147,17.300945 + pos: -68.5,-16.5 parent: 2 -- proto: CandleRedInfinite - entities: - - uid: 55285 + - uid: 42425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.4718,49.282288 - parent: 45711 - - uid: 55316 + pos: -69.5,-16.5 + parent: 2 + - uid: 42439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.50305,48.90735 - parent: 45711 - - uid: 55317 + pos: -32.5,-46.5 + parent: 2 + - uid: 42440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.768646,47.579163 - parent: 45711 - - uid: 55318 + pos: -31.5,-46.5 + parent: 2 + - uid: 42441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.37805,49.141663 - parent: 45711 - - uid: 55319 + pos: -31.5,-47.5 + parent: 2 + - uid: 42442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.75302,47.797913 - parent: 45711 - - uid: 55320 + pos: -31.5,-48.5 + parent: 2 + - uid: 42443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.4718,48.110413 - parent: 45711 -- proto: CandleRedSmall - entities: - - uid: 43620 + pos: -31.5,-49.5 + parent: 2 + - uid: 42444 components: - type: Transform - pos: -44.513824,52.244614 + pos: -31.5,-50.5 parent: 2 -- proto: CandleRedSmallInfinite - entities: - - uid: 54293 + - uid: 42445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.91989,34.117126 - parent: 45711 -- proto: CandleSmall - entities: - - uid: 43614 + pos: -30.5,-50.5 + parent: 2 + - uid: 42446 components: - type: Transform - pos: -45.240387,52.01024 + pos: -29.5,-50.5 parent: 2 - - uid: 43615 + - uid: 42447 components: - type: Transform - pos: -45.240387,51.54149 + pos: -28.5,-50.5 parent: 2 - - uid: 43616 + - uid: 42448 components: - type: Transform - pos: -45.240387,51.025864 + pos: -27.5,-50.5 parent: 2 - - uid: 43617 + - uid: 42449 components: - type: Transform - pos: -43.810696,51.0493 + pos: -26.5,-50.5 parent: 2 - - uid: 43618 + - uid: 42450 components: - type: Transform - pos: -43.8107,51.494614 + pos: -25.5,-50.5 parent: 2 - - uid: 43619 + - uid: 42457 components: - type: Transform - pos: -43.810696,52.057114 + pos: -25.5,-51.5 parent: 2 -- proto: CannabisSeeds - entities: - - uid: 9854 + - uid: 42458 components: - type: Transform - parent: 9853 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14194 + pos: -25.5,-52.5 + parent: 2 + - uid: 42460 components: - type: Transform - pos: 30.40197,-6.470322 + pos: -25.5,-53.5 parent: 2 - - uid: 29993 + - uid: 42461 components: - type: Transform - parent: 29981 - - type: Physics - canCollide: False -- proto: CapacitorStockPart - entities: - - uid: 380 + pos: -26.5,-53.5 + parent: 2 + - uid: 42462 components: - type: Transform - pos: 45.31875,13.686416 + pos: -26.5,-54.5 parent: 2 - - uid: 569 + - uid: 42463 components: - type: Transform - pos: 45.5375,13.405166 + pos: -26.5,-55.5 parent: 2 - - uid: 1975 + - uid: 42464 components: - type: Transform - pos: 14.236434,-17.287767 + pos: -25.5,-55.5 parent: 2 - - uid: 4896 + - uid: 42466 components: - type: Transform - pos: 45.615623,13.67079 + pos: -24.5,-55.5 parent: 2 - - uid: 14163 + - uid: 42467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.670593,28.876732 + pos: -23.5,-55.5 parent: 2 - - uid: 15401 + - uid: 42509 components: - type: Transform - pos: 14.289232,-17.287767 + pos: -23.5,-54.5 parent: 2 - - uid: 20181 + - uid: 42510 components: - type: Transform - pos: 36.67842,-18.867561 + pos: -23.5,-53.5 parent: 2 - - uid: 20927 + - uid: 42517 components: - type: Transform - pos: 45.81875,13.436415 + pos: -22.5,-53.5 parent: 2 - - uid: 22216 + - uid: 42518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.312077,-51.557663 + pos: -22.5,-52.5 parent: 2 - - uid: 22543 + - uid: 42531 components: - type: Transform - pos: 13.5244665,3.5268936 + pos: -22.5,-51.5 parent: 2 - - uid: 22545 + - uid: 42544 components: - type: Transform - pos: 13.368216,3.4487689 + pos: -22.5,-50.5 parent: 2 - - uid: 23136 + - uid: 42546 components: - type: Transform - pos: 13.5244665,3.5268936 + pos: -22.5,-49.5 parent: 2 - - uid: 25951 + - uid: 42548 components: - type: Transform - pos: 45.81875,13.436415 + pos: -22.5,-48.5 parent: 2 - - uid: 26015 + - uid: 42549 components: - type: Transform - pos: 13.508841,3.6362686 + pos: -22.5,-47.5 parent: 2 - - uid: 26016 + - uid: 42560 components: - type: Transform - pos: 13.508841,3.6362686 + pos: -22.5,-46.5 parent: 2 - - uid: 26018 + - uid: 42562 components: - type: Transform - pos: 13.352591,3.448769 + pos: -22.5,-45.5 parent: 2 - - uid: 26572 + - uid: 42580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.358093,28.939232 + pos: -23.5,-45.5 parent: 2 - - uid: 27033 + - uid: 42581 components: - type: Transform - pos: 13.336966,3.6206436 + pos: -23.5,-44.5 parent: 2 - - uid: 27039 + - uid: 42582 components: - type: Transform - pos: 13.305716,3.6675186 + pos: -23.5,-43.5 parent: 2 - - uid: 32425 + - uid: 42583 components: - type: Transform - pos: 45.303123,13.655166 + pos: -20.5,-45.5 parent: 2 - - uid: 36164 + - uid: 42584 components: - type: Transform - pos: 36.49092,-18.89881 + pos: -19.5,-45.5 parent: 2 - - uid: 36165 + - uid: 42595 components: - type: Transform - pos: 36.49092,-18.914434 + pos: -15.5,-14.5 parent: 2 - - uid: 36180 + - uid: 42598 components: - type: Transform - pos: 36.350292,-18.851936 + pos: -19.5,-44.5 parent: 2 - - uid: 42551 + - uid: 42599 components: - type: Transform - pos: 45.615623,13.67079 + pos: -19.5,-43.5 parent: 2 - - uid: 43140 + - uid: 42600 components: - type: Transform - pos: 45.5375,13.405166 + pos: -19.5,-42.5 parent: 2 - - uid: 43343 + - uid: 42601 components: - type: Transform - pos: 49.8377,75.44583 + pos: -19.5,-41.5 parent: 2 - - uid: 43344 + - uid: 42614 components: - type: Transform - pos: 49.8377,75.44583 + pos: -19.5,-40.5 parent: 2 - - uid: 43345 + - uid: 42616 components: - type: Transform - pos: 49.8377,75.44583 + pos: -18.5,-40.5 parent: 2 - - uid: 43346 + - uid: 42617 components: - type: Transform - pos: 49.8377,75.44583 + pos: -17.5,-40.5 parent: 2 - - uid: 43347 + - uid: 42618 components: - type: Transform - pos: 49.8377,75.44583 + pos: -16.5,-40.5 parent: 2 - - uid: 45321 + - uid: 42619 components: - type: Transform - pos: 14.250109,-17.293621 + pos: -15.5,-40.5 parent: 2 - - uid: 47736 + - uid: 42620 components: - type: Transform - pos: 36.303417,-18.961311 + pos: -14.5,-40.5 parent: 2 - - uid: 47770 + - uid: 42623 components: - type: Transform - pos: 57.30733,-38.514545 + pos: -14.5,-41.5 parent: 2 - - uid: 47771 + - uid: 42627 components: - type: Transform - pos: 57.588577,-38.327045 + pos: -14.5,-42.5 parent: 2 - - uid: 47772 + - uid: 42635 components: - type: Transform - pos: 57.729202,-38.483295 + pos: -14.5,-43.5 parent: 2 - - uid: 47878 + - uid: 42636 components: - type: Transform - pos: 25.603254,23.642792 - parent: 45711 - - uid: 47879 + pos: -14.5,-44.5 + parent: 2 + - uid: 42649 components: - type: Transform - pos: 25.394922,23.569876 - parent: 45711 - - uid: 47880 + pos: -13.5,-44.5 + parent: 2 + - uid: 42655 components: - type: Transform - pos: 23.342838,24.601126 - parent: 45711 - - uid: 47881 + pos: -12.5,-44.5 + parent: 2 + - uid: 42699 components: - type: Transform - pos: 37.541164,32.55561 - parent: 45711 - - uid: 51989 + pos: -11.5,-44.5 + parent: 2 + - uid: 42706 components: - type: Transform - pos: 14.250109,-17.293621 + pos: -18.5,-48.5 parent: 2 - - uid: 52120 + - uid: 42712 components: - type: Transform - pos: 13.649466,3.4487689 + pos: -18.5,-49.5 parent: 2 - - uid: 52121 + - uid: 42714 components: - type: Transform - pos: 13.461966,3.2925189 + pos: -18.5,-50.5 parent: 2 - - uid: 52122 + - uid: 42715 components: - type: Transform - pos: 13.586966,3.3862689 + pos: -17.5,-50.5 parent: 2 - - uid: 52123 + - uid: 42717 components: - type: Transform - pos: 13.4150915,3.5112686 + pos: -16.5,-50.5 parent: 2 - - uid: 53326 + - uid: 42719 components: - type: Transform - pos: -9.655304,69.384705 - parent: 45711 - - uid: 53327 + pos: -16.5,-49.5 + parent: 2 + - uid: 42720 components: - type: Transform - pos: -9.592773,69.65033 - parent: 45711 - - uid: 53328 + pos: -16.5,-48.5 + parent: 2 + - uid: 42721 components: - type: Transform - pos: -9.405304,69.36908 - parent: 45711 - - uid: 53329 + pos: -16.5,-47.5 + parent: 2 + - uid: 42722 components: - type: Transform - pos: -9.467804,69.384705 - parent: 45711 -- proto: CaptainIDCard - entities: - - uid: 1762 + pos: -15.5,-47.5 + parent: 2 + - uid: 42723 components: - type: Transform - pos: 3.4683518,-3.2873893 + pos: -15.5,-46.5 parent: 2 -- proto: CarbonDioxideCanister - entities: - - uid: 1010 + - uid: 42724 components: - type: Transform - pos: 56.5,16.5 + pos: -15.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 5702 + - uid: 42725 components: - type: Transform - pos: -41.5,-12.5 + pos: -15.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 32620 + - uid: 42726 components: - type: Transform - pos: 29.5,-32.5 + pos: -13.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 36157 + - uid: 42727 components: - type: Transform - pos: 63.5,-31.5 + pos: -12.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 47882 + - uid: 42729 components: - type: Transform - pos: -7.5,38.5 - parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 -- proto: CargoPDA - entities: - - uid: 35983 + pos: -11.5,-40.5 + parent: 2 + - uid: 42730 components: - type: Transform - parent: 35974 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 35991 + pos: -10.5,-40.5 + parent: 2 + - uid: 42731 components: - type: Transform - parent: 35974 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Carpet - entities: - - uid: 3 + pos: -9.5,-40.5 + parent: 2 + - uid: 42732 components: - type: Transform - pos: -35.5,-21.5 + pos: -8.5,-40.5 parent: 2 - - uid: 501 + - uid: 42733 components: - type: Transform - pos: -33.5,-5.5 + pos: -10.5,-39.5 parent: 2 - - uid: 898 + - uid: 42734 components: - type: Transform - pos: -34.5,-4.5 + pos: -10.5,-38.5 parent: 2 - - uid: 1156 + - uid: 42735 components: - type: Transform - pos: -34.5,-5.5 + pos: -10.5,-37.5 parent: 2 - - uid: 1667 + - uid: 42736 components: - type: Transform - pos: -34.5,-20.5 + pos: -11.5,-37.5 parent: 2 - - uid: 1687 + - uid: 42737 components: - type: Transform - pos: 59.5,-22.5 + pos: -12.5,-37.5 parent: 2 - - uid: 2393 + - uid: 42738 components: - type: Transform - pos: -35.5,-20.5 + pos: -13.5,-37.5 parent: 2 - - uid: 5545 + - uid: 42739 components: - type: Transform - pos: -32.5,-4.5 + pos: -7.5,-40.5 parent: 2 - - uid: 5549 + - uid: 42740 components: - type: Transform - pos: -33.5,-4.5 + pos: -6.5,-40.5 parent: 2 - - uid: 5555 + - uid: 42741 components: - type: Transform - pos: -32.5,-5.5 + pos: -6.5,-39.5 parent: 2 - - uid: 5556 + - uid: 42742 components: - type: Transform - pos: -34.5,-3.5 + pos: -11.5,-51.5 parent: 2 - - uid: 5557 + - uid: 42743 components: - type: Transform - pos: -33.5,-3.5 + pos: -10.5,-51.5 parent: 2 - - uid: 5558 + - uid: 42744 components: - type: Transform - pos: -32.5,-3.5 + pos: -9.5,-51.5 parent: 2 - - uid: 7828 + - uid: 42745 components: - type: Transform - pos: -35.5,-19.5 + pos: -8.5,-51.5 parent: 2 - - uid: 7830 + - uid: 42746 components: - type: Transform - pos: -34.5,-19.5 + pos: -7.5,-51.5 parent: 2 - - uid: 7870 + - uid: 42747 components: - type: Transform - pos: -36.5,-21.5 + pos: -6.5,-51.5 parent: 2 - - uid: 7883 + - uid: 42748 components: - type: Transform - pos: -36.5,-20.5 + pos: -5.5,-51.5 parent: 2 - - uid: 7886 + - uid: 42749 components: - type: Transform - pos: -36.5,-19.5 + pos: -4.5,-51.5 parent: 2 - - uid: 8051 + - uid: 42750 components: - type: Transform - pos: -34.5,-21.5 + pos: -4.5,-50.5 parent: 2 - - uid: 9890 + - uid: 42751 components: - type: Transform - pos: -93.5,-6.5 + pos: -4.5,-49.5 parent: 2 - - uid: 9891 + - uid: 42752 components: - type: Transform - pos: -92.5,-6.5 + pos: -4.5,-48.5 parent: 2 - - uid: 33509 + - uid: 42754 components: - type: Transform - pos: -5.5,19.5 - parent: 33049 - - uid: 33510 + pos: -4.5,-47.5 + parent: 2 + - uid: 42755 components: - type: Transform - pos: -4.5,19.5 - parent: 33049 - - uid: 36438 + pos: -4.5,-46.5 + parent: 2 + - uid: 42756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-82.5 + pos: -4.5,-45.5 parent: 2 - - uid: 36450 + - uid: 42757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-82.5 + pos: -4.5,-44.5 parent: 2 - - uid: 36453 + - uid: 42758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-82.5 + pos: -4.5,-43.5 parent: 2 - - uid: 36624 + - uid: 42759 components: - type: Transform - pos: 60.5,-22.5 + pos: -4.5,-42.5 parent: 2 - - uid: 37282 + - uid: 42760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 36861 - - uid: 37283 + pos: -4.5,-41.5 + parent: 2 + - uid: 42762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 36861 - - uid: 37284 + pos: -4.5,-40.5 + parent: 2 + - uid: 42763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 36861 - - uid: 37285 + pos: -5.5,-40.5 + parent: 2 + - uid: 42764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 36861 - - uid: 37286 + pos: -6.5,-27.5 + parent: 2 + - uid: 42765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 36861 - - uid: 44486 + pos: -6.5,-28.5 + parent: 2 + - uid: 42770 components: - type: Transform - pos: 59.5,-21.5 + pos: -6.5,-29.5 parent: 2 - - uid: 44487 + - uid: 42774 components: - type: Transform - pos: 59.5,-20.5 + pos: -5.5,-29.5 parent: 2 - - uid: 44631 + - uid: 42775 components: - type: Transform - pos: 60.5,-21.5 + pos: -4.5,-29.5 parent: 2 -- proto: CarpetBlack - entities: - - uid: 368 + - uid: 42776 components: - type: Transform - pos: 3.5,41.5 + pos: -3.5,-29.5 parent: 2 - - uid: 500 + - uid: 42777 components: - type: Transform - pos: -25.5,-13.5 + pos: -2.5,-29.5 parent: 2 - - uid: 704 + - uid: 42778 components: - type: Transform - pos: -30.5,-12.5 + pos: -1.5,-29.5 parent: 2 - - uid: 790 + - uid: 42779 components: - type: Transform - pos: -29.5,-12.5 + pos: -0.5,-29.5 parent: 2 - - uid: 846 + - uid: 42829 components: - type: Transform - pos: -25.5,-12.5 + pos: -0.5,-30.5 parent: 2 - - uid: 850 + - uid: 42830 components: - type: Transform - pos: -25.5,-11.5 + pos: -0.5,-31.5 parent: 2 - - uid: 1159 + - uid: 42831 components: - type: Transform - pos: -28.5,-13.5 + pos: -0.5,-32.5 parent: 2 - - uid: 1185 + - uid: 42832 components: - type: Transform - pos: -27.5,-10.5 + pos: -0.5,-33.5 parent: 2 - - uid: 1187 + - uid: 42835 components: - type: Transform - pos: -27.5,-11.5 + pos: -0.5,-34.5 parent: 2 - - uid: 1193 + - uid: 42836 components: - type: Transform - pos: -27.5,-12.5 + pos: -0.5,-35.5 parent: 2 - - uid: 1198 + - uid: 42837 components: - type: Transform - pos: -27.5,-13.5 + pos: -0.5,-36.5 parent: 2 - - uid: 1199 + - uid: 42840 components: - type: Transform - pos: -28.5,-12.5 + pos: -1.5,-36.5 parent: 2 - - uid: 1200 + - uid: 42841 components: - type: Transform - pos: -26.5,-10.5 + pos: -1.5,-37.5 parent: 2 - - uid: 1202 + - uid: 42842 components: - type: Transform - pos: -26.5,-11.5 + pos: -2.5,-37.5 parent: 2 - - uid: 1205 + - uid: 42843 components: - type: Transform - pos: -26.5,-12.5 + pos: -3.5,-37.5 parent: 2 - - uid: 1226 + - uid: 42844 components: - type: Transform - pos: -26.5,-13.5 + pos: -4.5,-37.5 parent: 2 - - uid: 1230 + - uid: 42845 components: - type: Transform - pos: -25.5,-10.5 + pos: -4.5,-38.5 parent: 2 - - uid: 1238 + - uid: 42846 components: - type: Transform - pos: -69.5,-6.5 + pos: -4.5,-39.5 parent: 2 - - uid: 1552 + - uid: 42847 components: - type: Transform - pos: -30.5,-10.5 + pos: 0.5,-36.5 parent: 2 - - uid: 1554 + - uid: 42848 components: - type: Transform - pos: -30.5,-13.5 + pos: 0.5,-37.5 parent: 2 - - uid: 1849 + - uid: 42849 components: - type: Transform - pos: -28.5,-10.5 + pos: 1.5,-37.5 parent: 2 - - uid: 1850 + - uid: 42850 components: - type: Transform - pos: -28.5,-11.5 + pos: 2.5,-37.5 parent: 2 - - uid: 1851 + - uid: 42851 components: - type: Transform - pos: -29.5,-13.5 + pos: 3.5,-37.5 parent: 2 - - uid: 1983 + - uid: 42852 components: - type: Transform - pos: -30.5,-11.5 + pos: 4.5,-37.5 parent: 2 - - uid: 1987 + - uid: 42853 components: - type: Transform - pos: -29.5,-11.5 + pos: 4.5,-38.5 parent: 2 - - uid: 2002 + - uid: 42854 components: - type: Transform - pos: -29.5,-10.5 + pos: 4.5,-39.5 parent: 2 - - uid: 7011 + - uid: 42855 components: - type: Transform - pos: -69.5,-7.5 + pos: 4.5,-40.5 parent: 2 - - uid: 7012 + - uid: 42856 components: - type: Transform - pos: -70.5,-7.5 + pos: 4.5,-41.5 parent: 2 - - uid: 7028 + - uid: 42857 components: - type: Transform - pos: 5.5,39.5 + pos: 4.5,-42.5 parent: 2 - - uid: 10094 + - uid: 42860 components: - type: Transform - pos: 3.5,39.5 + pos: 7.5,-33.5 parent: 2 - - uid: 10122 + - uid: 42861 components: - type: Transform - pos: 4.5,40.5 + pos: 6.5,-33.5 parent: 2 - - uid: 10307 + - uid: 42862 components: - type: Transform - pos: -70.5,-6.5 + pos: 5.5,-33.5 parent: 2 - - uid: 11318 + - uid: 42863 components: - type: Transform - pos: -18.5,45.5 + pos: 4.5,-33.5 parent: 2 - - uid: 11931 + - uid: 42864 components: - type: Transform - pos: 3.5,40.5 + pos: 4.5,-34.5 parent: 2 - - uid: 20023 + - uid: 42865 components: - type: Transform - pos: -17.5,-43.5 + pos: 4.5,-35.5 parent: 2 - - uid: 20098 + - uid: 42866 components: - type: Transform - pos: 4.5,39.5 + pos: 4.5,-36.5 parent: 2 - - uid: 20150 + - uid: 42867 components: - type: Transform - pos: -17.5,45.5 + pos: 5.5,-35.5 parent: 2 - - uid: 21645 + - uid: 42868 components: - type: Transform - pos: 4.5,41.5 + pos: -4.5,-52.5 parent: 2 - - uid: 21960 + - uid: 42869 components: - type: Transform - pos: 5.5,41.5 + pos: -3.5,-52.5 parent: 2 - - uid: 24985 + - uid: 42870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,42.5 + pos: -2.5,-52.5 parent: 2 - - uid: 25787 + - uid: 42871 components: - type: Transform - pos: -16.5,45.5 + pos: -1.5,-52.5 parent: 2 - - uid: 28331 + - uid: 42872 components: - type: Transform - pos: 5.5,40.5 + pos: -0.5,-52.5 parent: 2 - - uid: 33511 + - uid: 42873 components: - type: Transform - pos: -10.5,19.5 - parent: 33049 - - uid: 33512 + pos: 0.5,-52.5 + parent: 2 + - uid: 42874 components: - type: Transform - pos: -11.5,19.5 - parent: 33049 - - uid: 41105 + pos: 1.5,-52.5 + parent: 2 + - uid: 42875 components: - type: Transform - pos: -95.5,-7.5 + pos: 2.5,-52.5 parent: 2 - - uid: 47883 + - uid: 42878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,22.5 - parent: 45711 - - uid: 47884 + pos: 3.5,-52.5 + parent: 2 + - uid: 42879 components: - type: Transform - pos: 16.5,26.5 - parent: 45711 - - uid: 47885 + pos: 4.5,-52.5 + parent: 2 + - uid: 42880 components: - type: Transform - pos: 16.5,27.5 - parent: 45711 - - uid: 47886 + pos: 5.5,-52.5 + parent: 2 + - uid: 42881 components: - type: Transform - pos: 17.5,26.5 - parent: 45711 - - uid: 47887 + pos: 5.5,-51.5 + parent: 2 + - uid: 42882 components: - type: Transform - pos: 17.5,27.5 - parent: 45711 - - uid: 47888 + pos: 5.5,-50.5 + parent: 2 + - uid: 42883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,24.5 - parent: 45711 - - uid: 47889 + pos: 5.5,-49.5 + parent: 2 + - uid: 42884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,22.5 - parent: 45711 - - uid: 47890 + pos: 5.5,-48.5 + parent: 2 + - uid: 42885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 45711 - - uid: 47891 + pos: 5.5,-47.5 + parent: 2 + - uid: 42886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,26.5 - parent: 45711 - - uid: 47892 + pos: 5.5,-46.5 + parent: 2 + - uid: 42887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,23.5 - parent: 45711 - - uid: 47893 + pos: 5.5,-45.5 + parent: 2 + - uid: 42888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,22.5 - parent: 45711 - - uid: 51390 + pos: 5.5,-44.5 + parent: 2 + - uid: 42889 components: - type: Transform - pos: -17.5,-44.5 + pos: 5.5,-43.5 parent: 2 - - uid: 51391 + - uid: 42890 components: - type: Transform - pos: -17.5,-45.5 + pos: 4.5,-43.5 parent: 2 - - uid: 51392 + - uid: 42891 components: - type: Transform - pos: -17.5,-46.5 + pos: 2.5,-51.5 parent: 2 - - uid: 51393 + - uid: 42892 components: - type: Transform - pos: -17.5,-47.5 + pos: 2.5,-50.5 parent: 2 - - uid: 51394 + - uid: 42893 components: - type: Transform - pos: -16.5,-43.5 + pos: 3.5,-48.5 parent: 2 - - uid: 51395 + - uid: 42894 components: - type: Transform - pos: -16.5,-44.5 + pos: 2.5,-48.5 parent: 2 - - uid: 51396 + - uid: 42895 components: - type: Transform - pos: -16.5,-45.5 + pos: 1.5,-48.5 parent: 2 - - uid: 51397 + - uid: 42897 components: - type: Transform - pos: -16.5,-46.5 + pos: 1.5,-49.5 parent: 2 - - uid: 51398 + - uid: 42898 components: - type: Transform - pos: -16.5,-47.5 + pos: 1.5,-50.5 parent: 2 -- proto: CarpetBlue - entities: - - uid: 171 + - uid: 42899 components: - type: Transform - pos: 4.5,-7.5 + pos: -3.5,-43.5 parent: 2 - - uid: 807 + - uid: 42900 components: - type: Transform - pos: 2.5,-7.5 + pos: -2.5,-43.5 parent: 2 - - uid: 1894 + - uid: 42901 components: - type: Transform - pos: 1.5,-7.5 + pos: -1.5,-43.5 parent: 2 - - uid: 4545 + - uid: 42902 components: - type: Transform - pos: 3.5,-7.5 + pos: -0.5,-43.5 parent: 2 - - uid: 37287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,2.5 - parent: 36861 - - uid: 37288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,1.5 - parent: 36861 - - uid: 41772 + - uid: 42903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-11.5 + pos: 0.5,-43.5 parent: 2 - - uid: 42017 + - uid: 42904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-11.5 + pos: 1.5,-43.5 parent: 2 - - uid: 43112 + - uid: 42905 components: - type: Transform - pos: -17.5,-8.5 + pos: 2.5,-43.5 parent: 2 - - uid: 43113 + - uid: 42906 components: - type: Transform - pos: -17.5,-7.5 + pos: 3.5,-43.5 parent: 2 - - uid: 43114 + - uid: 42907 components: - type: Transform - pos: -16.5,-7.5 + pos: 7.5,-56.5 parent: 2 - - uid: 43115 + - uid: 42908 components: - type: Transform - pos: -18.5,-7.5 + pos: 7.5,-57.5 parent: 2 - - uid: 43116 + - uid: 42909 components: - type: Transform - pos: -18.5,-8.5 + pos: 7.5,-58.5 parent: 2 - - uid: 43117 + - uid: 42910 components: - type: Transform - pos: -16.5,-8.5 + pos: 8.5,-58.5 parent: 2 - - uid: 43118 + - uid: 42911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-7.5 + pos: 9.5,-58.5 parent: 2 -- proto: CarpetChapel - entities: - - uid: 9929 + - uid: 42912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,17.5 + pos: 9.5,-57.5 parent: 2 - - uid: 9930 + - uid: 42923 components: - type: Transform - pos: -38.5,16.5 + pos: 9.5,-56.5 parent: 2 - - uid: 9931 + - uid: 42924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,16.5 + pos: 9.5,-55.5 parent: 2 - - uid: 9932 + - uid: 42947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,17.5 + pos: 9.5,-54.5 parent: 2 - - uid: 9933 + - uid: 42967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,16.5 + pos: 9.5,-53.5 parent: 2 - - uid: 9934 + - uid: 42993 components: - type: Transform - pos: -33.5,16.5 + pos: 9.5,-52.5 parent: 2 - - uid: 9935 + - uid: 42998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,17.5 + pos: 9.5,-51.5 parent: 2 - - uid: 9936 + - uid: 43007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,17.5 + pos: 9.5,-50.5 parent: 2 - - uid: 9937 + - uid: 43011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,19.5 + pos: 9.5,-49.5 parent: 2 - - uid: 9938 + - uid: 43017 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,19.5 + pos: 9.5,-48.5 parent: 2 - - uid: 9939 + - uid: 43018 components: - type: Transform - pos: -38.5,18.5 + pos: 9.5,-47.5 parent: 2 - - uid: 9940 + - uid: 43019 components: - type: Transform - pos: -33.5,18.5 + pos: 9.5,-46.5 parent: 2 - - uid: 9941 + - uid: 43020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,19.5 + pos: 8.5,-46.5 parent: 2 - - uid: 9942 + - uid: 43024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,18.5 + pos: 7.5,-46.5 parent: 2 - - uid: 9943 + - uid: 43025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,19.5 + pos: 6.5,-46.5 parent: 2 - - uid: 9944 + - uid: 43026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,18.5 + pos: 10.5,-49.5 parent: 2 -- proto: CarpetCyan - entities: - - uid: 3468 + - uid: 43027 components: - type: Transform - pos: 13.5,15.5 + pos: 14.5,-42.5 parent: 2 - - uid: 3469 + - uid: 43028 components: - type: Transform - pos: 13.5,17.5 + pos: 14.5,-43.5 parent: 2 - - uid: 3470 + - uid: 43044 components: - type: Transform - pos: 14.5,15.5 + pos: 13.5,-43.5 parent: 2 - - uid: 3471 + - uid: 43076 components: - type: Transform - pos: 13.5,16.5 + pos: 13.5,-44.5 parent: 2 - - uid: 3490 + - uid: 43077 components: - type: Transform - pos: 15.5,16.5 + pos: 13.5,-45.5 parent: 2 - - uid: 4097 + - uid: 43078 components: - type: Transform - pos: 15.5,15.5 + pos: 13.5,-46.5 parent: 2 - - uid: 4104 + - uid: 43082 components: - type: Transform - pos: 15.5,17.5 + pos: 12.5,-46.5 parent: 2 - - uid: 4105 + - uid: 43083 components: - type: Transform - pos: 14.5,17.5 + pos: 11.5,-46.5 parent: 2 - - uid: 4215 + - uid: 43086 components: - type: Transform - pos: 14.5,16.5 + pos: 10.5,-46.5 parent: 2 -- proto: CarpetGreen - entities: - - uid: 863 + - uid: 43088 components: - type: Transform - pos: -5.5,47.5 + pos: 9.5,-45.5 parent: 2 - - uid: 2359 + - uid: 43089 components: - type: Transform - pos: -7.5,46.5 + pos: 9.5,-44.5 parent: 2 - - uid: 3059 + - uid: 43090 components: - type: Transform - pos: -7.5,47.5 + pos: 9.5,-43.5 parent: 2 - - uid: 4911 + - uid: 43091 components: - type: Transform - pos: -44.5,1.5 + pos: 9.5,-42.5 parent: 2 - - uid: 4912 + - uid: 43141 components: - type: Transform - pos: -43.5,1.5 + pos: 10.5,-42.5 parent: 2 - - uid: 4913 + - uid: 43178 components: - type: Transform - pos: -42.5,1.5 + pos: 11.5,-42.5 parent: 2 - - uid: 6780 + - uid: 43367 components: - type: Transform - pos: -43.5,0.5 + pos: -22.5,-55.5 parent: 2 - - uid: 6782 + - uid: 43368 components: - type: Transform - pos: -42.5,-0.5 + pos: -21.5,-55.5 parent: 2 - - uid: 6788 + - uid: 43369 components: - type: Transform - pos: -43.5,-0.5 + pos: -20.5,-55.5 parent: 2 - - uid: 6789 + - uid: 43370 components: - type: Transform - pos: -43.5,-1.5 + pos: -19.5,-55.5 parent: 2 - - uid: 6790 + - uid: 43384 components: - type: Transform - pos: -42.5,-1.5 + pos: -18.5,-55.5 parent: 2 - - uid: 6796 + - uid: 43398 components: - type: Transform - pos: -44.5,0.5 + pos: -17.5,-55.5 parent: 2 - - uid: 6845 + - uid: 43419 components: - type: Transform - pos: -44.5,-0.5 + pos: -16.5,-55.5 parent: 2 - - uid: 6885 + - uid: 43430 components: - type: Transform - pos: -44.5,-1.5 + pos: -15.5,-55.5 parent: 2 - - uid: 9046 + - uid: 43431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-72.5 + pos: -14.5,-55.5 parent: 2 - - uid: 9964 + - uid: 43432 components: - type: Transform - pos: -28.5,-53.5 + pos: -13.5,-55.5 parent: 2 - - uid: 9965 + - uid: 43433 components: - type: Transform - pos: -29.5,-53.5 + pos: -12.5,-55.5 parent: 2 - - uid: 9966 + - uid: 43434 components: - type: Transform - pos: -29.5,-54.5 + pos: -12.5,-56.5 parent: 2 - - uid: 9967 + - uid: 43435 components: - type: Transform - pos: -28.5,-54.5 + pos: -11.5,-56.5 parent: 2 - - uid: 9969 + - uid: 43441 components: - type: Transform - pos: -94.5,-10.5 + pos: -10.5,-56.5 parent: 2 - - uid: 9970 + - uid: 43442 components: - type: Transform - pos: -94.5,-9.5 + pos: -10.5,-55.5 parent: 2 - - uid: 9974 + - uid: 43443 components: - type: Transform - pos: -13.5,18.5 + pos: -10.5,-54.5 parent: 2 - - uid: 11631 + - uid: 43444 components: - type: Transform - pos: -13.5,17.5 + pos: -9.5,-54.5 parent: 2 - - uid: 11777 + - uid: 43453 components: - type: Transform - pos: -14.5,19.5 + pos: -9.5,-53.5 parent: 2 - - uid: 19609 + - uid: 43454 components: - type: Transform - pos: -15.5,17.5 + pos: -9.5,-52.5 parent: 2 - - uid: 20860 + - uid: 43513 components: - type: Transform - pos: -5.5,46.5 + pos: 29.5,7.5 parent: 2 - - uid: 22631 + - uid: 43514 components: - type: Transform - pos: -14.5,18.5 + pos: 29.5,6.5 parent: 2 - - uid: 24349 + - uid: 43515 components: - type: Transform - pos: -42.5,0.5 + pos: 30.5,6.5 parent: 2 - - uid: 25934 + - uid: 43516 components: - type: Transform - pos: -13.5,19.5 + pos: 31.5,6.5 parent: 2 - - uid: 26643 + - uid: 43517 components: - type: Transform - pos: -6.5,46.5 + pos: 32.5,6.5 parent: 2 - - uid: 26955 + - uid: 43518 components: - type: Transform - pos: -14.5,17.5 + pos: 33.5,6.5 parent: 2 - - uid: 27553 + - uid: 43519 components: - type: Transform - pos: -6.5,47.5 + pos: 34.5,6.5 parent: 2 - - uid: 33513 - components: - - type: Transform - pos: -2.5,19.5 - parent: 33049 - - uid: 33514 + - uid: 43520 components: - type: Transform - pos: -1.5,19.5 - parent: 33049 - - uid: 37289 + pos: 35.5,6.5 + parent: 2 + - uid: 43521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,5.5 - parent: 36861 - - uid: 37290 + pos: 36.5,6.5 + parent: 2 + - uid: 43522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,4.5 - parent: 36861 - - uid: 41124 + pos: 37.5,6.5 + parent: 2 + - uid: 43523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-71.5 + pos: 38.5,6.5 parent: 2 - - uid: 41128 + - uid: 43524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-70.5 + pos: 39.5,6.5 parent: 2 - - uid: 41129 + - uid: 43525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-71.5 + pos: 40.5,6.5 parent: 2 - - uid: 41130 + - uid: 43526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-72.5 + pos: 41.5,6.5 parent: 2 - - uid: 41139 + - uid: 43527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-70.5 + pos: 42.5,6.5 parent: 2 - - uid: 41142 + - uid: 44292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-70.5 + pos: -4.5,-58.5 parent: 2 - - uid: 41143 + - uid: 44293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-70.5 + pos: -4.5,-59.5 parent: 2 - - uid: 41144 + - uid: 44306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-70.5 + pos: -4.5,-60.5 parent: 2 - - uid: 51050 + - uid: 44307 components: - type: Transform - pos: -15.5,18.5 + pos: -5.5,-60.5 parent: 2 - - uid: 51681 + - uid: 44308 components: - type: Transform - pos: -15.5,19.5 + pos: -6.5,-60.5 parent: 2 - - uid: 53523 + - uid: 44309 components: - type: Transform - pos: -13.5,58.5 - parent: 45711 - - uid: 53524 + pos: -6.5,-61.5 + parent: 2 + - uid: 44310 components: - type: Transform - pos: -13.5,57.5 - parent: 45711 - - uid: 53525 + pos: -6.5,-62.5 + parent: 2 + - uid: 44311 components: - type: Transform - pos: -13.5,56.5 - parent: 45711 - - uid: 53526 + pos: -6.5,-63.5 + parent: 2 + - uid: 44312 components: - type: Transform - pos: -13.5,55.5 - parent: 45711 - - uid: 53527 + pos: -6.5,-64.5 + parent: 2 + - uid: 44313 components: - type: Transform - pos: -12.5,58.5 - parent: 45711 - - uid: 53528 + pos: -6.5,-65.5 + parent: 2 + - uid: 44314 components: - type: Transform - pos: -12.5,57.5 - parent: 45711 - - uid: 53529 + pos: -6.5,-66.5 + parent: 2 + - uid: 44315 components: - type: Transform - pos: -12.5,56.5 - parent: 45711 - - uid: 53530 + pos: -6.5,-67.5 + parent: 2 + - uid: 44316 components: - type: Transform - pos: -12.5,55.5 - parent: 45711 - - uid: 53531 + pos: -6.5,-68.5 + parent: 2 + - uid: 45011 components: - type: Transform - pos: -11.5,58.5 - parent: 45711 - - uid: 53532 + pos: -42.5,-44.5 + parent: 2 + - uid: 45012 components: - type: Transform - pos: -11.5,57.5 - parent: 45711 - - uid: 53533 + pos: -41.5,-44.5 + parent: 2 + - uid: 45016 components: - type: Transform - pos: -11.5,56.5 - parent: 45711 - - uid: 53534 + pos: -41.5,-43.5 + parent: 2 + - uid: 45017 components: - type: Transform - pos: -11.5,55.5 - parent: 45711 -- proto: CarpetOrange - entities: - - uid: 9981 + pos: -41.5,-42.5 + parent: 2 + - uid: 45018 components: - type: Transform - pos: 64.5,7.5 + pos: -41.5,-41.5 parent: 2 - - uid: 9982 + - uid: 45019 components: - type: Transform - pos: 64.5,9.5 + pos: -41.5,-40.5 parent: 2 - - uid: 9984 + - uid: 45020 components: - type: Transform - pos: 63.5,7.5 + pos: -41.5,-39.5 parent: 2 - - uid: 9986 + - uid: 45021 components: - type: Transform - pos: 59.5,6.5 + pos: -41.5,-38.5 parent: 2 - - uid: 9987 + - uid: 45022 components: - type: Transform - pos: 57.5,6.5 + pos: -41.5,-37.5 parent: 2 - - uid: 9988 + - uid: 45023 components: - type: Transform - pos: 63.5,9.5 + pos: -41.5,-36.5 parent: 2 - - uid: 9989 + - uid: 45024 components: - type: Transform - pos: 58.5,6.5 + pos: -41.5,-35.5 parent: 2 - - uid: 9990 + - uid: 47030 components: - type: Transform - pos: 63.5,8.5 + pos: 32.5,-24.5 parent: 2 - - uid: 9992 + - uid: 47031 components: - type: Transform - pos: 64.5,8.5 + pos: 33.5,-24.5 parent: 2 - - uid: 9993 + - uid: 47057 components: - type: Transform - pos: -5.5,-3.5 + pos: -49.5,36.5 parent: 2 - - uid: 9994 + - uid: 47092 components: - type: Transform - pos: -5.5,-4.5 + pos: -39.5,28.5 parent: 2 - - uid: 9995 + - uid: 47155 components: - type: Transform - pos: -5.5,-5.5 + pos: -58.5,-15.5 parent: 2 - - uid: 9996 + - uid: 47260 components: - type: Transform - pos: -4.5,-3.5 + pos: -74.5,-21.5 parent: 2 - - uid: 9997 + - uid: 47261 components: - type: Transform - pos: -4.5,-4.5 + pos: -74.5,-20.5 parent: 2 - - uid: 9998 + - uid: 47262 components: - type: Transform - pos: -4.5,-5.5 + pos: -74.5,-19.5 parent: 2 - - uid: 9999 + - uid: 47263 components: - type: Transform - pos: -5.5,-2.5 + pos: -73.5,-19.5 parent: 2 - - uid: 10000 + - uid: 47264 components: - type: Transform - pos: -4.5,-2.5 + pos: -72.5,-19.5 parent: 2 - - uid: 10001 + - uid: 47265 components: - type: Transform - pos: -3.5,-5.5 + pos: -71.5,-19.5 parent: 2 - - uid: 10002 + - uid: 47266 components: - type: Transform - pos: -3.5,-4.5 + pos: -70.5,-19.5 parent: 2 - - uid: 10003 + - uid: 47267 components: - type: Transform - pos: -3.5,-3.5 + pos: -69.5,-19.5 parent: 2 - - uid: 10004 + - uid: 47268 components: - type: Transform - pos: -5.5,-6.5 + pos: -68.5,-19.5 parent: 2 - - uid: 10005 + - uid: 47324 components: - type: Transform - pos: -4.5,-6.5 - parent: 2 - - uid: 11563 + pos: -0.5,3.5 + parent: 32764 + - uid: 47325 components: - type: Transform - pos: -16.5,16.5 - parent: 2 - - uid: 12988 + pos: 0.5,3.5 + parent: 32764 + - uid: 47326 components: - type: Transform - pos: -18.5,16.5 - parent: 2 - - uid: 13387 + pos: 0.5,2.5 + parent: 32764 + - uid: 47327 components: - type: Transform - pos: -17.5,16.5 - parent: 2 - - uid: 13785 + pos: 1.5,2.5 + parent: 32764 + - uid: 47380 components: - type: Transform - pos: -16.5,15.5 - parent: 2 - - uid: 13786 + pos: 0.5,-0.5 + parent: 44868 + - uid: 47381 components: - type: Transform - pos: -18.5,15.5 - parent: 2 - - uid: 25350 + pos: 0.5,-1.5 + parent: 44868 + - uid: 47382 components: - type: Transform - pos: -17.5,15.5 - parent: 2 - - uid: 33515 + pos: 0.5,-2.5 + parent: 44868 + - uid: 47383 components: - type: Transform - pos: -8.5,19.5 - parent: 33049 - - uid: 33516 + pos: -0.5,-2.5 + parent: 44868 + - uid: 47384 components: - type: Transform - pos: -7.5,19.5 - parent: 33049 - - uid: 36435 + pos: 2.5,-0.5 + parent: 44868 + - uid: 47385 components: - type: Transform - pos: -22.5,-92.5 - parent: 2 - - uid: 36437 + pos: 2.5,-1.5 + parent: 44868 + - uid: 47386 components: - type: Transform - pos: -22.5,-93.5 - parent: 2 - - uid: 37291 + pos: 2.5,-2.5 + parent: 44868 + - uid: 47387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 36861 - - uid: 37292 + pos: 1.5,-2.5 + parent: 44868 + - uid: 47496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,7.5 - parent: 36861 - - uid: 45276 + pos: 3.5,2.5 + parent: 56108 + - uid: 47497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,7.5 - parent: 2 - - uid: 45277 + pos: 2.5,2.5 + parent: 56108 + - uid: 47498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,7.5 - parent: 2 - - uid: 45278 + pos: 2.5,3.5 + parent: 56108 + - uid: 47563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,7.5 + pos: 11.5,-49.5 parent: 2 -- proto: CarpetPink - entities: - - uid: 1242 + - uid: 47644 components: - type: Transform - pos: -12.5,-33.5 + pos: 56.5,-32.5 parent: 2 - - uid: 2470 + - uid: 47647 components: - type: Transform - pos: -17.5,68.5 + pos: 55.5,-28.5 parent: 2 - - uid: 11470 + - uid: 47671 components: - type: Transform - pos: -19.5,69.5 + pos: 40.5,-9.5 parent: 2 - - uid: 11473 + - uid: 47672 components: - type: Transform - pos: -18.5,69.5 + pos: 39.5,-9.5 parent: 2 - - uid: 11513 + - uid: 47688 components: - type: Transform - pos: -17.5,69.5 + pos: 56.5,-40.5 parent: 2 - - uid: 15896 + - uid: 47763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,68.5 + pos: 39.5,-19.5 parent: 2 - - uid: 19576 + - uid: 47765 components: - type: Transform - pos: -10.5,-32.5 + pos: 41.5,-19.5 parent: 2 - - uid: 20302 + - uid: 47815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,19.5 + pos: 86.5,30.5 parent: 2 - - uid: 20773 + - uid: 47817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,18.5 + pos: 71.5,42.5 parent: 2 - - uid: 20918 + - uid: 47819 components: - type: Transform - pos: -11.5,-32.5 + pos: 71.5,43.5 parent: 2 - - uid: 21005 + - uid: 47820 components: - type: Transform - pos: -10.5,-33.5 + pos: 71.5,44.5 parent: 2 - - uid: 21268 + - uid: 47821 components: - type: Transform - pos: -25.5,18.5 + pos: 71.5,45.5 parent: 2 - - uid: 21666 + - uid: 47830 components: - type: Transform - pos: -11.5,-33.5 + pos: 71.5,46.5 parent: 2 - - uid: 25328 + - uid: 47831 components: - type: Transform - pos: -24.5,17.5 + pos: 72.5,46.5 parent: 2 - - uid: 25378 + - uid: 47832 components: - type: Transform - pos: -25.5,17.5 + pos: 73.5,46.5 parent: 2 - - uid: 25455 + - uid: 47833 components: - type: Transform - pos: -12.5,-32.5 + pos: 74.5,46.5 parent: 2 - - uid: 36439 + - uid: 47834 components: - type: Transform - pos: -20.5,-94.5 + pos: 75.5,46.5 parent: 2 - - uid: 36440 + - uid: 47835 components: - type: Transform - pos: -20.5,-93.5 + pos: 83.5,46.5 parent: 2 - - uid: 42063 + - uid: 47836 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,19.5 + pos: 84.5,46.5 parent: 2 - - uid: 42615 + - uid: 47837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,68.5 + pos: 85.5,46.5 parent: 2 -- proto: CarpetPurple - entities: - - uid: 1607 + - uid: 47838 components: - type: Transform - pos: 28.5,-25.5 + pos: 86.5,46.5 parent: 2 - - uid: 2010 + - uid: 47839 components: - type: Transform - pos: 27.5,-27.5 + pos: 87.5,46.5 parent: 2 - - uid: 3924 + - uid: 47840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,25.5 + pos: 87.5,45.5 parent: 2 - - uid: 6941 + - uid: 47841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,25.5 + pos: 87.5,44.5 parent: 2 - - uid: 6942 + - uid: 47842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,25.5 + pos: 87.5,43.5 parent: 2 - - uid: 10017 + - uid: 47843 components: - type: Transform - pos: 24.5,-26.5 + pos: 87.5,42.5 parent: 2 - - uid: 10018 + - uid: 47844 components: - type: Transform - pos: -26.5,12.5 + pos: 87.5,34.5 parent: 2 - - uid: 10019 + - uid: 47845 components: - type: Transform - pos: -26.5,14.5 + pos: 87.5,33.5 parent: 2 - - uid: 10020 + - uid: 47846 components: - type: Transform - pos: -25.5,14.5 + pos: 87.5,32.5 parent: 2 - - uid: 10021 + - uid: 47847 components: - type: Transform - pos: -25.5,13.5 + pos: 87.5,31.5 parent: 2 - - uid: 10022 + - uid: 47848 components: - type: Transform - pos: -26.5,13.5 + pos: 87.5,30.5 parent: 2 - - uid: 10023 + - uid: 47849 components: - type: Transform - pos: -25.5,15.5 + pos: 85.5,30.5 parent: 2 - - uid: 10024 + - uid: 47850 components: - type: Transform - pos: -25.5,12.5 + pos: 84.5,30.5 parent: 2 - - uid: 10025 + - uid: 47851 components: - type: Transform - pos: -26.5,15.5 + pos: 83.5,30.5 parent: 2 - - uid: 10026 + - uid: 47853 components: - type: Transform - pos: -27.5,13.5 + pos: 75.5,30.5 parent: 2 - - uid: 10027 + - uid: 47854 components: - type: Transform - pos: -27.5,14.5 + pos: 74.5,30.5 parent: 2 - - uid: 10028 + - uid: 47855 components: - type: Transform - pos: -27.5,15.5 + pos: 73.5,30.5 parent: 2 - - uid: 10029 + - uid: 47856 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,12.5 + pos: 72.5,30.5 parent: 2 - - uid: 12045 + - uid: 47857 components: - type: Transform - pos: 26.5,-25.5 + pos: 71.5,30.5 parent: 2 - - uid: 14128 + - uid: 47858 components: - type: Transform - pos: 25.5,-27.5 + pos: 71.5,31.5 parent: 2 - - uid: 14433 + - uid: 47859 components: - type: Transform - pos: 24.5,-25.5 + pos: 71.5,32.5 parent: 2 - - uid: 20178 + - uid: 47860 components: - type: Transform - pos: 27.5,-25.5 + pos: 71.5,33.5 parent: 2 - - uid: 22037 + - uid: 47861 components: - type: Transform - pos: 25.5,-26.5 + pos: 71.5,34.5 parent: 2 - - uid: 22387 + - uid: 47867 components: - type: Transform - pos: 24.5,-27.5 + pos: 65.5,43.5 parent: 2 - - uid: 24991 + - uid: 47875 components: - type: Transform - pos: 28.5,-26.5 + pos: 66.5,42.5 parent: 2 - - uid: 26490 + - uid: 48389 components: - type: Transform - pos: 27.5,-26.5 + pos: 67.5,42.5 parent: 2 - - uid: 32953 + - uid: 48390 components: - type: Transform - pos: 25.5,-25.5 + pos: 68.5,42.5 parent: 2 - - uid: 37293 + - uid: 48391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 36861 - - uid: 37294 + pos: 69.5,42.5 + parent: 2 + - uid: 48392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-4.5 - parent: 36861 - - uid: 47573 + pos: 70.5,42.5 + parent: 2 + - uid: 48394 components: - type: Transform - pos: 26.5,-26.5 + pos: 76.5,46.5 parent: 2 - - uid: 47574 + - uid: 48395 components: - type: Transform - pos: 26.5,-27.5 + pos: 66.5,43.5 parent: 2 - - uid: 47583 + - uid: 48408 components: - type: Transform - pos: 28.5,-27.5 + pos: 87.5,40.5 parent: 2 -- proto: CarpetSBlue - entities: - - uid: 712 + - uid: 48410 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 + pos: 77.5,46.5 parent: 2 - - uid: 727 + - uid: 48411 components: - type: Transform - pos: -40.5,0.5 + pos: 78.5,46.5 parent: 2 - - uid: 748 + - uid: 48412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-3.5 + pos: 79.5,46.5 parent: 2 - - uid: 824 + - uid: 48413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 + pos: 80.5,46.5 parent: 2 - - uid: 865 + - uid: 48414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 + pos: 87.5,39.5 parent: 2 - - uid: 888 + - uid: 48415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-2.5 + pos: 87.5,38.5 parent: 2 - - uid: 1407 + - uid: 48416 components: - type: Transform - pos: -19.5,-80.5 + pos: 87.5,37.5 parent: 2 - - uid: 1848 + - uid: 48417 components: - type: Transform - pos: -40.5,2.5 + pos: 87.5,36.5 parent: 2 - - uid: 1853 + - uid: 48418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 + pos: 87.5,35.5 parent: 2 - - uid: 3065 + - uid: 48419 components: - type: Transform - pos: -14.5,-45.5 + pos: 82.5,30.5 parent: 2 - - uid: 3978 + - uid: 48420 components: - type: Transform - pos: -17.5,-81.5 + pos: 81.5,30.5 parent: 2 - - uid: 4874 + - uid: 48421 components: - type: Transform - pos: -39.5,-0.5 + pos: 80.5,30.5 parent: 2 - - uid: 4875 + - uid: 48422 components: - type: Transform - pos: -38.5,-0.5 + pos: 79.5,30.5 parent: 2 - - uid: 4914 + - uid: 48423 components: - type: Transform - pos: -40.5,1.5 + pos: 78.5,30.5 parent: 2 - - uid: 4915 + - uid: 48424 components: - type: Transform - pos: -39.5,1.5 + pos: 77.5,30.5 parent: 2 - - uid: 5212 + - uid: 48425 components: - type: Transform - pos: -38.5,1.5 + pos: 76.5,30.5 parent: 2 - - uid: 5213 + - uid: 48426 components: - type: Transform - pos: -40.5,-0.5 + pos: 71.5,35.5 parent: 2 - - uid: 8705 + - uid: 48427 components: - type: Transform - pos: -18.5,-81.5 + pos: 71.5,36.5 parent: 2 - - uid: 10031 + - uid: 48428 components: - type: Transform - pos: 12.5,-49.5 + pos: 71.5,37.5 parent: 2 - - uid: 10033 + - uid: 48429 components: - type: Transform - pos: 13.5,-50.5 + pos: 71.5,38.5 parent: 2 - - uid: 10034 + - uid: 48430 components: - type: Transform - pos: 15.5,-49.5 + pos: 71.5,39.5 parent: 2 - - uid: 10035 + - uid: 48431 components: - type: Transform - pos: 15.5,-50.5 + pos: 71.5,40.5 parent: 2 - - uid: 10036 + - uid: 48432 components: - type: Transform - pos: 14.5,-50.5 + pos: 71.5,41.5 parent: 2 - - uid: 10037 + - uid: 48547 components: - type: Transform - pos: 14.5,-49.5 - parent: 2 - - uid: 10039 + pos: 8.5,1.5 + parent: 36861 + - uid: 48548 components: - type: Transform - pos: 13.5,-49.5 - parent: 2 - - uid: 10040 + pos: 7.5,1.5 + parent: 36861 + - uid: 48549 components: - type: Transform - pos: 12.5,-50.5 - parent: 2 - - uid: 10041 + pos: 6.5,1.5 + parent: 36861 + - uid: 48550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-50.5 - parent: 2 - - uid: 10042 + pos: 5.5,1.5 + parent: 36861 + - uid: 48551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-51.5 - parent: 2 - - uid: 10043 + pos: 1.5,3.5 + parent: 36861 + - uid: 48552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-51.5 - parent: 2 - - uid: 10053 + pos: 1.5,2.5 + parent: 36861 + - uid: 48553 components: - type: Transform - pos: -8.5,-54.5 - parent: 2 - - uid: 10054 + pos: 1.5,1.5 + parent: 36861 + - uid: 48554 components: - type: Transform - pos: -7.5,-53.5 - parent: 2 - - uid: 10055 + pos: 2.5,1.5 + parent: 36861 + - uid: 48555 components: - type: Transform - pos: -8.5,-53.5 - parent: 2 - - uid: 10060 + pos: 3.5,1.5 + parent: 36861 + - uid: 48556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-50.5 - parent: 2 - - uid: 10061 + pos: 3.5,2.5 + parent: 36861 + - uid: 48557 components: - type: Transform - pos: -7.5,-54.5 - parent: 2 - - uid: 10062 + pos: 3.5,3.5 + parent: 36861 + - uid: 48558 components: - type: Transform - pos: -94.5,-4.5 - parent: 2 - - uid: 10063 + pos: 3.5,4.5 + parent: 36861 + - uid: 48559 components: - type: Transform - pos: -93.5,-4.5 - parent: 2 - - uid: 10073 + pos: 3.5,5.5 + parent: 36861 + - uid: 48560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-47.5 - parent: 2 - - uid: 10074 + pos: 4.5,5.5 + parent: 36861 + - uid: 48561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-47.5 - parent: 2 - - uid: 10075 + pos: 5.5,5.5 + parent: 36861 + - uid: 48562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-47.5 - parent: 2 - - uid: 10076 + pos: 6.5,5.5 + parent: 36861 + - uid: 48563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-46.5 - parent: 2 - - uid: 10077 + pos: 7.5,5.5 + parent: 36861 + - uid: 48564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-46.5 - parent: 2 - - uid: 10078 + pos: 7.5,4.5 + parent: 36861 + - uid: 48565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-46.5 - parent: 2 - - uid: 15022 + pos: 7.5,3.5 + parent: 36861 + - uid: 48566 components: - type: Transform - pos: -39.5,0.5 - parent: 2 - - uid: 17880 + pos: 7.5,2.5 + parent: 36861 + - uid: 48567 components: - type: Transform - pos: -38.5,0.5 - parent: 2 - - uid: 23991 + pos: -3.5,7.5 + parent: 36861 + - uid: 48568 components: - type: Transform - pos: -39.5,2.5 - parent: 2 - - uid: 24313 + pos: -2.5,7.5 + parent: 36861 + - uid: 48569 components: - type: Transform - pos: -38.5,2.5 - parent: 2 - - uid: 27399 + pos: -1.5,7.5 + parent: 36861 + - uid: 48570 components: - type: Transform - pos: -12.5,-4.5 - parent: 2 - - uid: 33517 + pos: -0.5,7.5 + parent: 36861 + - uid: 48571 components: - type: Transform - pos: 4.5,19.5 - parent: 33049 - - uid: 33518 + pos: 0.5,7.5 + parent: 36861 + - uid: 48572 components: - type: Transform - pos: 3.5,19.5 - parent: 33049 - - uid: 36557 + pos: 1.5,7.5 + parent: 36861 + - uid: 48573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-78.5 - parent: 2 - - uid: 36561 + pos: 2.5,7.5 + parent: 36861 + - uid: 48574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-78.5 - parent: 2 - - uid: 36562 + pos: 3.5,7.5 + parent: 36861 + - uid: 48575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-79.5 - parent: 2 - - uid: 36563 + pos: 4.5,7.5 + parent: 36861 + - uid: 48576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-79.5 - parent: 2 - - uid: 36565 + pos: 5.5,7.5 + parent: 36861 + - uid: 48577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-78.5 - parent: 2 - - uid: 36566 + pos: 5.5,6.5 + parent: 36861 + - uid: 48578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-77.5 - parent: 2 - - uid: 36568 + pos: 5.5,8.5 + parent: 36861 + - uid: 48579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-77.5 - parent: 2 - - uid: 36569 + pos: 5.5,9.5 + parent: 36861 + - uid: 48580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-79.5 - parent: 2 - - uid: 36571 + pos: 5.5,10.5 + parent: 36861 + - uid: 48581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-80.5 - parent: 2 - - uid: 36572 + pos: 5.5,11.5 + parent: 36861 + - uid: 48584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-80.5 - parent: 2 - - uid: 37295 + pos: 5.5,12.5 + parent: 36861 + - uid: 48585 components: - type: Transform - pos: 3.5,15.5 + pos: 5.5,13.5 parent: 36861 - - uid: 37296 + - uid: 48586 components: - type: Transform - pos: 4.5,15.5 + pos: 4.5,13.5 parent: 36861 - - uid: 37297 + - uid: 48587 components: - type: Transform - pos: 4.5,14.5 + pos: 3.5,13.5 parent: 36861 - - uid: 37298 + - uid: 48588 components: - type: Transform - pos: 4.5,14.5 + pos: 2.5,13.5 parent: 36861 - - uid: 37299 + - uid: 48589 components: - type: Transform - pos: 3.5,14.5 + pos: 2.5,21.5 parent: 36861 - - uid: 37300 + - uid: 48590 components: - type: Transform - pos: 3.5,13.5 + pos: 2.5,20.5 parent: 36861 - - uid: 37301 + - uid: 48591 components: - type: Transform - pos: 4.5,13.5 + pos: 2.5,19.5 parent: 36861 - - uid: 42019 + - uid: 48592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-9.5 - parent: 2 - - uid: 42020 + pos: 3.5,19.5 + parent: 36861 + - uid: 48593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-9.5 - parent: 2 - - uid: 43119 + pos: 4.5,19.5 + parent: 36861 + - uid: 48594 components: - type: Transform - pos: -12.5,-3.5 - parent: 2 - - uid: 43121 + pos: 5.5,19.5 + parent: 36861 + - uid: 48595 components: - type: Transform - pos: -14.5,-4.5 - parent: 2 - - uid: 43125 + pos: 5.5,18.5 + parent: 36861 + - uid: 48596 components: - type: Transform - pos: -14.5,-3.5 - parent: 2 - - uid: 43126 + pos: 5.5,17.5 + parent: 36861 + - uid: 48597 components: - type: Transform - pos: -13.5,-4.5 - parent: 2 - - uid: 43127 + pos: 5.5,16.5 + parent: 36861 + - uid: 48598 components: - type: Transform - pos: -13.5,-3.5 - parent: 2 - - uid: 51399 + pos: 5.5,15.5 + parent: 36861 + - uid: 48599 components: - type: Transform - pos: -14.5,-46.5 - parent: 2 - - uid: 51400 + pos: 5.5,14.5 + parent: 36861 + - uid: 48600 components: - type: Transform - pos: -13.5,-45.5 - parent: 2 - - uid: 51401 + pos: 8.5,5.5 + parent: 36861 + - uid: 48601 components: - type: Transform - pos: -12.5,-45.5 - parent: 2 - - uid: 51402 + pos: 8.5,6.5 + parent: 36861 + - uid: 48602 components: - type: Transform - pos: -13.5,-46.5 - parent: 2 - - uid: 51403 + pos: 6.5,14.5 + parent: 36861 + - uid: 48603 components: - type: Transform - pos: -12.5,-46.5 - parent: 2 - - uid: 51404 + pos: 7.5,14.5 + parent: 36861 + - uid: 48604 components: - type: Transform - pos: -14.5,-44.5 - parent: 2 - - uid: 51405 + pos: 8.5,14.5 + parent: 36861 + - uid: 48605 components: - type: Transform - pos: -13.5,-44.5 - parent: 2 - - uid: 51406 + pos: 9.5,14.5 + parent: 36861 + - uid: 48606 components: - type: Transform - pos: -12.5,-44.5 - parent: 2 -- proto: CarpStatue - entities: - - uid: 44528 + pos: 9.5,15.5 + parent: 36861 + - uid: 48607 components: - type: Transform - pos: 66.5,-26.5 - parent: 2 - - uid: 44675 + pos: 9.5,16.5 + parent: 36861 + - uid: 48608 components: - type: Transform - pos: 67.5,-30.5 - parent: 2 -- proto: CarrotSeeds - entities: - - uid: 17925 + pos: 9.5,17.5 + parent: 36861 + - uid: 48609 components: - type: Transform - pos: -11.083813,-33.631107 - parent: 2 -- proto: CartridgePistol - entities: - - uid: 32862 + pos: 9.5,18.5 + parent: 36861 + - uid: 48610 components: - type: Transform - pos: -2.7623596,10.407745 - parent: 34641 - - uid: 35032 + pos: 9.5,19.5 + parent: 36861 + - uid: 48611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.3973923,10.460454 - parent: 34641 - - uid: 35034 + pos: 10.5,19.5 + parent: 36861 + - uid: 48612 components: - type: Transform - pos: -2.1942673,10.804204 - parent: 34641 - - uid: 35035 + pos: 11.5,19.5 + parent: 36861 + - uid: 48613 components: - type: Transform - pos: -1.9130173,10.226079 - parent: 34641 - - uid: 35036 + pos: 12.5,19.5 + parent: 36861 + - uid: 48625 components: - type: Transform - pos: -1.3348923,10.585454 - parent: 34641 - - uid: 35037 + pos: 13.5,19.5 + parent: 36861 + - uid: 51631 components: - type: Transform - pos: -2.4598923,10.757329 - parent: 34641 -- proto: Catwalk - entities: - - uid: 34 + pos: -17.5,33.5 + parent: 2 + - uid: 51633 components: - type: Transform - pos: 9.5,-29.5 + pos: 25.5,20.5 parent: 2 - - uid: 200 + - uid: 51908 components: - type: Transform - pos: 66.5,28.5 + pos: -16.5,-12.5 parent: 2 - - uid: 324 + - uid: 51952 components: - type: Transform - pos: -32.5,-46.5 + pos: -16.5,-13.5 parent: 2 - - uid: 365 +- proto: CableMVStack + entities: + - uid: 21049 components: - type: Transform - pos: 66.5,31.5 + pos: 36.494022,-18.367596 parent: 2 - - uid: 366 + - uid: 43340 components: - type: Transform - pos: 66.5,29.5 + pos: 50.540825,75.80521 parent: 2 - - uid: 375 + - uid: 52115 components: - type: Transform - pos: -41.5,54.5 + pos: 15.4619665,9.542518 parent: 2 - - uid: 386 +- proto: CableMVStack1 + entities: + - uid: 1842 components: - type: Transform - pos: 19.5,63.5 + pos: 36.97923,-30.440948 parent: 2 - - uid: 457 + - uid: 3862 components: - type: Transform - pos: -54.5,37.5 + pos: 23.419197,-58.755672 parent: 2 - - uid: 484 + - uid: 9719 components: - type: Transform - pos: -40.5,53.5 + pos: 22.41048,-59.491234 parent: 2 - - uid: 512 + - uid: 9820 components: - type: Transform - pos: 51.5,11.5 + pos: 36.617115,-25.667671 parent: 2 - - uid: 514 + - uid: 9821 components: - type: Transform - pos: 27.5,7.5 + pos: 31.57024,-25.44937 parent: 2 - - uid: 711 + - uid: 9825 components: - type: Transform - pos: 14.5,53.5 + pos: 38.537334,-24.493406 parent: 2 - - uid: 736 + - uid: 9827 components: - type: Transform - pos: 28.5,44.5 + pos: 41.063442,-26.637978 parent: 2 - - uid: 761 + - uid: 9831 components: - type: Transform - pos: -0.5,-7.5 + pos: 54.279236,-59.706135 parent: 2 - - uid: 762 + - uid: 9832 components: - type: Transform - pos: -0.5,-6.5 + pos: 53.013607,-58.674885 parent: 2 - - uid: 770 + - uid: 9833 components: - type: Transform - pos: 39.5,50.5 + pos: 52.52924,-59.56551 parent: 2 - - uid: 771 + - uid: 9834 components: - type: Transform - pos: 39.5,41.5 + pos: 52.91986,-59.39364 parent: 2 - - uid: 777 + - uid: 9835 components: - type: Transform - pos: 28.5,49.5 + pos: 53.482357,-58.15926 parent: 2 - - uid: 787 + - uid: 10972 components: - type: Transform - pos: -46.5,-7.5 + pos: 27.74459,-60.332478 parent: 2 - - uid: 1026 + - uid: 12214 components: - type: Transform - pos: 51.5,34.5 + pos: 44.32325,-26.60319 parent: 2 - - uid: 1141 + - uid: 22335 components: - type: Transform - pos: 92.5,41.5 + pos: 34.182358,-33.2222 parent: 2 - - uid: 1143 + - uid: 22336 components: - type: Transform - pos: 92.5,40.5 + pos: 42.32298,-33.675323 parent: 2 - - uid: 1153 + - uid: 24365 components: - type: Transform - pos: 60.5,22.5 + pos: 21.931402,-62.348293 parent: 2 - - uid: 1160 + - uid: 28441 components: - type: Transform - pos: 45.5,31.5 + pos: 38.682358,-31.1597 parent: 2 - - uid: 1162 + - uid: 28460 components: - type: Transform - pos: 38.5,20.5 + pos: 35.932354,-30.894073 parent: 2 - - uid: 1224 + - uid: 30481 components: - type: Transform - pos: 54.5,22.5 + pos: -94.48932,26.454062 parent: 2 - - uid: 1253 + - uid: 33505 components: - type: Transform - pos: -40.5,54.5 - parent: 2 - - uid: 1536 + pos: 5.499396,-11.570922 + parent: 33049 + - uid: 33506 components: - type: Transform - pos: 54.5,18.5 - parent: 2 - - uid: 1597 + pos: 4.5865064,-12.789672 + parent: 33049 + - uid: 33507 components: - type: Transform - pos: -39.5,54.5 - parent: 2 - - uid: 1646 + pos: 5.936896,-10.602172 + parent: 33049 + - uid: 35029 components: - type: Transform - pos: 54.5,24.5 - parent: 2 - - uid: 1653 + pos: -11.412076,16.136322 + parent: 34641 + - uid: 35030 components: - type: Transform - pos: 54.5,28.5 - parent: 2 - - uid: 1732 + rot: -1.5707963267948966 rad + pos: -7.552701,16.245697 + parent: 34641 + - uid: 35031 components: - type: Transform - pos: -23.5,-32.5 - parent: 2 - - uid: 1963 + rot: -1.5707963267948966 rad + pos: -2.2819872,15.055053 + parent: 34641 + - uid: 45375 components: - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 2050 + pos: -1.4772129,1.3079655 + parent: 43176 + - uid: 45376 components: - type: Transform - pos: 49.5,28.5 - parent: 2 - - uid: 2520 + pos: -0.9459629,-0.035784483 + parent: 43176 + - uid: 45377 components: - type: Transform - pos: 39.5,42.5 - parent: 2 - - uid: 2529 + pos: 1.6477871,0.10484052 + parent: 43176 + - uid: 45378 components: - type: Transform - pos: 39.5,43.5 - parent: 2 - - uid: 2530 + pos: -3.586588,1.4329655 + parent: 43176 + - uid: 45379 components: - type: Transform - pos: 39.5,44.5 - parent: 2 - - uid: 2531 + pos: 3.585287,1.8235905 + parent: 43176 + - uid: 45380 components: - type: Transform - pos: 39.5,45.5 - parent: 2 - - uid: 2532 + pos: 5.632162,1.1204655 + parent: 43176 + - uid: 45577 components: - type: Transform - pos: 39.5,46.5 - parent: 2 - - uid: 2533 + rot: -1.5707963267948966 rad + pos: 8.308526,-3.488502 + parent: 45518 + - uid: 51171 components: - type: Transform - pos: 39.5,47.5 + pos: 23.574612,-62.56292 parent: 2 - - uid: 2534 + - uid: 51172 components: - type: Transform - pos: 39.5,48.5 + pos: 24.605862,-62.93792 parent: 2 - - uid: 2535 +- proto: CableMVStack10 + entities: + - uid: 26033 components: - type: Transform - pos: 39.5,49.5 + pos: 39.046944,13.613185 parent: 2 - - uid: 2911 + - uid: 35697 components: - type: Transform - pos: 54.5,9.5 + pos: 58.55101,-24.411997 parent: 2 - - uid: 2958 + - uid: 43968 components: - type: Transform - pos: -8.5,-70.5 + pos: -26.47073,4.7245026 parent: 2 - - uid: 2979 + - uid: 45381 components: - type: Transform - pos: -5.5,-72.5 - parent: 2 - - uid: 3443 + pos: 1.925353,-1.4877565 + parent: 43176 + - uid: 45382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,38.5 - parent: 2 - - uid: 3450 + pos: 1.1634121,1.3392155 + parent: 43176 + - uid: 45578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,38.5 - parent: 2 - - uid: 3871 + rot: 1.5707963267948966 rad + pos: 6.527276,-3.488502 + parent: 45518 + - uid: 53316 components: - type: Transform - pos: -5.5,-73.5 - parent: 2 - - uid: 3879 + pos: -11.306244,79.5473 + parent: 45711 +- proto: CableTerminal + entities: + - uid: 1197 components: - type: Transform - pos: -5.5,-74.5 + rot: -1.5707963267948966 rad + pos: 26.5,16.5 parent: 2 - - uid: 4259 + - uid: 4041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,33.5 + rot: -1.5707963267948966 rad + pos: 26.5,15.5 parent: 2 - - uid: 4297 + - uid: 5479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,34.5 + rot: -1.5707963267948966 rad + pos: 39.5,22.5 parent: 2 - - uid: 4865 + - uid: 5561 components: - type: Transform - pos: 53.5,34.5 + pos: -57.5,-15.5 parent: 2 - - uid: 4975 + - uid: 6188 components: - type: Transform - pos: -50.5,40.5 + rot: 1.5707963267948966 rad + pos: 23.5,15.5 parent: 2 - - uid: 5107 + - uid: 6391 components: - type: Transform - pos: -6.5,-72.5 + rot: 1.5707963267948966 rad + pos: 13.5,-10.5 parent: 2 - - uid: 5108 + - uid: 6751 components: - type: Transform - pos: -6.5,-74.5 + rot: 1.5707963267948966 rad + pos: 23.5,18.5 parent: 2 - - uid: 5392 + - uid: 7069 components: - type: Transform - pos: 53.5,31.5 + pos: -11.5,47.5 parent: 2 - - uid: 5428 + - uid: 7448 components: - type: Transform - pos: 48.5,83.5 + rot: -1.5707963267948966 rad + pos: 47.5,75.5 parent: 2 - - uid: 5460 + - uid: 7628 components: - type: Transform - pos: -46.5,34.5 + rot: -1.5707963267948966 rad + pos: -31.5,-47.5 parent: 2 - - uid: 5570 + - uid: 7924 components: - type: Transform - pos: -48.5,-9.5 + pos: -24.5,-32.5 parent: 2 - - uid: 5571 + - uid: 8265 components: - type: Transform - pos: -49.5,-9.5 + rot: -1.5707963267948966 rad + pos: 26.5,18.5 parent: 2 - - uid: 5596 + - uid: 8341 components: - type: Transform - pos: -41.5,16.5 + rot: 1.5707963267948966 rad + pos: 23.5,17.5 parent: 2 - - uid: 5639 + - uid: 9379 components: - type: Transform - pos: 48.5,84.5 + rot: -1.5707963267948966 rad + pos: 26.5,17.5 parent: 2 - - uid: 5647 + - uid: 9839 components: - type: Transform - pos: 48.5,85.5 + rot: 1.5707963267948966 rad + pos: 53.5,-58.5 parent: 2 - - uid: 5652 + - uid: 9847 components: - type: Transform - pos: 48.5,87.5 + rot: 3.141592653589793 rad + pos: 32.5,66.5 parent: 2 - - uid: 5656 + - uid: 9848 components: - type: Transform - pos: -46.5,-8.5 + rot: 3.141592653589793 rad + pos: 34.5,66.5 parent: 2 - - uid: 6108 + - uid: 9849 components: - type: Transform - pos: 38.5,21.5 + pos: -73.5,2.5 parent: 2 - - uid: 6115 + - uid: 9850 components: - type: Transform - pos: 37.5,21.5 + rot: 3.141592653589793 rad + pos: -73.5,7.5 parent: 2 - - uid: 6154 + - uid: 9851 components: - type: Transform - pos: 45.5,8.5 + pos: -50.5,-64.5 parent: 2 - - uid: 6184 + - uid: 10408 components: - type: Transform - pos: 66.5,45.5 + rot: 3.141592653589793 rad + pos: -40.5,29.5 parent: 2 - - uid: 6227 + - uid: 11228 components: - type: Transform - pos: 66.5,44.5 + rot: 1.5707963267948966 rad + pos: 23.5,16.5 parent: 2 - - uid: 6229 + - uid: 17896 components: - type: Transform - pos: 58.5,12.5 + rot: 3.141592653589793 rad + pos: -50.5,36.5 parent: 2 - - uid: 6235 + - uid: 18651 components: - type: Transform - pos: 60.5,13.5 + rot: -1.5707963267948966 rad + pos: -17.5,-12.5 parent: 2 - - uid: 6256 + - uid: 22983 components: - type: Transform - pos: 92.5,42.5 + pos: 48.5,-46.5 parent: 2 - - uid: 6258 + - uid: 23648 components: - type: Transform - pos: 59.5,12.5 + rot: 1.5707963267948966 rad + pos: 28.5,-64.5 parent: 2 - - uid: 6313 + - uid: 26196 components: - type: Transform - pos: 53.5,30.5 + rot: -1.5707963267948966 rad + pos: 63.5,43.5 parent: 2 - - uid: 6381 + - uid: 26197 components: - type: Transform - pos: 92.5,45.5 + rot: -1.5707963267948966 rad + pos: 63.5,44.5 parent: 2 - - uid: 6544 + - uid: 26198 components: - type: Transform - pos: 46.5,8.5 + rot: 1.5707963267948966 rad + pos: 58.5,43.5 parent: 2 - - uid: 6556 + - uid: 26230 components: - type: Transform - pos: 42.5,30.5 + rot: 1.5707963267948966 rad + pos: 58.5,44.5 parent: 2 - - uid: 6559 + - uid: 29056 components: - type: Transform - pos: 42.5,29.5 + rot: 3.141592653589793 rad + pos: 45.5,7.5 parent: 2 - - uid: 6564 + - uid: 33508 components: - type: Transform - pos: 53.5,33.5 - parent: 2 - - uid: 6585 + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 33049 + - uid: 37281 components: - type: Transform - pos: 48.5,8.5 - parent: 2 - - uid: 6586 + pos: 9.5,2.5 + parent: 36861 + - uid: 43059 components: - type: Transform - pos: 51.5,9.5 + rot: 1.5707963267948966 rad + pos: -52.5,52.5 parent: 2 - - uid: 6758 + - uid: 47877 components: - type: Transform - pos: 41.5,29.5 - parent: 2 - - uid: 6767 + rot: -1.5707963267948966 rad + pos: -23.5,25.5 + parent: 45711 + - uid: 51528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,33.5 + rot: -1.5707963267948966 rad + pos: 39.5,21.5 parent: 2 - - uid: 6770 + - uid: 51530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,40.5 + rot: -1.5707963267948966 rad + pos: 39.5,20.5 parent: 2 - - uid: 6772 + - uid: 51610 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,39.5 + pos: -6.5,-72.5 parent: 2 - - uid: 6774 + - uid: 52190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,34.5 + rot: 3.141592653589793 rad + pos: 34.5,-37.5 parent: 2 - - uid: 6799 +- proto: Candle + entities: + - uid: 15306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,32.5 + pos: -31.670147,18.129068 parent: 2 - - uid: 6844 + - uid: 15308 components: - type: Transform - pos: -6.5,-73.5 + pos: -31.373272,17.97282 parent: 2 - - uid: 6880 + - uid: 15309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,32.5 + pos: -31.654522,17.832195 parent: 2 - - uid: 6886 + - uid: 15310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,33.5 + pos: -31.435772,17.613443 parent: 2 - - uid: 6934 + - uid: 15311 components: - type: Transform - pos: -10.5,-56.5 + pos: -31.670147,17.504068 parent: 2 - - uid: 6967 + - uid: 15312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,38.5 + pos: -31.420147,17.300945 parent: 2 - - uid: 6968 + - uid: 56131 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,38.5 + pos: -32.74743,51.43562 parent: 2 - - uid: 6993 +- proto: CandleBlack + entities: + - uid: 25582 components: - type: Transform - pos: 17.5,61.5 + pos: -19.650352,30.764317 parent: 2 - - uid: 7008 + - uid: 53339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,37.5 + rot: 0.000553772842977196 rad + pos: -4.5389357,-7.2780237 parent: 2 - - uid: 7038 +- proto: CandleBlackSmall + entities: + - uid: 20193 components: - type: Transform - pos: 53.5,32.5 + pos: -19.447227,30.608067 parent: 2 - - uid: 7040 + - uid: 53338 components: - type: Transform - pos: 66.5,42.5 + rot: 0.000553772842977196 rad + pos: -4.6951847,-7.3873987 parent: 2 - - uid: 7127 +- proto: CandleGreen + entities: + - uid: 26717 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,50.5 + pos: -18.53863,25.577562 parent: 2 - - uid: 7129 +- proto: CandleInfinite + entities: + - uid: 1777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,52.5 + rot: -1.5707963267948966 rad + pos: -18.799559,-2.2520623 parent: 2 - - uid: 7383 +- proto: CandleRed + entities: + - uid: 1817 components: - type: Transform - pos: 30.5,-49.5 + rot: 1.5707963267948966 rad + pos: -14.523005,30.343185 parent: 2 - - uid: 7650 +- proto: CandleRedInfinite + entities: + - uid: 55285 components: - type: Transform - pos: 48.5,-47.5 - parent: 2 - - uid: 7662 + rot: -1.5707963267948966 rad + pos: -51.4718,49.282288 + parent: 45711 + - uid: 55316 components: - type: Transform - pos: 44.5,29.5 - parent: 2 - - uid: 7679 + rot: -1.5707963267948966 rad + pos: -50.50305,48.90735 + parent: 45711 + - uid: 55317 components: - type: Transform - pos: 52.5,34.5 - parent: 2 - - uid: 7814 + rot: -1.5707963267948966 rad + pos: -51.768646,47.579163 + parent: 45711 + - uid: 55318 components: - type: Transform - pos: -11.5,50.5 - parent: 2 - - uid: 7839 + rot: -1.5707963267948966 rad + pos: -52.37805,49.141663 + parent: 45711 + - uid: 55319 components: - type: Transform - pos: 43.5,21.5 - parent: 2 - - uid: 7844 + rot: -1.5707963267948966 rad + pos: -50.75302,47.797913 + parent: 45711 + - uid: 55320 components: - type: Transform - pos: 92.5,44.5 - parent: 2 - - uid: 7847 + rot: -1.5707963267948966 rad + pos: -52.4718,48.110413 + parent: 45711 +- proto: CandleRedSmall + entities: + - uid: 43620 components: - type: Transform - pos: 43.5,20.5 + pos: -44.513824,52.244614 parent: 2 - - uid: 7851 +- proto: CandleRedSmallInfinite + entities: + - uid: 54293 components: - type: Transform - pos: 47.5,20.5 - parent: 2 - - uid: 7862 + rot: 1.5707963267948966 rad + pos: -35.91989,34.117126 + parent: 45711 +- proto: CandleSmall + entities: + - uid: 43614 components: - type: Transform - pos: 92.5,47.5 + pos: -45.240387,52.01024 parent: 2 - - uid: 7866 + - uid: 43615 components: - type: Transform - pos: 92.5,46.5 + pos: -45.240387,51.54149 parent: 2 - - uid: 7882 + - uid: 43616 components: - type: Transform - pos: 47.5,21.5 + pos: -45.240387,51.025864 parent: 2 - - uid: 7997 + - uid: 43617 components: - type: Transform - pos: 9.5,-11.5 + pos: -43.810696,51.0493 parent: 2 - - uid: 8116 + - uid: 43618 components: - type: Transform - pos: -42.5,25.5 + pos: -43.8107,51.494614 parent: 2 - - uid: 8250 + - uid: 43619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,44.5 + pos: -43.810696,52.057114 parent: 2 - - uid: 8275 + - uid: 55877 components: - type: Transform - pos: 36.5,-10.5 + rot: -1.5707963267948966 rad + pos: -88.36481,-11.640907 parent: 2 - - uid: 8462 +- proto: CannabisSeeds + entities: + - uid: 9854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,44.5 - parent: 2 - - uid: 8509 + parent: 9853 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14194 components: - type: Transform - pos: 92.5,43.5 + pos: 30.40197,-6.470322 parent: 2 - - uid: 8992 + - uid: 29993 components: - type: Transform - pos: -59.5,60.5 - parent: 2 - - uid: 9036 + parent: 29981 + - type: Physics + canCollide: False + - uid: 31872 components: - type: Transform - pos: 49.5,-47.5 + pos: 29.539637,-53.401394 parent: 2 - - uid: 9142 +- proto: CapacitorStockPart + entities: + - uid: 380 components: - type: Transform - pos: -52.5,48.5 + pos: 45.31875,13.686416 parent: 2 - - uid: 9143 + - uid: 569 components: - type: Transform - pos: 36.5,-9.5 + pos: 45.5375,13.405166 parent: 2 - - uid: 9414 + - uid: 1975 components: - type: Transform - pos: 50.5,-43.5 + pos: 14.236434,-17.287767 parent: 2 - - uid: 9549 + - uid: 4896 components: - type: Transform - pos: 37.5,22.5 + pos: 45.615623,13.67079 parent: 2 - - uid: 9550 + - uid: 14163 components: - type: Transform - pos: 38.5,22.5 + rot: 1.5707963267948966 rad + pos: 35.670593,28.876732 parent: 2 - - uid: 9551 + - uid: 15401 components: - type: Transform - pos: 39.5,22.5 + pos: 14.289232,-17.287767 parent: 2 - - uid: 9552 + - uid: 20181 components: - type: Transform - pos: 39.5,21.5 + pos: 36.67842,-18.867561 parent: 2 - - uid: 9579 + - uid: 20927 components: - type: Transform - pos: 51.5,-43.5 + pos: 45.81875,13.436415 parent: 2 - - uid: 9580 + - uid: 22216 components: - type: Transform - pos: 52.5,-43.5 + rot: 3.141592653589793 rad + pos: -47.312077,-51.557663 parent: 2 - - uid: 9634 + - uid: 22543 components: - type: Transform - pos: -35.5,-70.5 + pos: 13.5244665,3.5268936 parent: 2 - - uid: 9635 + - uid: 22545 components: - type: Transform - pos: -37.5,-70.5 + pos: 13.368216,3.4487689 parent: 2 - - uid: 9639 + - uid: 23136 components: - type: Transform - pos: -31.5,-70.5 + pos: 13.5244665,3.5268936 parent: 2 - - uid: 9640 + - uid: 25951 components: - type: Transform - pos: -30.5,-70.5 + pos: 45.81875,13.436415 parent: 2 - - uid: 9641 + - uid: 26015 components: - type: Transform - pos: -30.5,-71.5 + pos: 13.508841,3.6362686 parent: 2 - - uid: 9642 + - uid: 26016 components: - type: Transform - pos: -30.5,-72.5 + pos: 13.508841,3.6362686 parent: 2 - - uid: 9643 + - uid: 26018 components: - type: Transform - pos: -29.5,-72.5 + pos: 13.352591,3.448769 parent: 2 - - uid: 9653 + - uid: 26572 components: - type: Transform - pos: -21.5,-70.5 + rot: 1.5707963267948966 rad + pos: 35.358093,28.939232 parent: 2 - - uid: 9654 + - uid: 27033 components: - type: Transform - pos: -19.5,-70.5 + pos: 13.336966,3.6206436 parent: 2 - - uid: 9655 + - uid: 27039 components: - type: Transform - pos: -20.5,-70.5 + pos: 13.305716,3.6675186 parent: 2 - - uid: 9657 + - uid: 32425 components: - type: Transform - pos: -17.5,-69.5 + pos: 45.303123,13.655166 parent: 2 - - uid: 9658 + - uid: 36164 components: - type: Transform - pos: -17.5,-70.5 + pos: 36.49092,-18.89881 parent: 2 - - uid: 9661 + - uid: 36165 components: - type: Transform - pos: -16.5,-67.5 + pos: 36.49092,-18.914434 parent: 2 - - uid: 9682 + - uid: 36180 components: - type: Transform - pos: -11.5,-65.5 + pos: 36.350292,-18.851936 parent: 2 - - uid: 9731 + - uid: 42551 components: - type: Transform - pos: 53.5,-43.5 + pos: 45.615623,13.67079 parent: 2 - - uid: 9732 + - uid: 43140 components: - type: Transform - pos: 54.5,-43.5 + pos: 45.5375,13.405166 parent: 2 - - uid: 9734 + - uid: 43343 components: - type: Transform - pos: 55.5,-43.5 + pos: 49.8377,75.44583 parent: 2 - - uid: 9830 + - uid: 43344 components: - type: Transform - pos: -11.5,-63.5 + pos: 49.8377,75.44583 parent: 2 - - uid: 9855 + - uid: 43345 components: - type: Transform - pos: -11.5,-64.5 + pos: 49.8377,75.44583 parent: 2 - - uid: 9918 + - uid: 43346 components: - type: Transform - pos: -42.5,10.5 + pos: 49.8377,75.44583 parent: 2 - - uid: 9919 + - uid: 43347 components: - type: Transform - pos: -41.5,10.5 + pos: 49.8377,75.44583 parent: 2 - - uid: 9924 + - uid: 45321 components: - type: Transform - pos: -41.5,19.5 + pos: 14.250109,-17.293621 parent: 2 - - uid: 9927 + - uid: 47736 components: - type: Transform - pos: -41.5,17.5 + pos: 36.303417,-18.961311 parent: 2 - - uid: 9928 + - uid: 47770 components: - type: Transform - pos: -41.5,15.5 + pos: 57.30733,-38.514545 parent: 2 - - uid: 9945 + - uid: 47771 components: - type: Transform - pos: -41.5,13.5 + pos: 57.588577,-38.327045 parent: 2 - - uid: 9958 + - uid: 47772 components: - type: Transform - pos: -41.5,12.5 + pos: 57.729202,-38.483295 parent: 2 - - uid: 10079 + - uid: 47878 components: - type: Transform - pos: -57.5,-23.5 - parent: 2 - - uid: 10080 + pos: 25.603254,23.642792 + parent: 45711 + - uid: 47879 components: - type: Transform - pos: 66.5,43.5 - parent: 2 - - uid: 10082 + pos: 25.394922,23.569876 + parent: 45711 + - uid: 47880 components: - type: Transform - pos: 23.5,30.5 - parent: 2 - - uid: 10083 + pos: 23.342838,24.601126 + parent: 45711 + - uid: 47881 components: - type: Transform - pos: 23.5,29.5 - parent: 2 - - uid: 10084 + pos: 37.541164,32.55561 + parent: 45711 + - uid: 51989 components: - type: Transform - pos: 30.5,6.5 + pos: 14.250109,-17.293621 parent: 2 - - uid: 10086 + - uid: 52120 components: - type: Transform - pos: 29.5,6.5 + pos: 13.649466,3.4487689 parent: 2 - - uid: 10087 + - uid: 52121 components: - type: Transform - pos: -27.5,-56.5 + pos: 13.461966,3.2925189 parent: 2 - - uid: 10092 + - uid: 52122 components: - type: Transform - pos: 35.5,-44.5 + pos: 13.586966,3.3862689 parent: 2 - - uid: 10100 + - uid: 52123 components: - type: Transform - pos: 41.5,-41.5 + pos: 13.4150915,3.5112686 parent: 2 - - uid: 10101 + - uid: 53326 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,28.5 - parent: 2 - - uid: 10102 + pos: -9.655304,69.384705 + parent: 45711 + - uid: 53327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,27.5 - parent: 2 - - uid: 10103 + pos: -9.592773,69.65033 + parent: 45711 + - uid: 53328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,26.5 - parent: 2 - - uid: 10104 + pos: -9.405304,69.36908 + parent: 45711 + - uid: 53329 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,28.5 - parent: 2 - - uid: 10105 + pos: -9.467804,69.384705 + parent: 45711 +- proto: CaptainIDCard + entities: + - uid: 1762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,26.5 + pos: 3.4683518,-3.2873893 parent: 2 - - uid: 10106 +- proto: CarbonDioxideCanister + entities: + - uid: 1010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,27.5 + pos: 56.5,16.5 parent: 2 - - uid: 10107 + - uid: 5702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,27.5 + pos: -41.5,-12.5 parent: 2 - - uid: 10108 + - uid: 32620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,26.5 + pos: 29.5,-32.5 parent: 2 - - uid: 10109 + - uid: 36157 components: - type: Transform - pos: 26.5,7.5 + pos: 63.5,-31.5 parent: 2 - - uid: 10110 + - uid: 47882 components: - type: Transform - pos: 23.5,28.5 - parent: 2 - - uid: 10114 + pos: -7.5,38.5 + parent: 45711 +- proto: CargoPDA + entities: + - uid: 35983 components: - type: Transform - pos: -10.5,-12.5 - parent: 2 - - uid: 10115 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27758 + - type: UnpoweredFlashlight + toggleActionEntity: 27758 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: InsideEntityStorage + - uid: 35991 components: - type: Transform - pos: -45.5,-28.5 - parent: 2 - - uid: 10116 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 30187 + - type: UnpoweredFlashlight + toggleActionEntity: 30187 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: InsideEntityStorage +- proto: Carpet + entities: + - uid: 3 components: - type: Transform - pos: -1.5,-7.5 + pos: -35.5,-21.5 parent: 2 - - uid: 10117 + - uid: 501 components: - type: Transform - pos: -35.5,45.5 + pos: -33.5,-5.5 parent: 2 - - uid: 10124 + - uid: 898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-47.5 + pos: -34.5,-4.5 parent: 2 - - uid: 10125 + - uid: 1156 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-46.5 + pos: -34.5,-5.5 parent: 2 - - uid: 10126 + - uid: 1207 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-11.5 + pos: -88.5,-10.5 parent: 2 - - uid: 10129 + - uid: 1667 components: - type: Transform - pos: 14.5,-11.5 + pos: -34.5,-20.5 parent: 2 - - uid: 10130 + - uid: 1687 components: - type: Transform - pos: -30.5,-56.5 + pos: 59.5,-22.5 parent: 2 - - uid: 10131 + - uid: 2393 components: - type: Transform - pos: 33.5,-36.5 + pos: -35.5,-20.5 parent: 2 - - uid: 10132 + - uid: 5545 components: - type: Transform - pos: -25.5,-65.5 + pos: -32.5,-4.5 parent: 2 - - uid: 10134 + - uid: 5549 components: - type: Transform - pos: -32.5,-65.5 + pos: -33.5,-4.5 parent: 2 - - uid: 10135 + - uid: 5555 components: - type: Transform - pos: 7.5,-27.5 + pos: -32.5,-5.5 parent: 2 - - uid: 10136 + - uid: 5556 components: - type: Transform - pos: 23.5,-29.5 + pos: -34.5,-3.5 parent: 2 - - uid: 10140 + - uid: 5557 components: - type: Transform - pos: -9.5,-12.5 + pos: -33.5,-3.5 parent: 2 - - uid: 10142 + - uid: 5558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-13.5 + pos: -32.5,-3.5 parent: 2 - - uid: 10144 + - uid: 6795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-13.5 + rot: 3.141592653589793 rad + pos: -88.5,-11.5 parent: 2 - - uid: 10145 + - uid: 7828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-13.5 + pos: -35.5,-19.5 parent: 2 - - uid: 10147 + - uid: 7830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-6.5 + pos: -34.5,-19.5 parent: 2 - - uid: 10148 + - uid: 7870 components: - type: Transform - pos: -45.5,-26.5 + pos: -36.5,-21.5 parent: 2 - - uid: 10149 + - uid: 7883 components: - type: Transform - pos: -25.5,-60.5 + pos: -36.5,-20.5 parent: 2 - - uid: 10150 + - uid: 7886 components: - type: Transform - pos: -25.5,-64.5 + pos: -36.5,-19.5 parent: 2 - - uid: 10151 + - uid: 8051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 + pos: -34.5,-21.5 parent: 2 - - uid: 10152 + - uid: 9890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 + pos: -93.5,-6.5 parent: 2 - - uid: 10153 + - uid: 9891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 + pos: -92.5,-6.5 parent: 2 - - uid: 10154 + - uid: 11479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 + pos: -19.5,25.5 parent: 2 - - uid: 10155 + - uid: 14082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-13.5 + pos: -17.5,25.5 parent: 2 - - uid: 10156 + - uid: 31976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-13.5 + pos: -18.5,25.5 parent: 2 - - uid: 10157 + - uid: 33509 components: - type: Transform - pos: 10.5,-10.5 - parent: 2 - - uid: 10162 + pos: -5.5,19.5 + parent: 33049 + - uid: 33510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 2 - - uid: 10163 + pos: -4.5,19.5 + parent: 33049 + - uid: 36438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-8.5 + pos: -43.5,-82.5 parent: 2 - - uid: 10164 + - uid: 36450 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-8.5 + pos: -45.5,-82.5 parent: 2 - - uid: 10165 + - uid: 36453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-8.5 + pos: -44.5,-82.5 parent: 2 - - uid: 10166 + - uid: 36624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-8.5 + pos: 60.5,-22.5 parent: 2 - - uid: 10167 + - uid: 37282 components: - type: Transform - pos: 37.5,-42.5 - parent: 2 - - uid: 10168 + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 36861 + - uid: 37283 components: - type: Transform - pos: 34.5,-39.5 - parent: 2 - - uid: 10171 + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 36861 + - uid: 37284 components: - type: Transform - pos: 40.5,-38.5 - parent: 2 - - uid: 10172 + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 36861 + - uid: 37285 components: - type: Transform - pos: 7.5,-30.5 - parent: 2 - - uid: 10173 + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 36861 + - uid: 37286 components: - type: Transform - pos: 3.5,-30.5 - parent: 2 - - uid: 10174 + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 36861 + - uid: 42728 components: - type: Transform - pos: 5.5,-30.5 + rot: 3.141592653589793 rad + pos: -89.5,-11.5 parent: 2 - - uid: 10175 + - uid: 43702 components: - type: Transform - pos: 5.5,-29.5 + rot: 3.141592653589793 rad + pos: -89.5,-10.5 parent: 2 - - uid: 10176 + - uid: 44486 components: - type: Transform - pos: 6.5,-30.5 + pos: 59.5,-21.5 parent: 2 - - uid: 10177 + - uid: 44487 components: - type: Transform - pos: 6.5,-27.5 + pos: 59.5,-20.5 parent: 2 - - uid: 10178 + - uid: 44631 components: - type: Transform - pos: 5.5,-27.5 + pos: 60.5,-21.5 parent: 2 - - uid: 10180 +- proto: CarpetBlack + entities: + - uid: 368 components: - type: Transform - pos: 8.5,-14.5 + pos: 3.5,41.5 parent: 2 - - uid: 10181 + - uid: 500 components: - type: Transform - pos: 8.5,-12.5 + pos: -25.5,-13.5 parent: 2 - - uid: 10183 + - uid: 704 components: - type: Transform - pos: 8.5,-29.5 + pos: -30.5,-12.5 parent: 2 - - uid: 10184 + - uid: 790 components: - type: Transform - pos: 22.5,-29.5 + pos: -29.5,-12.5 parent: 2 - - uid: 10185 + - uid: 846 components: - type: Transform - pos: 10.5,-29.5 + pos: -25.5,-12.5 parent: 2 - - uid: 10186 + - uid: 850 components: - type: Transform - pos: 13.5,-29.5 + pos: -25.5,-11.5 parent: 2 - - uid: 10187 + - uid: 1159 components: - type: Transform - pos: 13.5,-32.5 + pos: -28.5,-13.5 parent: 2 - - uid: 10188 + - uid: 1185 components: - type: Transform - pos: 10.5,-32.5 + pos: -27.5,-10.5 parent: 2 - - uid: 10189 + - uid: 1187 components: - type: Transform - pos: 15.5,-32.5 + pos: -27.5,-11.5 parent: 2 - - uid: 10190 + - uid: 1193 components: - type: Transform - pos: 19.5,-29.5 + pos: -27.5,-12.5 parent: 2 - - uid: 10191 + - uid: 1198 components: - type: Transform - pos: 17.5,-32.5 + pos: -27.5,-13.5 parent: 2 - - uid: 10192 + - uid: 1199 components: - type: Transform - pos: 18.5,-32.5 + pos: -28.5,-12.5 parent: 2 - - uid: 10193 + - uid: 1200 components: - type: Transform - pos: 17.5,-29.5 + pos: -26.5,-10.5 parent: 2 - - uid: 10194 + - uid: 1202 components: - type: Transform - pos: 8.5,-32.5 + pos: -26.5,-11.5 parent: 2 - - uid: 10195 + - uid: 1205 components: - type: Transform - pos: 8.5,-31.5 + pos: -26.5,-12.5 parent: 2 - - uid: 10196 + - uid: 1226 components: - type: Transform - pos: 20.5,-29.5 + pos: -26.5,-13.5 parent: 2 - - uid: 10200 + - uid: 1230 components: - type: Transform - pos: 8.5,-16.5 + pos: -25.5,-10.5 parent: 2 - - uid: 10201 + - uid: 1238 components: - type: Transform - pos: -31.5,-49.5 + pos: -69.5,-6.5 parent: 2 - - uid: 10206 + - uid: 1552 components: - type: Transform - pos: -49.5,-13.5 + pos: -30.5,-10.5 parent: 2 - - uid: 10207 + - uid: 1554 components: - type: Transform - pos: -50.5,-13.5 + pos: -30.5,-13.5 parent: 2 - - uid: 10213 + - uid: 1849 components: - type: Transform - pos: 34.5,6.5 + pos: -28.5,-10.5 parent: 2 - - uid: 10214 + - uid: 1850 components: - type: Transform - pos: 35.5,6.5 + pos: -28.5,-11.5 parent: 2 - - uid: 10215 + - uid: 1851 components: - type: Transform - pos: 38.5,6.5 + pos: -29.5,-13.5 parent: 2 - - uid: 10216 + - uid: 1983 components: - type: Transform - pos: 40.5,6.5 + pos: -30.5,-11.5 parent: 2 - - uid: 10217 + - uid: 1987 components: - type: Transform - pos: 39.5,6.5 + pos: -29.5,-11.5 parent: 2 - - uid: 10218 + - uid: 2002 components: - type: Transform - pos: 8.5,-15.5 + pos: -29.5,-10.5 parent: 2 - - uid: 10219 + - uid: 7011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,7.5 + pos: -69.5,-7.5 parent: 2 - - uid: 10225 + - uid: 7012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,4.5 + pos: -70.5,-7.5 parent: 2 - - uid: 10229 + - uid: 7028 components: - type: Transform - pos: 42.5,-10.5 + pos: 5.5,39.5 parent: 2 - - uid: 10231 + - uid: 10094 components: - type: Transform - pos: -14.5,52.5 + pos: 3.5,39.5 parent: 2 - - uid: 10233 + - uid: 10122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,47.5 + pos: 4.5,40.5 parent: 2 - - uid: 10234 + - uid: 10307 components: - type: Transform - pos: -41.5,27.5 + pos: -70.5,-6.5 parent: 2 - - uid: 10236 + - uid: 11318 components: - type: Transform - pos: -17.5,-11.5 + pos: -18.5,45.5 parent: 2 - - uid: 10238 + - uid: 11931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-4.5 + pos: 3.5,40.5 parent: 2 - - uid: 10239 + - uid: 20023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-4.5 + pos: -17.5,-43.5 parent: 2 - - uid: 10240 + - uid: 20098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,10.5 + pos: 4.5,39.5 parent: 2 - - uid: 10241 + - uid: 20150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,10.5 + pos: -17.5,45.5 parent: 2 - - uid: 10242 + - uid: 21645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,10.5 + pos: 4.5,41.5 parent: 2 - - uid: 10243 + - uid: 21960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,10.5 + pos: 5.5,41.5 parent: 2 - - uid: 10248 + - uid: 23616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,13.5 + pos: -34.5,52.5 parent: 2 - - uid: 10249 + - uid: 24985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,13.5 + rot: 1.5707963267948966 rad + pos: -18.5,42.5 parent: 2 - - uid: 10250 + - uid: 25787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,13.5 + pos: -16.5,45.5 parent: 2 - - uid: 10251 + - uid: 28331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,13.5 + pos: 5.5,40.5 parent: 2 - - uid: 10252 + - uid: 33511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,13.5 - parent: 2 - - uid: 10253 + pos: -10.5,19.5 + parent: 33049 + - uid: 33512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,16.5 - parent: 2 - - uid: 10254 + pos: -11.5,19.5 + parent: 33049 + - uid: 41105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,15.5 + pos: -95.5,-7.5 parent: 2 - - uid: 10255 + - uid: 47883 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,14.5 - parent: 2 - - uid: 10256 + pos: 12.5,22.5 + parent: 45711 + - uid: 47884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,19.5 - parent: 2 - - uid: 10257 + pos: 16.5,26.5 + parent: 45711 + - uid: 47885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,18.5 - parent: 2 - - uid: 10271 + pos: 16.5,27.5 + parent: 45711 + - uid: 47886 components: - type: Transform - pos: 36.5,-8.5 - parent: 2 - - uid: 10277 + pos: 17.5,26.5 + parent: 45711 + - uid: 47887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-50.5 - parent: 2 - - uid: 10278 + pos: 17.5,27.5 + parent: 45711 + - uid: 47888 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-49.5 - parent: 2 - - uid: 10280 + pos: 11.5,24.5 + parent: 45711 + - uid: 47889 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-56.5 - parent: 2 - - uid: 10281 + pos: 11.5,22.5 + parent: 45711 + - uid: 47890 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-56.5 - parent: 2 - - uid: 10282 + pos: 12.5,26.5 + parent: 45711 + - uid: 47891 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-55.5 - parent: 2 - - uid: 10283 + pos: 11.5,26.5 + parent: 45711 + - uid: 47892 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-52.5 - parent: 2 - - uid: 10284 + pos: 17.5,23.5 + parent: 45711 + - uid: 47893 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-53.5 - parent: 2 - - uid: 10288 + pos: 17.5,22.5 + parent: 45711 + - uid: 51390 components: - type: Transform - pos: 32.5,-47.5 + pos: -17.5,-44.5 parent: 2 - - uid: 10290 + - uid: 51391 components: - type: Transform - pos: -25.5,-55.5 + pos: -17.5,-45.5 parent: 2 - - uid: 10291 + - uid: 51392 components: - type: Transform - pos: 30.5,-8.5 + pos: -17.5,-46.5 parent: 2 - - uid: 10294 + - uid: 51393 components: - type: Transform - pos: 49.5,-10.5 + pos: -17.5,-47.5 parent: 2 - - uid: 10301 + - uid: 51394 components: - type: Transform - pos: 47.5,-10.5 + pos: -16.5,-43.5 parent: 2 - - uid: 10302 + - uid: 51395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-61.5 + pos: -16.5,-44.5 parent: 2 - - uid: 10303 + - uid: 51396 components: - type: Transform - pos: 45.5,-10.5 + pos: -16.5,-45.5 parent: 2 - - uid: 10304 + - uid: 51397 components: - type: Transform - pos: 43.5,-10.5 + pos: -16.5,-46.5 parent: 2 - - uid: 10308 + - uid: 51398 components: - type: Transform - pos: -49.5,40.5 + pos: -16.5,-47.5 parent: 2 - - uid: 10311 + - uid: 56125 components: - type: Transform - pos: 46.5,-10.5 + pos: -33.5,52.5 parent: 2 - - uid: 10312 +- proto: CarpetBlue + entities: + - uid: 171 components: - type: Transform - pos: 35.5,-8.5 + pos: 4.5,-7.5 parent: 2 - - uid: 10313 + - uid: 807 components: - type: Transform - pos: 34.5,-8.5 + pos: 2.5,-7.5 parent: 2 - - uid: 10314 + - uid: 944 components: - type: Transform - pos: 31.5,-8.5 + pos: -16.5,-9.5 parent: 2 - - uid: 10318 + - uid: 1449 components: - type: Transform - pos: 50.5,-10.5 + pos: -17.5,-9.5 parent: 2 - - uid: 10320 + - uid: 1894 components: - type: Transform - pos: -25.5,-53.5 + pos: 1.5,-7.5 parent: 2 - - uid: 10321 + - uid: 4545 components: - type: Transform - pos: 33.5,-37.5 + pos: 3.5,-7.5 parent: 2 - - uid: 10322 + - uid: 37287 components: - type: Transform - pos: 24.5,-32.5 + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 36861 + - uid: 37288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 36861 + - uid: 41772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-11.5 parent: 2 - - uid: 10323 + - uid: 42017 components: - type: Transform - pos: -11.5,-59.5 + rot: -1.5707963267948966 rad + pos: -61.5,-11.5 parent: 2 - - uid: 10324 + - uid: 43112 components: - type: Transform - pos: -11.5,-60.5 + pos: -17.5,-8.5 parent: 2 - - uid: 10325 + - uid: 43116 components: - type: Transform - pos: -11.5,-61.5 + pos: -18.5,-8.5 parent: 2 - - uid: 10326 + - uid: 43117 components: - type: Transform - pos: -11.5,-57.5 + pos: -16.5,-8.5 parent: 2 - - uid: 10327 + - uid: 43150 components: - type: Transform - pos: 17.5,-39.5 + pos: -12.5,-8.5 parent: 2 - - uid: 10328 + - uid: 51907 components: - type: Transform - pos: 18.5,-39.5 + pos: -18.5,-9.5 parent: 2 - - uid: 10329 +- proto: CarpetChapel + entities: + - uid: 9929 components: - type: Transform - pos: 21.5,-39.5 + rot: -1.5707963267948966 rad + pos: -38.5,17.5 parent: 2 - - uid: 10330 + - uid: 9930 components: - type: Transform - pos: 22.5,-39.5 + pos: -38.5,16.5 parent: 2 - - uid: 10331 + - uid: 9931 components: - type: Transform - pos: 22.5,-38.5 + rot: 1.5707963267948966 rad + pos: -32.5,16.5 parent: 2 - - uid: 10332 + - uid: 9932 components: - type: Transform - pos: 22.5,-35.5 + rot: 3.141592653589793 rad + pos: -37.5,17.5 parent: 2 - - uid: 10333 + - uid: 9933 components: - type: Transform - pos: 22.5,-34.5 + rot: 1.5707963267948966 rad + pos: -37.5,16.5 parent: 2 - - uid: 10334 + - uid: 9934 components: - type: Transform - pos: 23.5,-34.5 + pos: -33.5,16.5 parent: 2 - - uid: 10335 + - uid: 9935 components: - type: Transform - pos: 24.5,-33.5 + rot: -1.5707963267948966 rad + pos: -33.5,17.5 parent: 2 - - uid: 10336 + - uid: 9936 components: - type: Transform - pos: 19.5,-40.5 + rot: 3.141592653589793 rad + pos: -32.5,17.5 parent: 2 - - uid: 10337 + - uid: 9937 components: - type: Transform - pos: 19.5,-41.5 + rot: 3.141592653589793 rad + pos: -32.5,19.5 parent: 2 - - uid: 10338 + - uid: 9938 components: - type: Transform - pos: 19.5,-42.5 + rot: 3.141592653589793 rad + pos: -37.5,19.5 parent: 2 - - uid: 10339 + - uid: 9939 components: - type: Transform - pos: 19.5,-45.5 + pos: -38.5,18.5 parent: 2 - - uid: 10340 + - uid: 9940 components: - type: Transform - pos: 19.5,-46.5 + pos: -33.5,18.5 parent: 2 - - uid: 10344 + - uid: 9941 components: - type: Transform - pos: -11.5,-66.5 + rot: -1.5707963267948966 rad + pos: -33.5,19.5 parent: 2 - - uid: 10365 + - uid: 9942 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-50.5 + pos: -32.5,18.5 parent: 2 - - uid: 10366 + - uid: 9943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-52.5 + rot: -1.5707963267948966 rad + pos: -38.5,19.5 parent: 2 - - uid: 10367 + - uid: 9944 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-53.5 + pos: -37.5,18.5 parent: 2 - - uid: 10378 +- proto: CarpetCyan + entities: + - uid: 3468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,41.5 + pos: 13.5,15.5 parent: 2 - - uid: 10389 + - uid: 3469 components: - type: Transform - pos: -52.5,59.5 + pos: 13.5,17.5 parent: 2 - - uid: 10391 + - uid: 3470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-51.5 + pos: 14.5,15.5 parent: 2 - - uid: 10392 + - uid: 3471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,51.5 + pos: 13.5,16.5 parent: 2 - - uid: 10396 + - uid: 3490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,42.5 + pos: 15.5,16.5 parent: 2 - - uid: 10401 + - uid: 4097 components: - type: Transform - pos: -41.5,30.5 + pos: 15.5,15.5 parent: 2 - - uid: 10407 + - uid: 4104 components: - type: Transform - pos: -40.5,30.5 + pos: 15.5,17.5 parent: 2 - - uid: 10413 + - uid: 4105 components: - type: Transform - pos: -15.5,52.5 + pos: 14.5,17.5 parent: 2 - - uid: 10418 + - uid: 4215 components: - type: Transform - pos: -35.5,46.5 + pos: 14.5,16.5 parent: 2 - - uid: 10419 +- proto: CarpetGreen + entities: + - uid: 863 components: - type: Transform - pos: -37.5,31.5 + pos: -5.5,47.5 parent: 2 - - uid: 10420 + - uid: 2359 components: - type: Transform - pos: -40.5,27.5 + pos: -7.5,46.5 parent: 2 - - uid: 10421 + - uid: 3059 components: - type: Transform - pos: -41.5,26.5 + pos: -7.5,47.5 parent: 2 - - uid: 10428 + - uid: 9046 components: - type: Transform - pos: -37.5,29.5 + rot: 1.5707963267948966 rad + pos: -47.5,-72.5 parent: 2 - - uid: 10429 + - uid: 9964 components: - type: Transform - pos: -37.5,28.5 + pos: -28.5,-53.5 parent: 2 - - uid: 10430 + - uid: 9965 components: - type: Transform - pos: -31.5,33.5 + pos: -29.5,-53.5 parent: 2 - - uid: 10431 + - uid: 9966 components: - type: Transform - pos: -32.5,33.5 + pos: -29.5,-54.5 parent: 2 - - uid: 10432 + - uid: 9967 components: - type: Transform - pos: -34.5,33.5 + pos: -28.5,-54.5 parent: 2 - - uid: 10433 + - uid: 9969 components: - type: Transform - pos: -35.5,33.5 + pos: -94.5,-10.5 parent: 2 - - uid: 10434 + - uid: 9970 components: - type: Transform - pos: -36.5,32.5 + pos: -94.5,-9.5 parent: 2 - - uid: 10438 + - uid: 9974 components: - type: Transform - pos: -29.5,47.5 + pos: -13.5,18.5 parent: 2 - - uid: 10466 + - uid: 11048 components: - type: Transform - pos: 30.5,38.5 + pos: -4.5,-7.5 parent: 2 - - uid: 10467 + - uid: 11631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,46.5 + pos: -13.5,17.5 parent: 2 - - uid: 10468 + - uid: 11777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,48.5 + pos: -14.5,19.5 parent: 2 - - uid: 10469 + - uid: 12585 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,49.5 + pos: -3.5,-7.5 parent: 2 - - uid: 10470 + - uid: 12606 components: - type: Transform - pos: 30.5,39.5 + pos: -5.5,-7.5 parent: 2 - - uid: 10471 + - uid: 19609 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,48.5 + pos: -15.5,17.5 parent: 2 - - uid: 10472 + - uid: 20860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,47.5 + pos: -5.5,46.5 parent: 2 - - uid: 10473 + - uid: 22631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,44.5 + pos: -14.5,18.5 parent: 2 - - uid: 10474 + - uid: 25934 components: - type: Transform - pos: 30.5,40.5 + pos: -13.5,19.5 parent: 2 - - uid: 10479 + - uid: 26643 components: - type: Transform - pos: 66.5,32.5 + pos: -6.5,46.5 parent: 2 - - uid: 10493 + - uid: 26955 components: - type: Transform - pos: 47.5,79.5 + pos: -14.5,17.5 parent: 2 - - uid: 10497 + - uid: 27553 components: - type: Transform - pos: 40.5,-39.5 + pos: -6.5,47.5 parent: 2 - - uid: 10498 + - uid: 33513 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-45.5 - parent: 2 - - uid: 10499 + pos: -2.5,19.5 + parent: 33049 + - uid: 33514 + components: + - type: Transform + pos: -1.5,19.5 + parent: 33049 + - uid: 37289 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,10.5 - parent: 2 - - uid: 10500 + pos: 14.5,5.5 + parent: 36861 + - uid: 37290 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,48.5 - parent: 2 - - uid: 10502 + pos: 14.5,4.5 + parent: 36861 + - uid: 41124 components: - type: Transform - pos: 19.5,38.5 + rot: 1.5707963267948966 rad + pos: -47.5,-71.5 parent: 2 - - uid: 10503 + - uid: 41128 components: - type: Transform - pos: 28.5,-65.5 + rot: 1.5707963267948966 rad + pos: -46.5,-70.5 parent: 2 - - uid: 10504 + - uid: 41129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,55.5 + rot: 1.5707963267948966 rad + pos: -46.5,-71.5 parent: 2 - - uid: 10505 + - uid: 41130 components: - type: Transform - pos: 18.5,38.5 + rot: 1.5707963267948966 rad + pos: -46.5,-72.5 parent: 2 - - uid: 10506 + - uid: 41139 components: - type: Transform - pos: -65.5,-23.5 + rot: 1.5707963267948966 rad + pos: -47.5,-70.5 parent: 2 - - uid: 10507 + - uid: 41142 components: - type: Transform - pos: 92.5,29.5 + rot: 1.5707963267948966 rad + pos: -43.5,-70.5 parent: 2 - - uid: 10508 + - uid: 41143 components: - type: Transform - pos: -10.5,15.5 + rot: 1.5707963267948966 rad + pos: -44.5,-70.5 parent: 2 - - uid: 10509 + - uid: 41144 components: - type: Transform - pos: -6.5,15.5 + rot: 1.5707963267948966 rad + pos: -45.5,-70.5 parent: 2 - - uid: 10510 + - uid: 51050 components: - type: Transform - pos: -3.5,15.5 + pos: -15.5,18.5 parent: 2 - - uid: 10511 + - uid: 51681 components: - type: Transform - pos: -8.5,15.5 + pos: -15.5,19.5 parent: 2 - - uid: 10517 + - uid: 53523 components: - type: Transform - pos: 42.5,-36.5 - parent: 2 - - uid: 10518 + pos: -13.5,58.5 + parent: 45711 + - uid: 53524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-45.5 - parent: 2 - - uid: 10519 + pos: -13.5,57.5 + parent: 45711 + - uid: 53525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-45.5 - parent: 2 - - uid: 10520 + pos: -13.5,56.5 + parent: 45711 + - uid: 53526 components: - type: Transform - pos: 42.5,-39.5 - parent: 2 - - uid: 10521 + pos: -13.5,55.5 + parent: 45711 + - uid: 53527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-64.5 - parent: 2 - - uid: 10525 + pos: -12.5,58.5 + parent: 45711 + - uid: 53528 components: - type: Transform - pos: 18.5,59.5 - parent: 2 - - uid: 10533 + pos: -12.5,57.5 + parent: 45711 + - uid: 53529 components: - type: Transform - pos: 92.5,28.5 - parent: 2 - - uid: 10534 + pos: -12.5,56.5 + parent: 45711 + - uid: 53530 components: - type: Transform - pos: 92.5,30.5 - parent: 2 - - uid: 10537 + pos: -12.5,55.5 + parent: 45711 + - uid: 53531 components: - type: Transform - pos: -18.5,-55.5 - parent: 2 - - uid: 10538 + pos: -11.5,58.5 + parent: 45711 + - uid: 53532 components: - type: Transform - pos: -15.5,-55.5 - parent: 2 - - uid: 10539 + pos: -11.5,57.5 + parent: 45711 + - uid: 53533 components: - type: Transform - pos: -21.5,-55.5 - parent: 2 - - uid: 10540 + pos: -11.5,56.5 + parent: 45711 + - uid: 53534 components: - type: Transform - pos: -22.5,-55.5 - parent: 2 - - uid: 10541 + pos: -11.5,55.5 + parent: 45711 +- proto: CarpetOrange + entities: + - uid: 9981 components: - type: Transform - pos: -26.5,-50.5 + pos: 64.5,7.5 parent: 2 - - uid: 10542 + - uid: 9982 components: - type: Transform - pos: -29.5,-50.5 + pos: 64.5,9.5 parent: 2 - - uid: 10543 + - uid: 9984 components: - type: Transform - pos: 39.5,56.5 + pos: 63.5,7.5 parent: 2 - - uid: 10547 + - uid: 9986 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-64.5 + pos: 59.5,6.5 parent: 2 - - uid: 10548 + - uid: 9987 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-66.5 + pos: 57.5,6.5 parent: 2 - - uid: 10555 + - uid: 9988 components: - type: Transform - pos: 20.5,29.5 + pos: 63.5,9.5 parent: 2 - - uid: 10556 + - uid: 9989 components: - type: Transform - pos: 20.5,30.5 + pos: 58.5,6.5 parent: 2 - - uid: 10557 + - uid: 9990 components: - type: Transform - pos: 17.5,60.5 + pos: 63.5,8.5 parent: 2 - - uid: 10560 + - uid: 9992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,43.5 + pos: 64.5,8.5 parent: 2 - - uid: 10561 + - uid: 11563 components: - type: Transform - pos: 21.5,30.5 + pos: -16.5,16.5 parent: 2 - - uid: 10563 + - uid: 12988 components: - type: Transform - pos: 22.5,30.5 + pos: -18.5,16.5 parent: 2 - - uid: 10564 + - uid: 13387 components: - type: Transform - pos: 22.5,29.5 + pos: -17.5,16.5 parent: 2 - - uid: 10565 + - uid: 13785 components: - type: Transform - pos: 21.5,29.5 + pos: -16.5,15.5 parent: 2 - - uid: 10566 + - uid: 13786 components: - type: Transform - pos: 13.5,-30.5 + pos: -18.5,15.5 parent: 2 - - uid: 10569 + - uid: 25350 components: - type: Transform - pos: -18.5,-12.5 + pos: -17.5,15.5 parent: 2 - - uid: 10582 + - uid: 33515 components: - type: Transform - pos: 42.5,74.5 - parent: 2 - - uid: 10599 + pos: -8.5,19.5 + parent: 33049 + - uid: 33516 components: - type: Transform - pos: 66.5,48.5 - parent: 2 - - uid: 10600 + pos: -7.5,19.5 + parent: 33049 + - uid: 36435 components: - type: Transform - pos: -10.5,53.5 + pos: -22.5,-92.5 parent: 2 - - uid: 10603 + - uid: 36437 components: - type: Transform - pos: 66.5,47.5 + pos: -22.5,-93.5 parent: 2 - - uid: 10604 + - uid: 37291 components: - type: Transform - pos: -18.5,-11.5 - parent: 2 - - uid: 10605 + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 36861 + - uid: 37292 components: - type: Transform - pos: -16.5,-11.5 - parent: 2 - - uid: 10607 + rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 36861 + - uid: 45276 components: - type: Transform - pos: 66.5,46.5 + rot: 3.141592653589793 rad + pos: 59.5,7.5 parent: 2 - - uid: 10609 + - uid: 45277 components: - type: Transform - pos: 66.5,49.5 + rot: 3.141592653589793 rad + pos: 58.5,7.5 parent: 2 - - uid: 10611 + - uid: 45278 components: - type: Transform - pos: 66.5,50.5 + rot: 3.141592653589793 rad + pos: 57.5,7.5 parent: 2 - - uid: 10615 +- proto: CarpetPink + entities: + - uid: 1242 components: - type: Transform - pos: 92.5,31.5 + pos: -12.5,-33.5 parent: 2 - - uid: 10616 + - uid: 2470 components: - type: Transform - pos: 92.5,33.5 + pos: -17.5,68.5 parent: 2 - - uid: 10620 + - uid: 11470 components: - type: Transform - pos: -49.5,64.5 + pos: -19.5,69.5 parent: 2 - - uid: 10642 + - uid: 11473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-43.5 + pos: -18.5,69.5 parent: 2 - - uid: 10643 + - uid: 11513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-47.5 + pos: -17.5,69.5 parent: 2 - - uid: 10644 + - uid: 15896 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,26.5 + pos: -19.5,68.5 parent: 2 - - uid: 10645 + - uid: 19576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,27.5 + pos: -10.5,-32.5 parent: 2 - - uid: 10646 + - uid: 20302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,28.5 + rot: 3.141592653589793 rad + pos: -25.5,19.5 parent: 2 - - uid: 10647 + - uid: 20773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,54.5 + rot: 3.141592653589793 rad + pos: -24.5,18.5 parent: 2 - - uid: 10648 + - uid: 20918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,53.5 + pos: -11.5,-32.5 parent: 2 - - uid: 10657 + - uid: 21005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,39.5 + pos: -10.5,-33.5 parent: 2 - - uid: 10658 + - uid: 21268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,38.5 + pos: -25.5,18.5 parent: 2 - - uid: 10659 + - uid: 21666 components: - type: Transform - pos: 39.5,51.5 + pos: -11.5,-33.5 parent: 2 - - uid: 10661 + - uid: 25328 components: - type: Transform - pos: 39.5,52.5 + pos: -24.5,17.5 parent: 2 - - uid: 10662 + - uid: 25378 components: - type: Transform - pos: 36.5,40.5 + pos: -25.5,17.5 parent: 2 - - uid: 10665 + - uid: 25455 components: - type: Transform - pos: -57.5,-15.5 + pos: -12.5,-32.5 parent: 2 - - uid: 10666 + - uid: 36439 components: - type: Transform - pos: -56.5,-16.5 + pos: -20.5,-94.5 parent: 2 - - uid: 10676 + - uid: 36440 components: - type: Transform - pos: 43.5,10.5 + pos: -20.5,-93.5 parent: 2 - - uid: 10677 + - uid: 42063 components: - type: Transform - pos: 46.5,10.5 + rot: 3.141592653589793 rad + pos: -24.5,19.5 parent: 2 - - uid: 10678 + - uid: 42615 components: - type: Transform - pos: 43.5,9.5 + rot: -1.5707963267948966 rad + pos: -18.5,68.5 parent: 2 - - uid: 10679 +- proto: CarpetPurple + entities: + - uid: 1607 components: - type: Transform - pos: 49.5,10.5 + pos: 28.5,-25.5 parent: 2 - - uid: 10683 + - uid: 2010 components: - type: Transform - pos: -29.5,-65.5 + pos: 27.5,-27.5 parent: 2 - - uid: 10684 + - uid: 10017 components: - type: Transform - pos: -25.5,-56.5 + pos: 24.5,-26.5 parent: 2 - - uid: 10685 + - uid: 10018 components: - type: Transform - pos: 44.5,-51.5 + pos: -26.5,12.5 parent: 2 - - uid: 10686 + - uid: 10019 components: - type: Transform - pos: 45.5,-51.5 + pos: -26.5,14.5 parent: 2 - - uid: 10687 + - uid: 10020 components: - type: Transform - pos: -38.5,32.5 + pos: -25.5,14.5 parent: 2 - - uid: 10688 + - uid: 10021 components: - type: Transform - pos: -40.5,32.5 + pos: -25.5,13.5 parent: 2 - - uid: 10689 + - uid: 10022 components: - type: Transform - pos: -40.5,33.5 + pos: -26.5,13.5 parent: 2 - - uid: 10690 + - uid: 10023 components: - type: Transform - pos: -38.5,35.5 + pos: -25.5,15.5 parent: 2 - - uid: 10691 + - uid: 10024 components: - type: Transform - pos: -37.5,35.5 + pos: -25.5,12.5 parent: 2 - - uid: 10692 + - uid: 10025 components: - type: Transform - pos: -13.5,54.5 + pos: -26.5,15.5 parent: 2 - - uid: 10693 + - uid: 10026 components: - type: Transform - pos: -67.5,-13.5 + pos: -27.5,13.5 parent: 2 - - uid: 10694 + - uid: 10027 components: - type: Transform - pos: -65.5,-13.5 + pos: -27.5,14.5 parent: 2 - - uid: 10695 + - uid: 10028 components: - type: Transform - pos: -61.5,-13.5 + pos: -27.5,15.5 parent: 2 - - uid: 10696 + - uid: 10029 components: - type: Transform - pos: -55.5,-11.5 + rot: 3.141592653589793 rad + pos: -27.5,12.5 parent: 2 - - uid: 10697 + - uid: 11485 components: - type: Transform - pos: -55.5,-10.5 + pos: -15.5,30.5 parent: 2 - - uid: 10698 + - uid: 12045 components: - type: Transform - pos: -55.5,-9.5 + pos: 26.5,-25.5 parent: 2 - - uid: 10699 + - uid: 14128 components: - type: Transform - pos: -52.5,-8.5 + pos: 25.5,-27.5 parent: 2 - - uid: 10700 + - uid: 14433 components: - type: Transform - pos: -51.5,-8.5 + pos: 24.5,-25.5 parent: 2 - - uid: 10701 + - uid: 14552 components: - type: Transform - pos: -62.5,-13.5 + pos: -13.5,29.5 parent: 2 - - uid: 10702 + - uid: 15171 components: - type: Transform - pos: -57.5,-13.5 + pos: -14.5,29.5 parent: 2 - - uid: 10703 + - uid: 20178 components: - type: Transform - pos: -70.5,-15.5 + pos: 27.5,-25.5 parent: 2 - - uid: 10704 + - uid: 22037 components: - type: Transform - pos: -71.5,-15.5 + pos: 25.5,-26.5 parent: 2 - - uid: 10705 + - uid: 22387 components: - type: Transform - pos: -95.5,-18.5 + pos: 24.5,-27.5 parent: 2 - - uid: 10706 + - uid: 24991 components: - type: Transform - pos: -67.5,-22.5 + pos: 28.5,-26.5 parent: 2 - - uid: 10707 + - uid: 26490 components: - type: Transform - pos: -67.5,-18.5 + pos: 27.5,-26.5 parent: 2 - - uid: 10708 + - uid: 26713 components: - type: Transform - pos: -66.5,-22.5 + pos: -15.5,29.5 parent: 2 - - uid: 10709 + - uid: 28195 components: - type: Transform - pos: -59.5,-22.5 + pos: -13.5,30.5 parent: 2 - - uid: 10710 + - uid: 31990 components: - type: Transform - pos: -48.5,-22.5 + pos: -14.5,30.5 parent: 2 - - uid: 10711 + - uid: 32953 components: - type: Transform - pos: -41.5,-29.5 + pos: 25.5,-25.5 parent: 2 - - uid: 10712 + - uid: 37293 components: - type: Transform - pos: -70.5,-19.5 - parent: 2 - - uid: 10713 + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 36861 + - uid: 37294 components: - type: Transform - pos: -71.5,-19.5 - parent: 2 - - uid: 10714 + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 36861 + - uid: 47573 components: - type: Transform - pos: -77.5,-21.5 + pos: 26.5,-26.5 parent: 2 - - uid: 10715 + - uid: 47574 components: - type: Transform - pos: -81.5,-22.5 + pos: 26.5,-27.5 parent: 2 - - uid: 10716 + - uid: 47583 components: - type: Transform - pos: -95.5,-19.5 + pos: 28.5,-27.5 parent: 2 - - uid: 10717 +- proto: CarpetSBlue + entities: + - uid: 712 components: - type: Transform - pos: -93.5,-20.5 + rot: 3.141592653589793 rad + pos: 1.5,-3.5 parent: 2 - - uid: 10718 + - uid: 748 components: - type: Transform - pos: -91.5,-21.5 + rot: 3.141592653589793 rad + pos: 3.5,-3.5 parent: 2 - - uid: 10719 + - uid: 824 components: - type: Transform - pos: -92.5,-21.5 + rot: 3.141592653589793 rad + pos: 2.5,-3.5 parent: 2 - - uid: 10720 + - uid: 865 components: - type: Transform - pos: -95.5,-17.5 + rot: 3.141592653589793 rad + pos: 2.5,-2.5 parent: 2 - - uid: 10721 + - uid: 888 components: - type: Transform - pos: -85.5,-24.5 + rot: 3.141592653589793 rad + pos: 3.5,-2.5 parent: 2 - - uid: 10722 + - uid: 1407 components: - type: Transform - pos: -84.5,-23.5 + pos: -19.5,-80.5 parent: 2 - - uid: 10723 + - uid: 1853 components: - type: Transform - pos: -83.5,-24.5 + rot: 3.141592653589793 rad + pos: 1.5,-2.5 parent: 2 - - uid: 10724 + - uid: 3065 components: - type: Transform - pos: -84.5,-25.5 + pos: -14.5,-45.5 parent: 2 - - uid: 10725 + - uid: 3978 components: - type: Transform - pos: -84.5,-24.5 + pos: -17.5,-81.5 parent: 2 - - uid: 10726 + - uid: 8705 components: - type: Transform - pos: -50.5,-22.5 + pos: -18.5,-81.5 parent: 2 - - uid: 10727 + - uid: 10031 components: - type: Transform - pos: -50.5,-25.5 + pos: 12.5,-49.5 parent: 2 - - uid: 10728 + - uid: 10033 components: - type: Transform - pos: -49.5,-26.5 + pos: 13.5,-50.5 parent: 2 - - uid: 10729 + - uid: 10034 components: - type: Transform - pos: -48.5,-26.5 + pos: 15.5,-49.5 parent: 2 - - uid: 10730 + - uid: 10035 components: - type: Transform - pos: -45.5,-29.5 + pos: 15.5,-50.5 parent: 2 - - uid: 10731 + - uid: 10036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-48.5 + pos: 14.5,-50.5 parent: 2 - - uid: 10732 + - uid: 10037 components: - type: Transform - pos: -87.5,-26.5 + pos: 14.5,-49.5 parent: 2 - - uid: 10733 + - uid: 10039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-42.5 + pos: 13.5,-49.5 parent: 2 - - uid: 10734 + - uid: 10040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-42.5 + pos: 12.5,-50.5 parent: 2 - - uid: 10735 + - uid: 10041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-43.5 + rot: -1.5707963267948966 rad + pos: -21.5,-50.5 parent: 2 - - uid: 10736 + - uid: 10042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-41.5 + rot: -1.5707963267948966 rad + pos: -21.5,-51.5 parent: 2 - - uid: 10737 + - uid: 10043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-45.5 + rot: -1.5707963267948966 rad + pos: -20.5,-51.5 parent: 2 - - uid: 10738 + - uid: 10053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-46.5 + pos: -8.5,-54.5 parent: 2 - - uid: 10739 + - uid: 10054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-47.5 + pos: -7.5,-53.5 parent: 2 - - uid: 10740 + - uid: 10055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-47.5 + pos: -8.5,-53.5 parent: 2 - - uid: 10741 + - uid: 10060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-49.5 + rot: -1.5707963267948966 rad + pos: -20.5,-50.5 parent: 2 - - uid: 10742 + - uid: 10061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-44.5 + pos: -7.5,-54.5 parent: 2 - - uid: 10743 + - uid: 10062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-53.5 + pos: -94.5,-4.5 parent: 2 - - uid: 10744 + - uid: 10063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-54.5 + pos: -93.5,-4.5 parent: 2 - - uid: 10745 + - uid: 10073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-55.5 + rot: -1.5707963267948966 rad + pos: -21.5,-47.5 parent: 2 - - uid: 10746 + - uid: 10074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-55.5 + rot: -1.5707963267948966 rad + pos: -20.5,-47.5 parent: 2 - - uid: 10747 + - uid: 10075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-55.5 + rot: -1.5707963267948966 rad + pos: -19.5,-47.5 parent: 2 - - uid: 10748 + - uid: 10076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-57.5 + rot: -1.5707963267948966 rad + pos: -19.5,-46.5 parent: 2 - - uid: 10749 + - uid: 10077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-55.5 + rot: -1.5707963267948966 rad + pos: -20.5,-46.5 parent: 2 - - uid: 10750 + - uid: 10078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-57.5 + rot: -1.5707963267948966 rad + pos: -21.5,-46.5 parent: 2 - - uid: 10751 + - uid: 27399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-58.5 + pos: -12.5,-4.5 parent: 2 - - uid: 10752 + - uid: 32771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-58.5 + pos: -13.5,-5.5 parent: 2 - - uid: 10753 + - uid: 33517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-59.5 - parent: 2 - - uid: 10754 + pos: 4.5,19.5 + parent: 33049 + - uid: 33518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-60.5 - parent: 2 - - uid: 10755 + pos: 3.5,19.5 + parent: 33049 + - uid: 36557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-61.5 + rot: -1.5707963267948966 rad + pos: -17.5,-78.5 parent: 2 - - uid: 10756 + - uid: 36561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-61.5 + rot: -1.5707963267948966 rad + pos: -19.5,-78.5 parent: 2 - - uid: 10757 + - uid: 36562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-60.5 + rot: -1.5707963267948966 rad + pos: -19.5,-79.5 parent: 2 - - uid: 10758 + - uid: 36563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-55.5 + rot: -1.5707963267948966 rad + pos: -18.5,-79.5 parent: 2 - - uid: 10759 + - uid: 36565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-51.5 + rot: -1.5707963267948966 rad + pos: -18.5,-78.5 parent: 2 - - uid: 10760 + - uid: 36566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-51.5 + rot: -1.5707963267948966 rad + pos: -18.5,-77.5 parent: 2 - - uid: 10761 + - uid: 36568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-50.5 + rot: -1.5707963267948966 rad + pos: -17.5,-77.5 parent: 2 - - uid: 10762 + - uid: 36569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-49.5 + rot: -1.5707963267948966 rad + pos: -17.5,-79.5 parent: 2 - - uid: 10763 + - uid: 36571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-47.5 + rot: -1.5707963267948966 rad + pos: -17.5,-80.5 parent: 2 - - uid: 10764 + - uid: 36572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-52.5 + rot: -1.5707963267948966 rad + pos: -18.5,-80.5 parent: 2 - - uid: 10765 + - uid: 37295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-44.5 - parent: 2 - - uid: 10766 + pos: 3.5,15.5 + parent: 36861 + - uid: 37296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-45.5 - parent: 2 - - uid: 10767 + pos: 4.5,15.5 + parent: 36861 + - uid: 37297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-45.5 - parent: 2 - - uid: 10768 + pos: 4.5,14.5 + parent: 36861 + - uid: 37298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-43.5 - parent: 2 - - uid: 10769 + pos: 4.5,14.5 + parent: 36861 + - uid: 37299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-42.5 - parent: 2 - - uid: 10770 + pos: 3.5,14.5 + parent: 36861 + - uid: 37300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-39.5 - parent: 2 - - uid: 10771 + pos: 3.5,13.5 + parent: 36861 + - uid: 37301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-39.5 - parent: 2 - - uid: 10772 + pos: 4.5,13.5 + parent: 36861 + - uid: 42019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-38.5 + rot: -1.5707963267948966 rad + pos: -62.5,-9.5 parent: 2 - - uid: 10773 + - uid: 42020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-40.5 + rot: -1.5707963267948966 rad + pos: -61.5,-9.5 parent: 2 - - uid: 10774 + - uid: 43121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-39.5 + pos: -14.5,-4.5 parent: 2 - - uid: 10775 + - uid: 43123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-41.5 + pos: -12.5,-5.5 parent: 2 - - uid: 10776 + - uid: 43126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-51.5 + pos: -13.5,-4.5 parent: 2 - - uid: 10777 + - uid: 43138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-50.5 + pos: -14.5,-5.5 parent: 2 - - uid: 10778 + - uid: 51399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-49.5 + pos: -14.5,-46.5 parent: 2 - - uid: 10779 + - uid: 51400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-65.5 + pos: -13.5,-45.5 parent: 2 - - uid: 10780 + - uid: 51401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-64.5 + pos: -12.5,-45.5 parent: 2 - - uid: 10781 + - uid: 51402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-64.5 + pos: -13.5,-46.5 parent: 2 - - uid: 10782 + - uid: 51403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-64.5 + pos: -12.5,-46.5 parent: 2 - - uid: 10783 + - uid: 51404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-65.5 + pos: -14.5,-44.5 parent: 2 - - uid: 10785 + - uid: 51405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-66.5 + pos: -13.5,-44.5 parent: 2 - - uid: 10786 + - uid: 51406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-67.5 + pos: -12.5,-44.5 parent: 2 - - uid: 10787 +- proto: CarpStatue + entities: + - uid: 44528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-67.5 + pos: 66.5,-26.5 parent: 2 - - uid: 10790 + - uid: 44675 components: - type: Transform - pos: -36.5,-70.5 + pos: 67.5,-30.5 parent: 2 - - uid: 10791 +- proto: CarrotSeeds + entities: + - uid: 17925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-71.5 + pos: -11.083813,-33.631107 parent: 2 - - uid: 10792 +- proto: CartridgePistol + entities: + - uid: 32862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-71.5 - parent: 2 - - uid: 10793 + pos: -2.7623596,10.407745 + parent: 34641 + - uid: 35032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-72.5 - parent: 2 - - uid: 10794 + rot: 1.5707963267948966 rad + pos: -1.3973923,10.460454 + parent: 34641 + - uid: 35034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-72.5 - parent: 2 - - uid: 10795 + pos: -2.1942673,10.804204 + parent: 34641 + - uid: 35035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-72.5 - parent: 2 - - uid: 10801 + pos: -1.9130173,10.226079 + parent: 34641 + - uid: 35036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-71.5 - parent: 2 - - uid: 10802 + pos: -1.3348923,10.585454 + parent: 34641 + - uid: 35037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-71.5 - parent: 2 - - uid: 10803 + pos: -2.4598923,10.757329 + parent: 34641 +- proto: Catwalk + entities: + - uid: 34 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-71.5 + pos: 9.5,-29.5 parent: 2 - - uid: 10804 + - uid: 123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-71.5 + pos: -13.5,-12.5 parent: 2 - - uid: 10805 + - uid: 200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-72.5 + pos: 66.5,28.5 parent: 2 - - uid: 10806 + - uid: 324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-72.5 + pos: -32.5,-46.5 parent: 2 - - uid: 10807 + - uid: 365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-72.5 + pos: 66.5,31.5 parent: 2 - - uid: 10808 + - uid: 366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-72.5 + pos: 66.5,29.5 parent: 2 - - uid: 10813 + - uid: 375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-72.5 + pos: -41.5,54.5 parent: 2 - - uid: 10814 + - uid: 386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-72.5 + pos: 19.5,63.5 parent: 2 - - uid: 10815 + - uid: 457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-64.5 + pos: -54.5,37.5 parent: 2 - - uid: 10816 + - uid: 484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-65.5 + pos: -40.5,53.5 parent: 2 - - uid: 10818 + - uid: 512 components: - type: Transform - pos: -17.5,-67.5 + pos: 51.5,11.5 parent: 2 - - uid: 10819 + - uid: 514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-66.5 + pos: 27.5,7.5 parent: 2 - - uid: 10820 + - uid: 711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-66.5 + pos: 14.5,53.5 parent: 2 - - uid: 10823 + - uid: 736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-65.5 + pos: 28.5,44.5 parent: 2 - - uid: 10824 + - uid: 761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-65.5 + pos: -0.5,-7.5 parent: 2 - - uid: 10827 + - uid: 762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-65.5 + pos: -0.5,-6.5 parent: 2 - - uid: 10828 + - uid: 770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-3.5 + pos: 39.5,50.5 parent: 2 - - uid: 10829 + - uid: 771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-2.5 + pos: 39.5,41.5 parent: 2 - - uid: 10830 + - uid: 777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-4.5 + pos: 28.5,49.5 parent: 2 - - uid: 10831 + - uid: 787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-1.5 + pos: -46.5,-7.5 parent: 2 - - uid: 10832 + - uid: 1026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-0.5 + pos: 51.5,34.5 parent: 2 - - uid: 10851 + - uid: 1141 components: - type: Transform - pos: 29.5,44.5 + pos: 92.5,41.5 parent: 2 - - uid: 10852 + - uid: 1143 components: - type: Transform - pos: 30.5,44.5 + pos: 92.5,40.5 parent: 2 - - uid: 10853 + - uid: 1153 components: - type: Transform - pos: 78.5,0.5 + pos: 60.5,22.5 parent: 2 - - uid: 10854 + - uid: 1160 components: - type: Transform - pos: 78.5,1.5 + pos: 45.5,31.5 parent: 2 - - uid: 10855 + - uid: 1162 components: - type: Transform - pos: 78.5,2.5 + pos: 38.5,20.5 parent: 2 - - uid: 10856 + - uid: 1224 components: - type: Transform - pos: 78.5,3.5 + pos: 54.5,22.5 parent: 2 - - uid: 10857 + - uid: 1253 components: - type: Transform - pos: 78.5,4.5 + pos: -40.5,54.5 parent: 2 - - uid: 10858 + - uid: 1536 components: - type: Transform - pos: 78.5,5.5 + pos: 54.5,18.5 parent: 2 - - uid: 10859 + - uid: 1597 components: - type: Transform - pos: 78.5,6.5 + pos: -39.5,54.5 parent: 2 - - uid: 10860 + - uid: 1646 components: - type: Transform - pos: 78.5,7.5 + pos: 54.5,24.5 parent: 2 - - uid: 10861 + - uid: 1653 components: - type: Transform - pos: 79.5,0.5 + pos: 54.5,28.5 parent: 2 - - uid: 10862 + - uid: 1732 components: - type: Transform - pos: 79.5,1.5 + pos: -23.5,-32.5 parent: 2 - - uid: 10863 + - uid: 1963 components: - type: Transform - pos: 79.5,2.5 + pos: -32.5,-47.5 parent: 2 - - uid: 10864 + - uid: 2050 components: - type: Transform - pos: 79.5,3.5 + pos: 49.5,28.5 parent: 2 - - uid: 10865 + - uid: 2120 components: - type: Transform - pos: 79.5,4.5 + pos: 54.5,14.5 parent: 2 - - uid: 10866 + - uid: 2520 components: - type: Transform - pos: 79.5,5.5 + pos: 39.5,42.5 parent: 2 - - uid: 10867 + - uid: 2529 components: - type: Transform - pos: 79.5,6.5 + pos: 39.5,43.5 parent: 2 - - uid: 10868 + - uid: 2530 components: - type: Transform - pos: 79.5,7.5 + pos: 39.5,44.5 parent: 2 - - uid: 10869 + - uid: 2531 components: - type: Transform - pos: 80.5,0.5 + pos: 39.5,45.5 parent: 2 - - uid: 10870 + - uid: 2532 components: - type: Transform - pos: 80.5,1.5 + pos: 39.5,46.5 parent: 2 - - uid: 10871 + - uid: 2533 components: - type: Transform - pos: 80.5,2.5 + pos: 39.5,47.5 parent: 2 - - uid: 10872 + - uid: 2534 components: - type: Transform - pos: 80.5,3.5 + pos: 39.5,48.5 parent: 2 - - uid: 10873 + - uid: 2535 components: - type: Transform - pos: 80.5,4.5 + pos: 39.5,49.5 parent: 2 - - uid: 10874 + - uid: 2911 components: - type: Transform - pos: 80.5,5.5 + pos: 54.5,9.5 parent: 2 - - uid: 10875 + - uid: 2958 components: - type: Transform - pos: 80.5,6.5 + pos: -8.5,-70.5 parent: 2 - - uid: 10876 + - uid: 2979 components: - type: Transform - pos: 80.5,7.5 + pos: -5.5,-72.5 parent: 2 - - uid: 10877 + - uid: 3443 components: - type: Transform - pos: 81.5,1.5 + rot: 3.141592653589793 rad + pos: 35.5,38.5 parent: 2 - - uid: 10878 + - uid: 3450 components: - type: Transform - pos: 81.5,2.5 + rot: 3.141592653589793 rad + pos: 33.5,38.5 parent: 2 - - uid: 10879 + - uid: 3871 components: - type: Transform - pos: 81.5,3.5 + pos: -5.5,-73.5 parent: 2 - - uid: 10880 + - uid: 3879 components: - type: Transform - pos: 81.5,4.5 + pos: -5.5,-74.5 parent: 2 - - uid: 10881 + - uid: 4259 components: - type: Transform - pos: 81.5,5.5 + rot: 3.141592653589793 rad + pos: 43.5,33.5 parent: 2 - - uid: 10882 + - uid: 4297 components: - type: Transform - pos: 81.5,6.5 + rot: 1.5707963267948966 rad + pos: -49.5,34.5 parent: 2 - - uid: 10883 + - uid: 4865 components: - type: Transform - pos: 77.5,7.5 + pos: 53.5,34.5 parent: 2 - - uid: 10884 + - uid: 4975 components: - type: Transform - pos: 76.5,7.5 + pos: -50.5,40.5 parent: 2 - - uid: 10885 + - uid: 5107 components: - type: Transform - pos: 76.5,8.5 + pos: -6.5,-72.5 parent: 2 - - uid: 10886 + - uid: 5108 components: - type: Transform - pos: 77.5,8.5 + pos: -6.5,-74.5 parent: 2 - - uid: 10887 + - uid: 5392 components: - type: Transform - pos: 78.5,8.5 + pos: 53.5,31.5 parent: 2 - - uid: 10888 + - uid: 5428 components: - type: Transform - pos: -60.5,-24.5 + pos: 48.5,83.5 parent: 2 - - uid: 10889 + - uid: 5460 components: - type: Transform - pos: -51.5,-24.5 + pos: -46.5,34.5 parent: 2 - - uid: 10890 + - uid: 5570 components: - type: Transform - pos: -56.5,-23.5 + pos: -48.5,-9.5 parent: 2 - - uid: 10891 + - uid: 5571 components: - type: Transform - pos: -55.5,-23.5 + pos: -49.5,-9.5 parent: 2 - - uid: 10892 + - uid: 5596 components: - type: Transform - pos: 22.5,38.5 + pos: -41.5,16.5 parent: 2 - - uid: 10893 + - uid: 5639 components: - type: Transform - pos: -63.5,-23.5 + pos: 48.5,84.5 parent: 2 - - uid: 10894 + - uid: 5647 components: - type: Transform - pos: -62.5,-23.5 + pos: 48.5,85.5 parent: 2 - - uid: 10895 + - uid: 5652 components: - type: Transform - pos: -61.5,-23.5 + pos: 48.5,87.5 parent: 2 - - uid: 10896 + - uid: 5656 components: - type: Transform - pos: -54.5,-22.5 + pos: -46.5,-8.5 parent: 2 - - uid: 10897 + - uid: 6108 components: - type: Transform - pos: -53.5,-23.5 + pos: 38.5,21.5 parent: 2 - - uid: 10898 + - uid: 6115 components: - type: Transform - pos: -51.5,-23.5 + pos: 37.5,21.5 parent: 2 - - uid: 10899 + - uid: 6154 components: - type: Transform - pos: -48.5,-24.5 + pos: 45.5,8.5 parent: 2 - - uid: 10900 + - uid: 6184 components: - type: Transform - pos: -47.5,-24.5 + pos: 66.5,45.5 parent: 2 - - uid: 10901 + - uid: 6227 components: - type: Transform - pos: -45.5,-27.5 + pos: 66.5,44.5 parent: 2 - - uid: 10902 + - uid: 6229 components: - type: Transform - pos: -45.5,-24.5 + pos: 58.5,12.5 parent: 2 - - uid: 10903 + - uid: 6235 components: - type: Transform - pos: -42.5,-28.5 + pos: 60.5,13.5 parent: 2 - - uid: 10904 + - uid: 6256 components: - type: Transform - pos: -42.5,-27.5 + pos: 92.5,42.5 parent: 2 - - uid: 10905 + - uid: 6258 components: - type: Transform - pos: -46.5,-26.5 + pos: 59.5,12.5 parent: 2 - - uid: 10906 + - uid: 6313 components: - type: Transform - pos: -67.5,-24.5 + pos: 53.5,30.5 parent: 2 - - uid: 10907 + - uid: 6381 components: - type: Transform - pos: -67.5,-21.5 + pos: 92.5,45.5 parent: 2 - - uid: 10908 + - uid: 6544 components: - type: Transform - pos: -76.5,-20.5 + pos: 46.5,8.5 parent: 2 - - uid: 10909 + - uid: 6556 components: - type: Transform - pos: -74.5,-19.5 + pos: 42.5,30.5 parent: 2 - - uid: 10910 + - uid: 6559 components: - type: Transform - pos: -74.5,-20.5 + pos: 42.5,29.5 parent: 2 - - uid: 10911 + - uid: 6564 components: - type: Transform - pos: -73.5,-19.5 + pos: 53.5,33.5 parent: 2 - - uid: 10912 + - uid: 6585 components: - type: Transform - pos: -91.5,-24.5 + pos: 48.5,8.5 parent: 2 - - uid: 10913 + - uid: 6586 components: - type: Transform - pos: -90.5,-24.5 + pos: 51.5,9.5 parent: 2 - - uid: 10914 + - uid: 6758 components: - type: Transform - pos: -88.5,-25.5 + pos: 41.5,29.5 parent: 2 - - uid: 10915 + - uid: 6767 components: - type: Transform - pos: -88.5,-26.5 + rot: 1.5707963267948966 rad + pos: -55.5,33.5 parent: 2 - - uid: 10916 + - uid: 6770 components: - type: Transform - pos: -81.5,-26.5 + rot: 1.5707963267948966 rad + pos: -55.5,40.5 parent: 2 - - uid: 10917 + - uid: 6772 components: - type: Transform - pos: -82.5,-27.5 + rot: 1.5707963267948966 rad + pos: -55.5,39.5 parent: 2 - - uid: 10919 + - uid: 6774 components: - type: Transform - pos: -36.5,40.5 + rot: 1.5707963267948966 rad + pos: -55.5,34.5 parent: 2 - - uid: 10920 + - uid: 6799 components: - type: Transform - pos: -36.5,43.5 + rot: 1.5707963267948966 rad + pos: -47.5,32.5 parent: 2 - - uid: 10921 + - uid: 6844 components: - type: Transform - pos: -35.5,44.5 + pos: -6.5,-73.5 parent: 2 - - uid: 10922 + - uid: 6880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-2.5 + rot: 1.5707963267948966 rad + pos: -52.5,32.5 parent: 2 - - uid: 10923 + - uid: 6886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-0.5 + rot: 1.5707963267948966 rad + pos: -50.5,33.5 parent: 2 - - uid: 10924 + - uid: 6934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-1.5 + pos: -10.5,-56.5 parent: 2 - - uid: 10925 + - uid: 6967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-3.5 + rot: 3.141592653589793 rad + pos: 34.5,38.5 parent: 2 - - uid: 10926 + - uid: 6968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-4.5 + rot: 3.141592653589793 rad + pos: 32.5,38.5 parent: 2 - - uid: 10927 + - uid: 6993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-5.5 + pos: 17.5,61.5 parent: 2 - - uid: 10928 + - uid: 7008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-5.5 + rot: 3.141592653589793 rad + pos: 43.5,37.5 parent: 2 - - uid: 10929 + - uid: 7038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-0.5 + pos: 53.5,32.5 parent: 2 - - uid: 10930 + - uid: 7040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-1.5 + pos: 66.5,42.5 parent: 2 - - uid: 10931 + - uid: 7127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-2.5 + rot: 1.5707963267948966 rad + pos: -52.5,50.5 parent: 2 - - uid: 10932 + - uid: 7129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-3.5 + rot: 1.5707963267948966 rad + pos: -52.5,52.5 parent: 2 - - uid: 10933 + - uid: 7383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-4.5 + pos: 30.5,-49.5 parent: 2 - - uid: 10934 + - uid: 7650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-5.5 + pos: 48.5,-47.5 parent: 2 - - uid: 10935 + - uid: 7662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-5.5 + pos: 44.5,29.5 parent: 2 - - uid: 10936 + - uid: 7679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-4.5 + pos: 52.5,34.5 parent: 2 - - uid: 10937 + - uid: 7814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-3.5 + pos: -11.5,50.5 parent: 2 - - uid: 10938 + - uid: 7839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-2.5 + pos: 43.5,21.5 parent: 2 - - uid: 10939 + - uid: 7844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-1.5 + pos: 92.5,44.5 parent: 2 - - uid: 10940 + - uid: 7847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-0.5 + pos: 43.5,20.5 parent: 2 - - uid: 10941 + - uid: 7851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,0.5 + pos: 47.5,20.5 parent: 2 - - uid: 10942 + - uid: 7862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-64.5 + pos: 92.5,47.5 parent: 2 - - uid: 10944 + - uid: 7866 components: - type: Transform - pos: 32.5,-46.5 + pos: 92.5,46.5 parent: 2 - - uid: 10946 + - uid: 7882 components: - type: Transform - pos: 35.5,-40.5 + pos: 47.5,21.5 parent: 2 - - uid: 10947 + - uid: 7997 components: - type: Transform - pos: 35.5,-39.5 + pos: 9.5,-11.5 parent: 2 - - uid: 10948 + - uid: 8116 components: - type: Transform - pos: 35.5,-38.5 + pos: -42.5,25.5 parent: 2 - - uid: 10949 + - uid: 8250 components: - type: Transform - pos: 36.5,-41.5 + rot: 3.141592653589793 rad + pos: 27.5,44.5 parent: 2 - - uid: 10950 + - uid: 8275 components: - type: Transform - pos: 36.5,-42.5 + pos: 36.5,-10.5 parent: 2 - - uid: 10952 + - uid: 8462 components: - type: Transform - pos: 38.5,-42.5 + rot: 3.141592653589793 rad + pos: 26.5,44.5 parent: 2 - - uid: 10953 + - uid: 8509 components: - type: Transform - pos: 38.5,-43.5 + pos: 92.5,43.5 parent: 2 - - uid: 10954 + - uid: 8992 components: - type: Transform - pos: 39.5,-44.5 + pos: -59.5,60.5 parent: 2 - - uid: 10955 + - uid: 9036 components: - type: Transform - pos: 40.5,-44.5 + pos: 49.5,-47.5 parent: 2 - - uid: 10956 + - uid: 9142 components: - type: Transform - pos: 40.5,-42.5 + pos: -52.5,48.5 parent: 2 - - uid: 10957 + - uid: 9143 components: - type: Transform - pos: 41.5,-42.5 + pos: 36.5,-9.5 parent: 2 - - uid: 10958 + - uid: 9414 components: - type: Transform - pos: 42.5,-43.5 + pos: 50.5,-43.5 parent: 2 - - uid: 10959 + - uid: 9549 components: - type: Transform - pos: 43.5,-43.5 + pos: 37.5,22.5 parent: 2 - - uid: 10960 + - uid: 9550 components: - type: Transform - pos: 44.5,-43.5 + pos: 38.5,22.5 parent: 2 - - uid: 10961 + - uid: 9551 components: - type: Transform - pos: 44.5,-42.5 + pos: 39.5,22.5 parent: 2 - - uid: 10962 + - uid: 9552 components: - type: Transform - pos: 43.5,-44.5 + pos: 39.5,21.5 parent: 2 - - uid: 10963 + - uid: 9579 components: - type: Transform - pos: 45.5,-44.5 + pos: 51.5,-43.5 parent: 2 - - uid: 10964 + - uid: 9580 components: - type: Transform - pos: 47.5,-42.5 + pos: 52.5,-43.5 parent: 2 - - uid: 10965 + - uid: 9634 components: - type: Transform - pos: 46.5,-42.5 + pos: -35.5,-70.5 parent: 2 - - uid: 10966 + - uid: 9635 components: - type: Transform - pos: 48.5,-42.5 + pos: -37.5,-70.5 parent: 2 - - uid: 10967 + - uid: 9639 components: - type: Transform - pos: 49.5,-43.5 + pos: -31.5,-70.5 parent: 2 - - uid: 10968 + - uid: 9640 components: - type: Transform - pos: 48.5,-44.5 + pos: -30.5,-70.5 parent: 2 - - uid: 10969 + - uid: 9641 components: - type: Transform - pos: 47.5,-44.5 + pos: -30.5,-71.5 parent: 2 - - uid: 10970 + - uid: 9642 components: - type: Transform - pos: 50.5,-44.5 + pos: -30.5,-72.5 parent: 2 - - uid: 10971 + - uid: 9643 components: - type: Transform - pos: 51.5,-44.5 + pos: -29.5,-72.5 parent: 2 - - uid: 10973 + - uid: 9653 components: - type: Transform - pos: 29.5,-64.5 + pos: -21.5,-70.5 parent: 2 - - uid: 10977 + - uid: 9654 components: - type: Transform - pos: 53.5,-42.5 + pos: -19.5,-70.5 parent: 2 - - uid: 10980 + - uid: 9655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-45.5 + pos: -20.5,-70.5 parent: 2 - - uid: 10981 + - uid: 9657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,45.5 + pos: -17.5,-69.5 parent: 2 - - uid: 10983 + - uid: 9658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,44.5 + pos: -17.5,-70.5 parent: 2 - - uid: 10984 + - uid: 9661 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-64.5 + pos: -16.5,-67.5 parent: 2 - - uid: 10985 + - uid: 9682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-64.5 + pos: -11.5,-65.5 parent: 2 - - uid: 10987 + - uid: 9731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-61.5 + pos: 53.5,-43.5 parent: 2 - - uid: 10988 + - uid: 9732 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-60.5 + pos: 54.5,-43.5 parent: 2 - - uid: 10989 + - uid: 9734 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-59.5 + pos: 55.5,-43.5 parent: 2 - - uid: 10990 + - uid: 9830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-58.5 + pos: -11.5,-63.5 parent: 2 - - uid: 10991 + - uid: 9855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-57.5 + pos: -11.5,-64.5 parent: 2 - - uid: 10992 + - uid: 9918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-61.5 + pos: -42.5,10.5 parent: 2 - - uid: 10993 + - uid: 9919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-60.5 + pos: -41.5,10.5 parent: 2 - - uid: 10994 + - uid: 9924 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-59.5 + pos: -41.5,19.5 parent: 2 - - uid: 10995 + - uid: 9927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-58.5 + pos: -41.5,17.5 parent: 2 - - uid: 10996 + - uid: 9928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-57.5 + pos: -41.5,15.5 parent: 2 - - uid: 10997 + - uid: 9945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-56.5 + pos: -41.5,13.5 parent: 2 - - uid: 10998 + - uid: 9958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-60.5 + pos: -41.5,12.5 parent: 2 - - uid: 10999 + - uid: 10079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-59.5 + pos: -57.5,-23.5 parent: 2 - - uid: 11000 + - uid: 10080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-58.5 + pos: 66.5,43.5 parent: 2 - - uid: 11001 + - uid: 10082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-57.5 + pos: 23.5,30.5 parent: 2 - - uid: 11002 + - uid: 10083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-67.5 + pos: 23.5,29.5 parent: 2 - - uid: 11003 + - uid: 10084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-68.5 + pos: 30.5,6.5 parent: 2 - - uid: 11004 + - uid: 10086 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-69.5 + pos: 29.5,6.5 parent: 2 - - uid: 11005 + - uid: 10087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-70.5 + pos: -27.5,-56.5 parent: 2 - - uid: 11006 + - uid: 10092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-71.5 + pos: 35.5,-44.5 parent: 2 - - uid: 11007 + - uid: 10100 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-67.5 + pos: 41.5,-41.5 parent: 2 - - uid: 11008 + - uid: 10101 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-68.5 + pos: 20.5,28.5 parent: 2 - - uid: 11009 + - uid: 10102 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-69.5 + pos: 20.5,27.5 parent: 2 - - uid: 11010 + - uid: 10103 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-70.5 + pos: 20.5,26.5 parent: 2 - - uid: 11011 + - uid: 10104 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-71.5 + pos: 22.5,28.5 parent: 2 - - uid: 11012 + - uid: 10105 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-72.5 + pos: 22.5,26.5 parent: 2 - - uid: 11013 + - uid: 10106 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-67.5 + pos: 22.5,27.5 parent: 2 - - uid: 11014 + - uid: 10107 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-68.5 + pos: 23.5,27.5 parent: 2 - - uid: 11015 + - uid: 10108 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-69.5 + pos: 23.5,26.5 parent: 2 - - uid: 11016 + - uid: 10109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-70.5 + pos: 26.5,7.5 parent: 2 - - uid: 11017 + - uid: 10110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-71.5 + pos: 23.5,28.5 parent: 2 - - uid: 11018 + - uid: 10114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-64.5 + pos: -10.5,-12.5 parent: 2 - - uid: 11019 + - uid: 10115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-64.5 + pos: -45.5,-28.5 parent: 2 - - uid: 11020 + - uid: 10116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-66.5 + pos: -1.5,-7.5 parent: 2 - - uid: 11021 + - uid: 10117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-64.5 + pos: -35.5,45.5 parent: 2 - - uid: 11022 + - uid: 10124 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,-64.5 + pos: 39.5,-47.5 parent: 2 - - uid: 11023 + - uid: 10125 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-64.5 + pos: 40.5,-46.5 parent: 2 - - uid: 11024 + - uid: 10129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-64.5 + pos: 14.5,-11.5 parent: 2 - - uid: 11025 + - uid: 10130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-64.5 + pos: -30.5,-56.5 parent: 2 - - uid: 11026 + - uid: 10131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-64.5 + pos: 33.5,-36.5 parent: 2 - - uid: 11027 + - uid: 10132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-64.5 + pos: -25.5,-65.5 parent: 2 - - uid: 11028 + - uid: 10134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-64.5 + pos: -32.5,-65.5 parent: 2 - - uid: 11029 + - uid: 10135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-64.5 + pos: 7.5,-27.5 parent: 2 - - uid: 11030 + - uid: 10136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-64.5 + pos: 23.5,-29.5 parent: 2 - - uid: 11031 + - uid: 10140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-65.5 + pos: -9.5,-12.5 parent: 2 - - uid: 11032 + - uid: 10142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-63.5 + rot: 1.5707963267948966 rad + pos: -4.5,-13.5 parent: 2 - - uid: 11033 + - uid: 10144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-62.5 + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 parent: 2 - - uid: 11034 + - uid: 10145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-66.5 + rot: 1.5707963267948966 rad + pos: 3.5,-13.5 parent: 2 - - uid: 11035 + - uid: 10147 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-65.5 + pos: -1.5,-6.5 parent: 2 - - uid: 11036 + - uid: 10149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-63.5 + pos: -25.5,-60.5 parent: 2 - - uid: 11037 + - uid: 10150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-62.5 + pos: -25.5,-64.5 parent: 2 - - uid: 11038 + - uid: 10152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-65.5 + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 parent: 2 - - uid: 11039 + - uid: 10153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-63.5 + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 parent: 2 - - uid: 11040 + - uid: 10154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-62.5 + rot: 1.5707963267948966 rad + pos: -5.5,-13.5 parent: 2 - - uid: 11041 + - uid: 10155 components: - type: Transform - pos: 27.5,43.5 + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 parent: 2 - - uid: 11050 + - uid: 10156 components: - type: Transform - pos: -44.5,60.5 + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 parent: 2 - - uid: 11238 + - uid: 10157 components: - type: Transform - pos: 20.5,60.5 + pos: 10.5,-10.5 parent: 2 - - uid: 11240 + - uid: 10162 components: - type: Transform - pos: 18.5,60.5 + rot: 1.5707963267948966 rad + pos: 12.5,-8.5 parent: 2 - - uid: 11426 + - uid: 10163 components: - type: Transform - pos: -48.5,64.5 + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 parent: 2 - - uid: 11727 + - uid: 10164 components: - type: Transform - pos: 19.5,60.5 + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 parent: 2 - - uid: 11775 + - uid: 10165 components: - type: Transform - pos: 21.5,59.5 + rot: 1.5707963267948966 rad + pos: 16.5,-8.5 parent: 2 - - uid: 11787 + - uid: 10166 components: - type: Transform - pos: -50.5,64.5 + rot: 1.5707963267948966 rad + pos: 17.5,-8.5 parent: 2 - - uid: 11790 + - uid: 10167 components: - type: Transform - pos: -15.5,67.5 + pos: 37.5,-42.5 parent: 2 - - uid: 11791 + - uid: 10168 components: - type: Transform - pos: -14.5,67.5 + pos: 34.5,-39.5 parent: 2 - - uid: 11796 + - uid: 10171 components: - type: Transform - pos: 19.5,61.5 + pos: 40.5,-38.5 parent: 2 - - uid: 11867 + - uid: 10172 components: - type: Transform - pos: 18.5,61.5 + pos: 7.5,-30.5 parent: 2 - - uid: 11896 + - uid: 10173 components: - type: Transform - pos: 47.5,28.5 + pos: 3.5,-30.5 parent: 2 - - uid: 12009 + - uid: 10174 components: - type: Transform - pos: 20.5,61.5 + pos: 5.5,-30.5 parent: 2 - - uid: 12046 + - uid: 10175 components: - type: Transform - pos: -52.5,62.5 + pos: 5.5,-29.5 parent: 2 - - uid: 12134 + - uid: 10176 components: - type: Transform - pos: 34.5,50.5 + pos: 6.5,-30.5 parent: 2 - - uid: 12148 + - uid: 10177 components: - type: Transform - pos: 33.5,50.5 + pos: 6.5,-27.5 parent: 2 - - uid: 12149 + - uid: 10178 components: - type: Transform - pos: -15.5,55.5 + pos: 5.5,-27.5 parent: 2 - - uid: 12172 + - uid: 10180 components: - type: Transform - pos: 32.5,50.5 + pos: 8.5,-14.5 parent: 2 - - uid: 12174 + - uid: 10181 components: - type: Transform - pos: 35.5,50.5 + pos: 8.5,-12.5 parent: 2 - - uid: 12217 + - uid: 10183 components: - type: Transform - pos: 31.5,50.5 + pos: 8.5,-29.5 parent: 2 - - uid: 13220 + - uid: 10184 components: - type: Transform - pos: -20.5,-84.5 + pos: 22.5,-29.5 parent: 2 - - uid: 13792 + - uid: 10185 components: - type: Transform - pos: -21.5,-84.5 + pos: 10.5,-29.5 parent: 2 - - uid: 13793 + - uid: 10186 components: - type: Transform - pos: -19.5,-84.5 + pos: 13.5,-29.5 parent: 2 - - uid: 13949 + - uid: 10187 components: - type: Transform - pos: -7.5,-70.5 + pos: 13.5,-32.5 parent: 2 - - uid: 13950 + - uid: 10188 components: - type: Transform - pos: -11.5,-69.5 + pos: 10.5,-32.5 parent: 2 - - uid: 14025 + - uid: 10189 components: - type: Transform - pos: -51.5,64.5 + pos: 15.5,-32.5 parent: 2 - - uid: 14159 + - uid: 10190 components: - type: Transform - pos: -22.5,-32.5 + pos: 19.5,-29.5 parent: 2 - - uid: 14203 + - uid: 10191 components: - type: Transform - pos: 44.5,87.5 + pos: 17.5,-32.5 parent: 2 - - uid: 14218 + - uid: 10192 components: - type: Transform - pos: 43.5,87.5 + pos: 18.5,-32.5 parent: 2 - - uid: 14286 + - uid: 10193 components: - type: Transform - pos: 42.5,87.5 + pos: 17.5,-29.5 parent: 2 - - uid: 14318 + - uid: 10194 components: - type: Transform - pos: 41.5,87.5 + pos: 8.5,-32.5 parent: 2 - - uid: 14325 + - uid: 10195 components: - type: Transform - pos: 38.5,41.5 + pos: 8.5,-31.5 parent: 2 - - uid: 14333 + - uid: 10196 components: - type: Transform - pos: 40.5,87.5 + pos: 20.5,-29.5 parent: 2 - - uid: 14368 + - uid: 10200 components: - type: Transform - pos: 39.5,87.5 + pos: 8.5,-16.5 parent: 2 - - uid: 14407 + - uid: 10201 components: - type: Transform - pos: 38.5,87.5 + pos: -31.5,-49.5 parent: 2 - - uid: 14583 + - uid: 10206 components: - type: Transform - pos: -67.5,-64.5 + pos: -49.5,-13.5 parent: 2 - - uid: 14836 + - uid: 10207 components: - type: Transform - pos: -52.5,63.5 + pos: -50.5,-13.5 parent: 2 - - uid: 14863 + - uid: 10213 components: - type: Transform - pos: 48.5,86.5 + pos: 34.5,6.5 parent: 2 - - uid: 14869 + - uid: 10214 components: - type: Transform - pos: 60.5,19.5 + pos: 35.5,6.5 parent: 2 - - uid: 15032 + - uid: 10215 components: - type: Transform - pos: 43.5,4.5 + pos: 38.5,6.5 parent: 2 - - uid: 15439 + - uid: 10216 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,37.5 + pos: 40.5,6.5 parent: 2 - - uid: 15463 + - uid: 10217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,46.5 + pos: 39.5,6.5 parent: 2 - - uid: 15484 + - uid: 10218 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,36.5 + pos: 8.5,-15.5 parent: 2 - - uid: 15692 + - uid: 10219 components: - type: Transform - pos: 42.5,35.5 + rot: 1.5707963267948966 rad + pos: 45.5,7.5 parent: 2 - - uid: 15693 + - uid: 10225 components: - type: Transform - pos: 42.5,34.5 + rot: 1.5707963267948966 rad + pos: 46.5,4.5 parent: 2 - - uid: 15768 + - uid: 10229 components: - type: Transform - pos: 54.5,27.5 + pos: 42.5,-10.5 parent: 2 - - uid: 15796 + - uid: 10231 components: - type: Transform - pos: 42.5,37.5 + pos: -14.5,52.5 parent: 2 - - uid: 15846 + - uid: 10233 components: - type: Transform - pos: 41.5,28.5 + rot: -1.5707963267948966 rad + pos: -33.5,47.5 parent: 2 - - uid: 15897 + - uid: 10234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,48.5 + pos: -41.5,27.5 parent: 2 - - uid: 16111 + - uid: 10238 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,42.5 + pos: -45.5,-4.5 parent: 2 - - uid: 16301 + - uid: 10239 components: - type: Transform - pos: 59.5,28.5 + rot: -1.5707963267948966 rad + pos: -45.5,-4.5 parent: 2 - - uid: 17474 + - uid: 10240 components: - type: Transform - pos: 54.5,26.5 + rot: -1.5707963267948966 rad + pos: -38.5,10.5 parent: 2 - - uid: 17891 + - uid: 10241 components: - type: Transform - pos: -51.5,37.5 + rot: -1.5707963267948966 rad + pos: -37.5,10.5 parent: 2 - - uid: 17893 + - uid: 10242 components: - type: Transform - pos: -50.5,37.5 + rot: -1.5707963267948966 rad + pos: -33.5,10.5 parent: 2 - - uid: 17933 + - uid: 10243 components: - type: Transform - pos: -51.5,52.5 + rot: -1.5707963267948966 rad + pos: -34.5,10.5 parent: 2 - - uid: 17947 + - uid: 10248 components: - type: Transform - pos: -47.5,40.5 + rot: -1.5707963267948966 rad + pos: -18.5,13.5 parent: 2 - - uid: 18014 + - uid: 10249 components: - type: Transform - pos: -51.5,40.5 + rot: -1.5707963267948966 rad + pos: -17.5,13.5 parent: 2 - - uid: 18030 + - uid: 10250 components: - type: Transform - pos: -47.5,39.5 + rot: -1.5707963267948966 rad + pos: -15.5,13.5 parent: 2 - - uid: 18398 + - uid: 10251 components: - type: Transform - pos: 20.5,59.5 + rot: -1.5707963267948966 rad + pos: -14.5,13.5 parent: 2 - - uid: 18461 + - uid: 10252 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,49.5 + pos: -13.5,13.5 parent: 2 - - uid: 18524 + - uid: 10253 components: - type: Transform - pos: -10.5,46.5 + rot: -1.5707963267948966 rad + pos: -11.5,16.5 parent: 2 - - uid: 18683 + - uid: 10254 components: - type: Transform - pos: 60.5,27.5 + rot: -1.5707963267948966 rad + pos: -11.5,15.5 parent: 2 - - uid: 18690 + - uid: 10255 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,51.5 + pos: -11.5,14.5 parent: 2 - - uid: 18769 + - uid: 10256 components: - type: Transform - pos: 47.5,34.5 + rot: -1.5707963267948966 rad + pos: -11.5,19.5 parent: 2 - - uid: 18774 + - uid: 10257 components: - type: Transform - pos: 48.5,34.5 + rot: -1.5707963267948966 rad + pos: -11.5,18.5 parent: 2 - - uid: 18775 + - uid: 10271 components: - type: Transform - pos: 49.5,34.5 + pos: 36.5,-8.5 parent: 2 - - uid: 18787 + - uid: 10277 components: - type: Transform - pos: 60.5,28.5 + rot: -1.5707963267948966 rad + pos: -13.5,-50.5 parent: 2 - - uid: 18817 + - uid: 10278 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,51.5 + pos: -13.5,-49.5 parent: 2 - - uid: 18819 + - uid: 10280 components: - type: Transform - pos: 42.5,36.5 + rot: -1.5707963267948966 rad + pos: -11.5,-56.5 parent: 2 - - uid: 18835 + - uid: 10281 components: - type: Transform - pos: 54.5,12.5 + rot: -1.5707963267948966 rad + pos: -13.5,-56.5 parent: 2 - - uid: 18927 + - uid: 10282 components: - type: Transform - pos: 54.5,17.5 + rot: -1.5707963267948966 rad + pos: -13.5,-55.5 parent: 2 - - uid: 18967 + - uid: 10283 components: - type: Transform - pos: 54.5,20.5 + rot: -1.5707963267948966 rad + pos: -13.5,-52.5 parent: 2 - - uid: 19188 + - uid: 10284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,35.5 + rot: -1.5707963267948966 rad + pos: -13.5,-53.5 parent: 2 - - uid: 19273 + - uid: 10288 components: - type: Transform - pos: 54.5,19.5 + pos: 32.5,-47.5 parent: 2 - - uid: 19362 + - uid: 10290 components: - type: Transform - pos: 45.5,32.5 + pos: -25.5,-55.5 parent: 2 - - uid: 19450 + - uid: 10291 components: - type: Transform - pos: 45.5,33.5 + pos: 30.5,-8.5 parent: 2 - - uid: 19452 + - uid: 10294 components: - type: Transform - pos: 45.5,34.5 + pos: 49.5,-10.5 parent: 2 - - uid: 19536 + - uid: 10301 components: - type: Transform - pos: 46.5,34.5 + pos: 47.5,-10.5 parent: 2 - - uid: 19568 + - uid: 10302 components: - type: Transform - pos: 51.5,28.5 + rot: 3.141592653589793 rad + pos: -55.5,-61.5 parent: 2 - - uid: 19569 + - uid: 10303 components: - type: Transform - pos: 52.5,28.5 + pos: 45.5,-10.5 parent: 2 - - uid: 19574 + - uid: 10304 components: - type: Transform - pos: 19.5,59.5 + pos: 43.5,-10.5 parent: 2 - - uid: 19666 + - uid: 10308 components: - type: Transform - pos: 56.5,28.5 + pos: -49.5,40.5 parent: 2 - - uid: 19740 + - uid: 10311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,31.5 + pos: 46.5,-10.5 parent: 2 - - uid: 19778 + - uid: 10312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,49.5 + pos: 35.5,-8.5 parent: 2 - - uid: 19787 + - uid: 10313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,36.5 + pos: 34.5,-8.5 parent: 2 - - uid: 19793 + - uid: 10314 components: - type: Transform - pos: 38.5,50.5 + pos: 31.5,-8.5 parent: 2 - - uid: 19797 + - uid: 10318 components: - type: Transform - pos: 66.5,30.5 + pos: 50.5,-10.5 parent: 2 - - uid: 19798 + - uid: 10320 components: - type: Transform - pos: 91.5,51.5 + pos: -25.5,-53.5 parent: 2 - - uid: 19799 + - uid: 10321 components: - type: Transform - pos: 90.5,51.5 + pos: 33.5,-37.5 parent: 2 - - uid: 19813 + - uid: 10322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,37.5 + pos: 24.5,-32.5 parent: 2 - - uid: 19819 + - uid: 10323 components: - type: Transform - pos: 60.5,21.5 + pos: -11.5,-59.5 parent: 2 - - uid: 19830 + - uid: 10324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,47.5 + pos: -11.5,-60.5 parent: 2 - - uid: 19834 + - uid: 10325 components: - type: Transform - pos: 29.5,-65.5 + pos: -11.5,-61.5 parent: 2 - - uid: 19856 + - uid: 10326 components: - type: Transform - pos: -43.5,65.5 + pos: -11.5,-57.5 parent: 2 - - uid: 19890 + - uid: 10327 components: - type: Transform - pos: 66.5,27.5 + pos: 17.5,-39.5 parent: 2 - - uid: 19891 + - uid: 10328 components: - type: Transform - pos: 66.5,26.5 + pos: 18.5,-39.5 parent: 2 - - uid: 19909 + - uid: 10329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,36.5 + pos: 21.5,-39.5 parent: 2 - - uid: 19910 + - uid: 10330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,49.5 + pos: 22.5,-39.5 parent: 2 - - uid: 19933 + - uid: 10331 components: - type: Transform - pos: 29.5,59.5 + pos: 22.5,-38.5 parent: 2 - - uid: 19942 + - uid: 10332 components: - type: Transform - pos: 29.5,58.5 + pos: 22.5,-35.5 parent: 2 - - uid: 19980 + - uid: 10333 components: - type: Transform - pos: 41.5,41.5 + pos: 22.5,-34.5 parent: 2 - - uid: 20026 + - uid: 10334 components: - type: Transform - pos: 37.5,50.5 + pos: 23.5,-34.5 parent: 2 - - uid: 20160 + - uid: 10335 components: - type: Transform - pos: 16.5,43.5 + pos: 24.5,-33.5 parent: 2 - - uid: 20161 + - uid: 10336 components: - type: Transform - pos: 14.5,50.5 + pos: 19.5,-40.5 parent: 2 - - uid: 20165 + - uid: 10337 components: - type: Transform - pos: 14.5,54.5 + pos: 19.5,-41.5 parent: 2 - - uid: 20175 + - uid: 10338 components: - type: Transform - pos: 15.5,49.5 + pos: 19.5,-42.5 parent: 2 - - uid: 20251 + - uid: 10339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,38.5 + pos: 19.5,-45.5 parent: 2 - - uid: 20328 + - uid: 10340 components: - type: Transform - pos: 18.5,63.5 + pos: 19.5,-46.5 parent: 2 - - uid: 20330 + - uid: 10344 components: - type: Transform - pos: 21.5,60.5 + pos: -11.5,-66.5 parent: 2 - - uid: 20426 + - uid: 10366 components: - type: Transform - pos: 80.5,10.5 + rot: 1.5707963267948966 rad + pos: 19.5,-52.5 parent: 2 - - uid: 20429 + - uid: 10367 components: - type: Transform - pos: 80.5,9.5 + rot: 1.5707963267948966 rad + pos: 19.5,-53.5 parent: 2 - - uid: 20443 + - uid: 10378 components: - type: Transform - pos: 17.5,59.5 + rot: 3.141592653589793 rad + pos: 30.5,41.5 parent: 2 - - uid: 20483 + - uid: 10389 components: - type: Transform - pos: 12.5,58.5 + pos: -52.5,59.5 parent: 2 - - uid: 20485 + - uid: 10391 components: - type: Transform - pos: 16.5,48.5 + rot: 1.5707963267948966 rad + pos: 43.5,-51.5 parent: 2 - - uid: 20498 + - uid: 10392 components: - type: Transform - pos: 16.5,47.5 + rot: 1.5707963267948966 rad + pos: -52.5,51.5 parent: 2 - - uid: 20582 + - uid: 10396 components: - type: Transform - pos: -12.5,55.5 + rot: 3.141592653589793 rad + pos: 30.5,42.5 parent: 2 - - uid: 20661 + - uid: 10401 components: - type: Transform - pos: -11.5,54.5 + pos: -41.5,30.5 parent: 2 - - uid: 20677 + - uid: 10407 components: - type: Transform - pos: 34.5,-48.5 + pos: -40.5,30.5 parent: 2 - - uid: 20678 + - uid: 10413 components: - type: Transform - pos: 32.5,-43.5 + pos: -15.5,52.5 parent: 2 - - uid: 20779 + - uid: 10418 components: - type: Transform - pos: 66.5,35.5 + pos: -35.5,46.5 parent: 2 - - uid: 20807 + - uid: 10419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,45.5 + pos: -37.5,31.5 parent: 2 - - uid: 20810 + - uid: 10420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,47.5 + pos: -40.5,27.5 parent: 2 - - uid: 20842 + - uid: 10421 components: - type: Transform - pos: 23.5,57.5 + pos: -41.5,26.5 parent: 2 - - uid: 20845 + - uid: 10428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,34.5 + pos: -37.5,29.5 parent: 2 - - uid: 20855 + - uid: 10429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,37.5 + pos: -37.5,28.5 parent: 2 - - uid: 20870 + - uid: 10430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,50.5 + pos: -31.5,33.5 parent: 2 - - uid: 20875 + - uid: 10431 components: - type: Transform - pos: -42.5,-76.5 + pos: -32.5,33.5 parent: 2 - - uid: 20931 + - uid: 10432 components: - type: Transform - pos: -43.5,-76.5 + pos: -34.5,33.5 parent: 2 - - uid: 20941 + - uid: 10433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,51.5 + pos: -35.5,33.5 parent: 2 - - uid: 20949 + - uid: 10434 components: - type: Transform - pos: 17.5,63.5 + pos: -36.5,32.5 parent: 2 - - uid: 20950 + - uid: 10438 components: - type: Transform - pos: 21.5,61.5 + pos: -29.5,47.5 parent: 2 - - uid: 20967 + - uid: 10466 components: - type: Transform - pos: -44.5,-77.5 + pos: 30.5,38.5 parent: 2 - - uid: 20994 + - uid: 10467 components: - type: Transform - pos: 81.5,10.5 + rot: -1.5707963267948966 rad + pos: -32.5,46.5 parent: 2 - - uid: 20996 + - uid: 10468 components: - type: Transform - pos: 75.5,10.5 + rot: 3.141592653589793 rad + pos: -30.5,48.5 parent: 2 - - uid: 20997 + - uid: 10469 components: - type: Transform - pos: 81.5,7.5 + rot: 3.141592653589793 rad + pos: -30.5,49.5 parent: 2 - - uid: 20998 + - uid: 10470 components: - type: Transform - pos: 81.5,8.5 + pos: 30.5,39.5 parent: 2 - - uid: 21207 + - uid: 10471 components: - type: Transform - pos: 58.5,28.5 + rot: 3.141592653589793 rad + pos: -13.5,48.5 parent: 2 - - uid: 21208 + - uid: 10472 components: - type: Transform - pos: 88.5,25.5 + rot: 3.141592653589793 rad + pos: -13.5,47.5 parent: 2 - - uid: 21213 + - uid: 10473 components: - type: Transform - pos: -10.5,50.5 + rot: 3.141592653589793 rad + pos: -13.5,44.5 parent: 2 - - uid: 21376 + - uid: 10474 components: - type: Transform - pos: 42.5,38.5 + pos: 30.5,40.5 parent: 2 - - uid: 21384 + - uid: 10479 components: - type: Transform - pos: 40.5,41.5 + pos: 66.5,32.5 parent: 2 - - uid: 21386 + - uid: 10493 components: - type: Transform - pos: 42.5,40.5 + pos: 47.5,79.5 parent: 2 - - uid: 21390 + - uid: 10497 components: - type: Transform - pos: 42.5,41.5 + pos: 40.5,-39.5 parent: 2 - - uid: 21402 + - uid: 10498 components: - type: Transform - pos: 66.5,25.5 + rot: 3.141592653589793 rad + pos: 39.5,-45.5 parent: 2 - - uid: 21604 + - uid: 10499 components: - type: Transform - pos: 92.5,48.5 + rot: -1.5707963267948966 rad + pos: -36.5,10.5 parent: 2 - - uid: 21617 + - uid: 10500 components: - type: Transform - pos: 92.5,51.5 + rot: -1.5707963267948966 rad + pos: -29.5,48.5 parent: 2 - - uid: 21680 + - uid: 10502 components: - type: Transform - pos: 66.5,33.5 + pos: 19.5,38.5 parent: 2 - - uid: 21733 + - uid: 10503 components: - type: Transform - pos: 76.5,25.5 + pos: 28.5,-65.5 parent: 2 - - uid: 21734 + - uid: 10504 components: - type: Transform - pos: 78.5,25.5 + rot: -1.5707963267948966 rad + pos: 39.5,55.5 parent: 2 - - uid: 21735 + - uid: 10505 components: - type: Transform - pos: 28.5,-64.5 + pos: 18.5,38.5 parent: 2 - - uid: 21738 + - uid: 10506 components: - type: Transform - pos: 89.5,25.5 + pos: -65.5,-23.5 parent: 2 - - uid: 21740 + - uid: 10507 components: - type: Transform - pos: 66.5,41.5 + pos: 92.5,29.5 parent: 2 - - uid: 21779 + - uid: 10508 components: - type: Transform - pos: 53.5,28.5 + pos: -10.5,15.5 parent: 2 - - uid: 21805 + - uid: 10509 components: - type: Transform - pos: 72.5,51.5 + pos: -6.5,15.5 parent: 2 - - uid: 21822 + - uid: 10510 components: - type: Transform - pos: 76.5,51.5 + pos: -3.5,15.5 parent: 2 - - uid: 21874 + - uid: 10511 components: - type: Transform - pos: 53.5,29.5 + pos: -8.5,15.5 parent: 2 - - uid: 21958 + - uid: 10517 components: - type: Transform - pos: 4.5,43.5 + pos: 42.5,-36.5 parent: 2 - - uid: 21987 + - uid: 10518 components: - type: Transform - pos: 42.5,39.5 + rot: 1.5707963267948966 rad + pos: -38.5,-45.5 parent: 2 - - uid: 21996 + - uid: 10519 components: - type: Transform - pos: 44.5,38.5 + rot: 1.5707963267948966 rad + pos: -37.5,-45.5 parent: 2 - - uid: 22020 + - uid: 10520 components: - type: Transform - pos: 71.5,25.5 + pos: 42.5,-39.5 parent: 2 - - uid: 22021 + - uid: 10521 components: - type: Transform - pos: 43.5,38.5 + rot: 3.141592653589793 rad + pos: -62.5,-64.5 parent: 2 - - uid: 22025 + - uid: 10525 components: - type: Transform - pos: 74.5,25.5 + pos: 18.5,59.5 parent: 2 - - uid: 22026 + - uid: 10533 components: - type: Transform - pos: 90.5,25.5 + pos: 92.5,28.5 parent: 2 - - uid: 22027 + - uid: 10534 components: - type: Transform - pos: 45.5,38.5 + pos: 92.5,30.5 parent: 2 - - uid: 22166 + - uid: 10537 components: - type: Transform - pos: 57.5,12.5 + pos: -18.5,-55.5 parent: 2 - - uid: 22188 + - uid: 10538 components: - type: Transform - pos: 39.5,-9.5 + pos: -15.5,-55.5 parent: 2 - - uid: 22402 + - uid: 10539 components: - type: Transform - pos: 52.5,38.5 + pos: -21.5,-55.5 parent: 2 - - uid: 22454 + - uid: 10540 components: - type: Transform - pos: 51.5,38.5 + pos: -22.5,-55.5 parent: 2 - - uid: 22486 + - uid: 10541 components: - type: Transform - pos: -67.5,-56.5 + pos: -26.5,-50.5 parent: 2 - - uid: 22497 + - uid: 10542 components: - type: Transform - pos: 47.5,38.5 + pos: -29.5,-50.5 parent: 2 - - uid: 22523 + - uid: 10543 components: - type: Transform - pos: -59.5,56.5 + pos: 39.5,56.5 parent: 2 - - uid: 22567 + - uid: 10547 components: - type: Transform - pos: 48.5,38.5 + rot: 3.141592653589793 rad + pos: -63.5,-64.5 parent: 2 - - uid: 22571 + - uid: 10548 components: - type: Transform - pos: -24.5,-31.5 + rot: 3.141592653589793 rad + pos: -55.5,-66.5 parent: 2 - - uid: 22574 + - uid: 10555 components: - type: Transform - pos: -24.5,-32.5 + pos: 20.5,29.5 parent: 2 - - uid: 22577 + - uid: 10556 components: - type: Transform - pos: 49.5,38.5 + pos: 20.5,30.5 parent: 2 - - uid: 22619 + - uid: 10557 components: - type: Transform - pos: 38.5,-9.5 + pos: 17.5,60.5 parent: 2 - - uid: 22635 + - uid: 10560 components: - type: Transform - pos: -24.5,-33.5 + rot: 3.141592653589793 rad + pos: 30.5,43.5 parent: 2 - - uid: 22688 + - uid: 10561 components: - type: Transform - pos: -23.5,-31.5 + pos: 21.5,30.5 parent: 2 - - uid: 22848 + - uid: 10563 components: - type: Transform - pos: -23.5,-33.5 + pos: 22.5,30.5 parent: 2 - - uid: 22907 + - uid: 10564 components: - type: Transform - pos: -22.5,-31.5 + pos: 22.5,29.5 parent: 2 - - uid: 22919 + - uid: 10565 components: - type: Transform - pos: 34.5,-37.5 + pos: 21.5,29.5 parent: 2 - - uid: 22975 + - uid: 10566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,48.5 + pos: 13.5,-30.5 parent: 2 - - uid: 22996 + - uid: 10569 components: - type: Transform - pos: 81.5,9.5 + pos: -18.5,-12.5 parent: 2 - - uid: 22997 + - uid: 10582 components: - type: Transform - pos: 81.5,12.5 + pos: 42.5,74.5 parent: 2 - - uid: 23065 + - uid: 10599 components: - type: Transform - pos: -60.5,60.5 + pos: 66.5,48.5 parent: 2 - - uid: 23112 + - uid: 10600 components: - type: Transform - pos: -59.5,64.5 + pos: -10.5,53.5 parent: 2 - - uid: 23134 + - uid: 10603 components: - type: Transform - pos: 40.5,-9.5 + pos: 66.5,47.5 parent: 2 - - uid: 23270 + - uid: 10607 components: - type: Transform - pos: 68.5,25.5 + pos: 66.5,46.5 parent: 2 - - uid: 23271 + - uid: 10609 components: - type: Transform - pos: 46.5,38.5 + pos: 66.5,49.5 parent: 2 - - uid: 23273 + - uid: 10611 components: - type: Transform - pos: 50.5,38.5 + pos: 66.5,50.5 parent: 2 - - uid: 23462 + - uid: 10615 components: - type: Transform - pos: 92.5,26.5 + pos: 92.5,31.5 parent: 2 - - uid: 23463 + - uid: 10616 components: - type: Transform - pos: 92.5,25.5 + pos: 92.5,33.5 parent: 2 - - uid: 23464 + - uid: 10620 components: - type: Transform - pos: 92.5,27.5 + pos: -49.5,64.5 parent: 2 - - uid: 23466 + - uid: 10642 components: - type: Transform - pos: 91.5,25.5 + rot: 1.5707963267948966 rad + pos: -37.5,-43.5 parent: 2 - - uid: 23467 + - uid: 10643 components: - type: Transform - pos: 67.5,25.5 + rot: 1.5707963267948966 rad + pos: -38.5,-47.5 parent: 2 - - uid: 23567 + - uid: 10644 components: - type: Transform - pos: 80.5,25.5 + rot: -1.5707963267948966 rad + pos: 21.5,26.5 parent: 2 - - uid: 23568 + - uid: 10645 components: - type: Transform - pos: 72.5,25.5 + rot: -1.5707963267948966 rad + pos: 21.5,27.5 parent: 2 - - uid: 23628 + - uid: 10646 components: - type: Transform - pos: 73.5,25.5 + rot: -1.5707963267948966 rad + pos: 21.5,28.5 parent: 2 - - uid: 23629 + - uid: 10647 components: - type: Transform - pos: 3.5,43.5 + rot: -1.5707963267948966 rad + pos: 39.5,54.5 parent: 2 - - uid: 23689 + - uid: 10648 components: - type: Transform - pos: 42.5,32.5 + rot: -1.5707963267948966 rad + pos: 39.5,53.5 parent: 2 - - uid: 23693 + - uid: 10657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,32.5 + rot: -1.5707963267948966 rad + pos: 36.5,39.5 parent: 2 - - uid: 23883 + - uid: 10658 components: - type: Transform - pos: 75.5,25.5 + rot: -1.5707963267948966 rad + pos: 36.5,38.5 parent: 2 - - uid: 23957 + - uid: 10659 components: - type: Transform - pos: -41.5,-76.5 + pos: 39.5,51.5 parent: 2 - - uid: 24032 + - uid: 10661 components: - type: Transform - pos: 69.5,25.5 + pos: 39.5,52.5 parent: 2 - - uid: 24033 + - uid: 10662 components: - type: Transform - pos: 82.5,25.5 + pos: 36.5,40.5 parent: 2 - - uid: 24034 + - uid: 10665 components: - type: Transform - pos: 84.5,25.5 + pos: -57.5,-15.5 parent: 2 - - uid: 24358 + - uid: 10666 components: - type: Transform - pos: -44.5,-76.5 + pos: -56.5,-16.5 parent: 2 - - uid: 24728 + - uid: 10676 components: - type: Transform - pos: 11.5,-28.5 + pos: 43.5,10.5 parent: 2 - - uid: 24739 + - uid: 10677 components: - type: Transform - pos: 66.5,39.5 + pos: 46.5,10.5 parent: 2 - - uid: 24741 + - uid: 10678 components: - type: Transform - pos: 66.5,40.5 + pos: 43.5,9.5 parent: 2 - - uid: 24755 + - uid: 10679 components: - type: Transform - pos: 71.5,51.5 + pos: 49.5,10.5 parent: 2 - - uid: 24763 + - uid: 10683 components: - type: Transform - pos: 73.5,51.5 + pos: -29.5,-65.5 parent: 2 - - uid: 24767 + - uid: 10684 components: - type: Transform - pos: 77.5,51.5 + pos: -25.5,-56.5 parent: 2 - - uid: 24819 + - uid: 10685 components: - type: Transform - pos: 75.5,51.5 + pos: 44.5,-51.5 parent: 2 - - uid: 24820 + - uid: 10686 components: - type: Transform - pos: 74.5,51.5 + pos: 45.5,-51.5 parent: 2 - - uid: 24835 + - uid: 10687 components: - type: Transform - pos: 43.5,28.5 + pos: -38.5,32.5 parent: 2 - - uid: 24840 + - uid: 10688 components: - type: Transform - pos: 66.5,38.5 + pos: -40.5,32.5 parent: 2 - - uid: 24851 + - uid: 10689 components: - type: Transform - pos: 83.5,25.5 + pos: -40.5,33.5 parent: 2 - - uid: 24852 + - uid: 10690 components: - type: Transform - pos: 70.5,25.5 + pos: -38.5,35.5 parent: 2 - - uid: 24872 + - uid: 10691 components: - type: Transform - pos: 66.5,37.5 + pos: -37.5,35.5 parent: 2 - - uid: 24954 + - uid: 10692 components: - type: Transform - pos: 66.5,36.5 + pos: -13.5,54.5 parent: 2 - - uid: 25010 + - uid: 10693 components: - type: Transform - pos: 60.5,12.5 + pos: -67.5,-13.5 parent: 2 - - uid: 25025 + - uid: 10694 components: - type: Transform - pos: 54.5,21.5 + pos: -65.5,-13.5 parent: 2 - - uid: 25177 + - uid: 10695 components: - type: Transform - pos: 60.5,15.5 + pos: -61.5,-13.5 parent: 2 - - uid: 25230 + - uid: 10696 components: - type: Transform - pos: 86.5,25.5 + pos: -55.5,-11.5 parent: 2 - - uid: 25231 + - uid: 10697 components: - type: Transform - pos: 81.5,25.5 + pos: -55.5,-10.5 parent: 2 - - uid: 25232 + - uid: 10698 components: - type: Transform - pos: 79.5,25.5 + pos: -55.5,-9.5 parent: 2 - - uid: 25233 + - uid: 10699 components: - type: Transform - pos: 85.5,25.5 + pos: -52.5,-8.5 parent: 2 - - uid: 25234 + - uid: 10700 components: - type: Transform - pos: 87.5,25.5 + pos: -51.5,-8.5 parent: 2 - - uid: 25235 + - uid: 10701 components: - type: Transform - pos: 54.5,25.5 + pos: -62.5,-13.5 parent: 2 - - uid: 25243 + - uid: 10702 components: - type: Transform - pos: 44.5,28.5 + pos: -57.5,-13.5 parent: 2 - - uid: 25261 + - uid: 10703 components: - type: Transform - pos: 42.5,31.5 + pos: -70.5,-15.5 parent: 2 - - uid: 25269 + - uid: 10704 components: - type: Transform - pos: 42.5,33.5 + pos: -71.5,-15.5 parent: 2 - - uid: 25309 + - uid: 10705 components: - type: Transform - pos: 45.5,28.5 + pos: -95.5,-18.5 parent: 2 - - uid: 25318 + - uid: 10706 components: - type: Transform - pos: 77.5,25.5 + pos: -67.5,-22.5 parent: 2 - - uid: 25391 + - uid: 10707 components: - type: Transform - pos: 20.5,62.5 + pos: -67.5,-18.5 parent: 2 - - uid: 25396 + - uid: 10708 components: - type: Transform - pos: 19.5,62.5 + pos: -66.5,-22.5 parent: 2 - - uid: 25400 + - uid: 10709 components: - type: Transform - pos: 17.5,62.5 + pos: -59.5,-22.5 parent: 2 - - uid: 25402 + - uid: 10710 components: - type: Transform - pos: 18.5,62.5 + pos: -48.5,-22.5 parent: 2 - - uid: 25472 + - uid: 10711 components: - type: Transform - pos: 36.5,50.5 + pos: -41.5,-29.5 parent: 2 - - uid: 25607 + - uid: 10712 components: - type: Transform - pos: 10.5,-27.5 + pos: -70.5,-19.5 parent: 2 - - uid: 25683 + - uid: 10713 components: - type: Transform - pos: -11.5,-70.5 + pos: -71.5,-19.5 parent: 2 - - uid: 25789 + - uid: 10714 components: - type: Transform - pos: 30.5,50.5 + pos: -77.5,-21.5 parent: 2 - - uid: 25796 + - uid: 10715 components: - type: Transform - pos: 11.5,-27.5 + pos: -81.5,-22.5 parent: 2 - - uid: 25814 + - uid: 10716 components: - type: Transform - pos: 29.5,50.5 + pos: -95.5,-19.5 parent: 2 - - uid: 25815 + - uid: 10717 components: - type: Transform - pos: 28.5,46.5 + pos: -93.5,-20.5 parent: 2 - - uid: 25860 + - uid: 10718 components: - type: Transform - pos: 28.5,47.5 + pos: -91.5,-21.5 parent: 2 - - uid: 25864 + - uid: 10719 components: - type: Transform - pos: -11.5,55.5 + pos: -92.5,-21.5 parent: 2 - - uid: 25870 + - uid: 10720 components: - type: Transform - pos: 28.5,48.5 + pos: -95.5,-17.5 parent: 2 - - uid: 25929 + - uid: 10721 components: - type: Transform - pos: 28.5,50.5 + pos: -85.5,-24.5 parent: 2 - - uid: 25936 + - uid: 10722 components: - type: Transform - pos: 29.5,51.5 + pos: -84.5,-23.5 parent: 2 - - uid: 25949 + - uid: 10723 components: - type: Transform - pos: 92.5,32.5 + pos: -83.5,-24.5 parent: 2 - - uid: 25952 + - uid: 10724 components: - type: Transform - pos: 29.5,52.5 + pos: -84.5,-25.5 parent: 2 - - uid: 25953 + - uid: 10725 components: - type: Transform - pos: 66.5,34.5 + pos: -84.5,-24.5 parent: 2 - - uid: 26057 + - uid: 10726 components: - type: Transform - pos: 29.5,53.5 + pos: -50.5,-22.5 parent: 2 - - uid: 26077 + - uid: 10727 components: - type: Transform - pos: 29.5,54.5 + pos: -50.5,-25.5 parent: 2 - - uid: 26078 + - uid: 10728 components: - type: Transform - pos: 29.5,55.5 + pos: -49.5,-26.5 parent: 2 - - uid: 26081 + - uid: 10729 components: - type: Transform - pos: 29.5,56.5 + pos: -48.5,-26.5 parent: 2 - - uid: 26082 + - uid: 10730 components: - type: Transform - pos: 29.5,57.5 + pos: -45.5,-29.5 parent: 2 - - uid: 26175 + - uid: 10731 components: - type: Transform - pos: 14.5,-10.5 + rot: 1.5707963267948966 rad + pos: -43.5,-48.5 parent: 2 - - uid: 26208 + - uid: 10732 components: - type: Transform - pos: 39.5,-10.5 + pos: -87.5,-26.5 parent: 2 - - uid: 26610 + - uid: 10733 components: - type: Transform - pos: 25.5,51.5 + rot: 1.5707963267948966 rad + pos: -41.5,-42.5 parent: 2 - - uid: 26794 + - uid: 10734 components: - type: Transform - pos: -26.5,-53.5 + rot: 1.5707963267948966 rad + pos: -41.5,-42.5 parent: 2 - - uid: 27296 + - uid: 10735 components: - type: Transform - pos: -9.5,-70.5 + rot: 1.5707963267948966 rad + pos: -41.5,-43.5 parent: 2 - - uid: 27331 + - uid: 10736 components: - type: Transform - pos: 37.5,41.5 + rot: 1.5707963267948966 rad + pos: -41.5,-41.5 parent: 2 - - uid: 27370 + - uid: 10737 components: - type: Transform - pos: 36.5,41.5 + rot: 1.5707963267948966 rad + pos: -40.5,-45.5 parent: 2 - - uid: 27726 + - uid: 10738 components: - type: Transform - pos: 16.5,44.5 + rot: 1.5707963267948966 rad + pos: -40.5,-46.5 parent: 2 - - uid: 27767 + - uid: 10739 components: - type: Transform - pos: 29.5,-49.5 + rot: 1.5707963267948966 rad + pos: -40.5,-47.5 parent: 2 - - uid: 27805 + - uid: 10740 components: - type: Transform - pos: -47.5,35.5 + rot: 1.5707963267948966 rad + pos: -41.5,-47.5 parent: 2 - - uid: 27871 + - uid: 10741 components: - type: Transform - pos: 50.5,34.5 + rot: 1.5707963267948966 rad + pos: -41.5,-49.5 parent: 2 - - uid: 28139 + - uid: 10742 components: - type: Transform - pos: 7.5,43.5 + rot: 1.5707963267948966 rad + pos: -41.5,-44.5 parent: 2 - - uid: 28436 + - uid: 10743 components: - type: Transform - pos: 34.5,-45.5 + rot: 1.5707963267948966 rad + pos: -41.5,-53.5 parent: 2 - - uid: 28761 + - uid: 10744 components: - type: Transform - pos: 57.5,28.5 + rot: 1.5707963267948966 rad + pos: -41.5,-54.5 parent: 2 - - uid: 28762 + - uid: 10745 components: - type: Transform - pos: 55.5,28.5 + rot: 1.5707963267948966 rad + pos: -41.5,-55.5 parent: 2 - - uid: 28766 + - uid: 10746 components: - type: Transform - pos: 50.5,28.5 + rot: 1.5707963267948966 rad + pos: -41.5,-55.5 parent: 2 - - uid: 28767 + - uid: 10747 components: - type: Transform - pos: 60.5,16.5 + rot: 1.5707963267948966 rad + pos: -42.5,-55.5 parent: 2 - - uid: 28768 + - uid: 10748 components: - type: Transform - pos: 56.5,12.5 + rot: 1.5707963267948966 rad + pos: -43.5,-57.5 parent: 2 - - uid: 28770 + - uid: 10749 components: - type: Transform - pos: 55.5,12.5 + rot: 1.5707963267948966 rad + pos: -43.5,-55.5 parent: 2 - - uid: 28771 + - uid: 10750 components: - type: Transform - pos: 46.5,28.5 + rot: 1.5707963267948966 rad + pos: -45.5,-57.5 parent: 2 - - uid: 28772 + - uid: 10751 components: - type: Transform - pos: 48.5,28.5 + rot: 1.5707963267948966 rad + pos: -44.5,-58.5 parent: 2 - - uid: 28773 + - uid: 10752 components: - type: Transform - pos: 60.5,17.5 + rot: 1.5707963267948966 rad + pos: -44.5,-58.5 parent: 2 - - uid: 28778 + - uid: 10753 components: - type: Transform - pos: 54.5,14.5 + rot: 1.5707963267948966 rad + pos: -44.5,-59.5 parent: 2 - - uid: 29010 + - uid: 10754 components: - type: Transform - pos: 21.5,62.5 + rot: 1.5707963267948966 rad + pos: -44.5,-60.5 parent: 2 - - uid: 29036 + - uid: 10755 components: - type: Transform - pos: 60.5,24.5 + rot: 1.5707963267948966 rad + pos: -44.5,-61.5 parent: 2 - - uid: 29037 + - uid: 10756 components: - type: Transform - pos: -50.5,45.5 + rot: 1.5707963267948966 rad + pos: -45.5,-61.5 parent: 2 - - uid: 29084 + - uid: 10757 components: - type: Transform - pos: 60.5,20.5 + rot: 1.5707963267948966 rad + pos: -45.5,-60.5 parent: 2 - - uid: 29114 + - uid: 10758 components: - type: Transform - pos: -26.5,-54.5 + rot: 1.5707963267948966 rad + pos: -44.5,-55.5 parent: 2 - - uid: 29581 + - uid: 10759 components: - type: Transform - pos: 54.5,23.5 + rot: 1.5707963267948966 rad + pos: -44.5,-51.5 parent: 2 - - uid: 29582 + - uid: 10760 components: - type: Transform - pos: 45.5,30.5 + rot: 1.5707963267948966 rad + pos: -43.5,-51.5 parent: 2 - - uid: 29583 + - uid: 10761 components: - type: Transform - pos: 45.5,29.5 + rot: 1.5707963267948966 rad + pos: -43.5,-50.5 parent: 2 - - uid: 29690 + - uid: 10762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,37.5 + rot: 1.5707963267948966 rad + pos: -43.5,-49.5 parent: 2 - - uid: 29692 + - uid: 10763 components: - type: Transform - pos: 54.5,15.5 + rot: 1.5707963267948966 rad + pos: -43.5,-47.5 parent: 2 - - uid: 29871 + - uid: 10764 components: - type: Transform - pos: 32.5,-49.5 + rot: 1.5707963267948966 rad + pos: -43.5,-52.5 parent: 2 - - uid: 30140 + - uid: 10765 components: - type: Transform - pos: 60.5,14.5 + rot: 1.5707963267948966 rad + pos: -43.5,-44.5 parent: 2 - - uid: 30417 + - uid: 10766 components: - type: Transform - pos: 60.5,18.5 + rot: 1.5707963267948966 rad + pos: -37.5,-45.5 parent: 2 - - uid: 30773 + - uid: 10767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,8.5 + rot: 1.5707963267948966 rad + pos: -43.5,-45.5 parent: 2 - - uid: 30779 + - uid: 10768 components: - type: Transform - pos: 2.5,-27.5 + rot: 1.5707963267948966 rad + pos: -44.5,-43.5 parent: 2 - - uid: 31100 + - uid: 10769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,34.5 + rot: 1.5707963267948966 rad + pos: -44.5,-42.5 parent: 2 - - uid: 31911 + - uid: 10770 components: - type: Transform - pos: 60.5,23.5 + rot: 1.5707963267948966 rad + pos: -44.5,-39.5 parent: 2 - - uid: 32749 + - uid: 10771 components: - type: Transform - pos: 81.5,13.5 + rot: 1.5707963267948966 rad + pos: -41.5,-39.5 parent: 2 - - uid: 33519 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 33049 - - uid: 33520 - components: - - type: Transform - pos: -2.5,-28.5 - parent: 33049 - - uid: 33521 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 33049 - - uid: 33522 - components: - - type: Transform - pos: -1.5,-26.5 - parent: 33049 - - uid: 33523 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 33049 - - uid: 33524 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 33049 - - uid: 33525 - components: - - type: Transform - pos: 0.5,-28.5 - parent: 33049 - - uid: 33526 + - uid: 10772 components: - type: Transform - pos: -0.5,-28.5 - parent: 33049 - - uid: 33527 + rot: 1.5707963267948966 rad + pos: -41.5,-38.5 + parent: 2 + - uid: 10773 components: - type: Transform - pos: 1.5,-30.5 - parent: 33049 - - uid: 33528 + rot: 1.5707963267948966 rad + pos: -39.5,-40.5 + parent: 2 + - uid: 10774 components: - type: Transform - pos: -1.5,-27.5 - parent: 33049 - - uid: 33529 + rot: 1.5707963267948966 rad + pos: -39.5,-39.5 + parent: 2 + - uid: 10775 components: - type: Transform - pos: -1.5,-27.5 - parent: 33049 - - uid: 33530 + rot: 1.5707963267948966 rad + pos: -40.5,-41.5 + parent: 2 + - uid: 10776 components: - type: Transform - pos: -0.5,-28.5 - parent: 33049 - - uid: 33531 + rot: 1.5707963267948966 rad + pos: -39.5,-51.5 + parent: 2 + - uid: 10777 components: - type: Transform - pos: -1.5,-29.5 - parent: 33049 - - uid: 33532 + rot: 1.5707963267948966 rad + pos: -38.5,-50.5 + parent: 2 + - uid: 10778 components: - type: Transform - pos: -1.5,-29.5 - parent: 33049 - - uid: 33533 + rot: 1.5707963267948966 rad + pos: -38.5,-49.5 + parent: 2 + - uid: 10779 components: - type: Transform - pos: 1.5,-30.5 - parent: 33049 - - uid: 33534 + rot: -1.5707963267948966 rad + pos: -41.5,-65.5 + parent: 2 + - uid: 10780 components: - type: Transform - pos: 1.5,-31.5 - parent: 33049 - - uid: 33535 + rot: -1.5707963267948966 rad + pos: -40.5,-64.5 + parent: 2 + - uid: 10781 components: - type: Transform - pos: 1.5,-27.5 - parent: 33049 - - uid: 33536 + rot: -1.5707963267948966 rad + pos: -40.5,-64.5 + parent: 2 + - uid: 10782 components: - type: Transform - pos: 1.5,-26.5 - parent: 33049 - - uid: 33537 + rot: -1.5707963267948966 rad + pos: -39.5,-64.5 + parent: 2 + - uid: 10783 components: - type: Transform - pos: 1.5,-28.5 - parent: 33049 - - uid: 33538 + rot: -1.5707963267948966 rad + pos: -37.5,-65.5 + parent: 2 + - uid: 10785 components: - type: Transform - pos: -0.5,-30.5 - parent: 33049 - - uid: 33539 + rot: -1.5707963267948966 rad + pos: -38.5,-66.5 + parent: 2 + - uid: 10786 components: - type: Transform - pos: -1.5,-30.5 - parent: 33049 - - uid: 33540 + rot: -1.5707963267948966 rad + pos: -38.5,-67.5 + parent: 2 + - uid: 10787 components: - type: Transform - pos: -1.5,-30.5 - parent: 33049 - - uid: 33541 + rot: -1.5707963267948966 rad + pos: -38.5,-67.5 + parent: 2 + - uid: 10790 components: - type: Transform - pos: 0.5,-31.5 - parent: 33049 - - uid: 33542 + pos: -36.5,-70.5 + parent: 2 + - uid: 10791 components: - type: Transform - pos: 4.5,-11.5 - parent: 33049 - - uid: 33543 + rot: -1.5707963267948966 rad + pos: -35.5,-71.5 + parent: 2 + - uid: 10792 components: - type: Transform - pos: 4.5,-10.5 - parent: 33049 - - uid: 34500 + rot: -1.5707963267948966 rad + pos: -35.5,-71.5 + parent: 2 + - uid: 10793 components: - type: Transform - pos: 80.5,8.5 + rot: -1.5707963267948966 rad + pos: -32.5,-72.5 parent: 2 - - uid: 34503 + - uid: 10794 components: - type: Transform - pos: 81.5,11.5 + rot: -1.5707963267948966 rad + pos: -32.5,-72.5 parent: 2 - - uid: 34504 + - uid: 10795 components: - type: Transform - pos: 80.5,11.5 + rot: -1.5707963267948966 rad + pos: -31.5,-72.5 parent: 2 - - uid: 34505 + - uid: 10801 components: - type: Transform - pos: 80.5,12.5 + rot: -1.5707963267948966 rad + pos: -26.5,-71.5 parent: 2 - - uid: 34506 + - uid: 10802 components: - type: Transform - pos: 80.5,13.5 + rot: -1.5707963267948966 rad + pos: -26.5,-71.5 parent: 2 - - uid: 34507 + - uid: 10803 components: - type: Transform - pos: 79.5,8.5 + rot: -1.5707963267948966 rad + pos: -27.5,-71.5 parent: 2 - - uid: 34508 + - uid: 10804 components: - type: Transform - pos: 79.5,9.5 + rot: -1.5707963267948966 rad + pos: -25.5,-71.5 parent: 2 - - uid: 34509 + - uid: 10805 components: - type: Transform - pos: 79.5,10.5 + rot: -1.5707963267948966 rad + pos: -22.5,-72.5 parent: 2 - - uid: 34510 + - uid: 10806 components: - type: Transform - pos: 79.5,11.5 + rot: -1.5707963267948966 rad + pos: -21.5,-72.5 parent: 2 - - uid: 34511 + - uid: 10807 components: - type: Transform - pos: 79.5,12.5 + rot: -1.5707963267948966 rad + pos: -20.5,-72.5 parent: 2 - - uid: 34512 + - uid: 10808 components: - type: Transform - pos: 79.5,13.5 + rot: -1.5707963267948966 rad + pos: -20.5,-72.5 parent: 2 - - uid: 34513 + - uid: 10813 components: - type: Transform - pos: 79.5,14.5 + rot: -1.5707963267948966 rad + pos: -37.5,-72.5 parent: 2 - - uid: 34514 + - uid: 10814 components: - type: Transform - pos: 78.5,14.5 + rot: -1.5707963267948966 rad + pos: -37.5,-72.5 parent: 2 - - uid: 34515 + - uid: 10815 components: - type: Transform - pos: 77.5,14.5 + rot: -1.5707963267948966 rad + pos: -45.5,-64.5 parent: 2 - - uid: 34516 + - uid: 10816 components: - type: Transform - pos: 76.5,14.5 + rot: -1.5707963267948966 rad + pos: -45.5,-65.5 parent: 2 - - uid: 34517 + - uid: 10818 components: - type: Transform - pos: 76.5,13.5 + pos: -17.5,-67.5 parent: 2 - - uid: 34518 + - uid: 10819 components: - type: Transform - pos: 76.5,12.5 + rot: 1.5707963267948966 rad + pos: -16.5,-66.5 parent: 2 - - uid: 34519 + - uid: 10820 components: - type: Transform - pos: 76.5,11.5 + rot: 1.5707963267948966 rad + pos: -16.5,-66.5 parent: 2 - - uid: 34520 + - uid: 10823 components: - type: Transform - pos: 76.5,10.5 + rot: 1.5707963267948966 rad + pos: -12.5,-65.5 parent: 2 - - uid: 34521 + - uid: 10824 components: - type: Transform - pos: 76.5,9.5 + rot: 1.5707963267948966 rad + pos: -12.5,-65.5 parent: 2 - - uid: 34522 + - uid: 10827 components: - type: Transform - pos: 77.5,13.5 + rot: 1.5707963267948966 rad + pos: -14.5,-65.5 parent: 2 - - uid: 34523 + - uid: 10828 components: - type: Transform - pos: 77.5,12.5 + rot: -1.5707963267948966 rad + pos: 78.5,-3.5 parent: 2 - - uid: 34524 + - uid: 10829 components: - type: Transform - pos: 77.5,11.5 + rot: -1.5707963267948966 rad + pos: 78.5,-2.5 parent: 2 - - uid: 34525 + - uid: 10830 components: - type: Transform - pos: 77.5,10.5 + rot: -1.5707963267948966 rad + pos: 78.5,-4.5 parent: 2 - - uid: 34526 + - uid: 10831 components: - type: Transform - pos: 77.5,9.5 + rot: -1.5707963267948966 rad + pos: 78.5,-1.5 parent: 2 - - uid: 34527 + - uid: 10832 components: - type: Transform - pos: 78.5,13.5 + rot: -1.5707963267948966 rad + pos: 78.5,-0.5 parent: 2 - - uid: 34528 + - uid: 10851 components: - type: Transform - pos: 78.5,12.5 + pos: 29.5,44.5 parent: 2 - - uid: 34529 + - uid: 10852 components: - type: Transform - pos: 78.5,11.5 + pos: 30.5,44.5 parent: 2 - - uid: 34530 + - uid: 10853 components: - type: Transform - pos: 78.5,10.5 + pos: 78.5,0.5 parent: 2 - - uid: 34531 + - uid: 10854 components: - type: Transform - pos: 78.5,9.5 + pos: 78.5,1.5 parent: 2 - - uid: 34532 + - uid: 10855 components: - type: Transform - pos: 75.5,9.5 + pos: 78.5,2.5 parent: 2 - - uid: 34535 + - uid: 10856 components: - type: Transform - pos: 74.5,10.5 + pos: 78.5,3.5 parent: 2 - - uid: 34536 + - uid: 10857 components: - type: Transform - pos: 74.5,9.5 + pos: 78.5,4.5 parent: 2 - - uid: 34537 + - uid: 10858 components: - type: Transform - pos: 73.5,10.5 + pos: 78.5,5.5 parent: 2 - - uid: 34538 + - uid: 10859 components: - type: Transform - pos: 73.5,9.5 + pos: 78.5,6.5 parent: 2 - - uid: 34539 + - uid: 10860 components: - type: Transform - pos: 77.5,15.5 + pos: 78.5,7.5 parent: 2 - - uid: 34540 + - uid: 10861 components: - type: Transform - pos: 76.5,15.5 + pos: 79.5,0.5 parent: 2 - - uid: 34541 + - uid: 10862 components: - type: Transform - pos: 78.5,15.5 + pos: 79.5,1.5 parent: 2 - - uid: 34542 + - uid: 10863 components: - type: Transform - pos: 77.5,16.5 + pos: 79.5,2.5 parent: 2 - - uid: 34543 + - uid: 10864 components: - type: Transform - pos: 76.5,16.5 + pos: 79.5,3.5 parent: 2 - - uid: 36073 + - uid: 10865 components: - type: Transform - pos: 60.5,25.5 + pos: 79.5,4.5 parent: 2 - - uid: 36074 + - uid: 10866 components: - type: Transform - pos: 54.5,16.5 + pos: 79.5,5.5 parent: 2 - - uid: 36082 + - uid: 10867 components: - type: Transform - pos: 54.5,13.5 + pos: 79.5,6.5 parent: 2 - - uid: 36092 + - uid: 10868 components: - type: Transform - pos: 60.5,26.5 + pos: 79.5,7.5 parent: 2 - - uid: 36115 + - uid: 10869 components: - type: Transform - pos: 34.5,-46.5 + pos: 80.5,0.5 parent: 2 - - uid: 36201 + - uid: 10870 components: - type: Transform - pos: -44.5,-78.5 + pos: 80.5,1.5 parent: 2 - - uid: 36203 + - uid: 10871 components: - type: Transform - pos: -36.5,-72.5 + pos: 80.5,2.5 parent: 2 - - uid: 36226 + - uid: 10872 components: - type: Transform - pos: -40.5,-76.5 + pos: 80.5,3.5 parent: 2 - - uid: 36227 + - uid: 10873 components: - type: Transform - pos: -39.5,-76.5 + pos: 80.5,4.5 parent: 2 - - uid: 36228 + - uid: 10874 components: - type: Transform - pos: -38.5,-76.5 + pos: 80.5,5.5 parent: 2 - - uid: 36229 + - uid: 10875 components: - type: Transform - pos: -37.5,-76.5 + pos: 80.5,6.5 parent: 2 - - uid: 36230 + - uid: 10876 components: - type: Transform - pos: -36.5,-76.5 + pos: 80.5,7.5 parent: 2 - - uid: 36232 + - uid: 10877 components: - type: Transform - pos: -38.5,-83.5 + pos: 81.5,1.5 parent: 2 - - uid: 36234 + - uid: 10878 components: - type: Transform - pos: -40.5,-81.5 + pos: 81.5,2.5 parent: 2 - - uid: 36257 + - uid: 10879 components: - type: Transform - pos: -38.5,-84.5 + pos: 81.5,3.5 parent: 2 - - uid: 36258 + - uid: 10880 components: - type: Transform - pos: -38.5,-82.5 + pos: 81.5,4.5 parent: 2 - - uid: 36259 + - uid: 10881 components: - type: Transform - pos: -39.5,-82.5 + pos: 81.5,5.5 parent: 2 - - uid: 36262 + - uid: 10882 components: - type: Transform - pos: -39.5,-81.5 + pos: 81.5,6.5 parent: 2 - - uid: 36266 + - uid: 10883 components: - type: Transform - pos: 20.5,63.5 + pos: 77.5,7.5 parent: 2 - - uid: 36269 + - uid: 10884 components: - type: Transform - pos: -41.5,-81.5 + pos: 76.5,7.5 parent: 2 - - uid: 36270 + - uid: 10885 components: - type: Transform - pos: -38.5,-85.5 + pos: 76.5,8.5 parent: 2 - - uid: 36271 + - uid: 10886 components: - type: Transform - pos: -37.5,-85.5 + pos: 77.5,8.5 parent: 2 - - uid: 36272 + - uid: 10887 components: - type: Transform - pos: -36.5,-85.5 + pos: 78.5,8.5 parent: 2 - - uid: 36273 + - uid: 10888 components: - type: Transform - pos: -35.5,-85.5 + pos: -60.5,-24.5 parent: 2 - - uid: 36293 + - uid: 10889 components: - type: Transform - pos: 41.5,47.5 + pos: -51.5,-24.5 parent: 2 - - uid: 36294 + - uid: 10890 components: - type: Transform - pos: 42.5,47.5 + pos: -56.5,-23.5 parent: 2 - - uid: 36295 + - uid: 10891 components: - type: Transform - pos: 43.5,47.5 + pos: -55.5,-23.5 parent: 2 - - uid: 36296 + - uid: 10892 components: - type: Transform - pos: 44.5,47.5 + pos: 22.5,38.5 parent: 2 - - uid: 36338 + - uid: 10893 components: - type: Transform - pos: -22.5,-84.5 + pos: -63.5,-23.5 parent: 2 - - uid: 36340 + - uid: 10894 components: - type: Transform - pos: -21.5,-91.5 + pos: -62.5,-23.5 parent: 2 - - uid: 36341 + - uid: 10895 components: - type: Transform - pos: -21.5,-90.5 + pos: -61.5,-23.5 parent: 2 - - uid: 36342 + - uid: 10896 components: - type: Transform - pos: -21.5,-89.5 + pos: -54.5,-22.5 parent: 2 - - uid: 36343 + - uid: 10897 components: - type: Transform - pos: -22.5,-89.5 + pos: -53.5,-23.5 parent: 2 - - uid: 36344 + - uid: 10898 components: - type: Transform - pos: -22.5,-88.5 + pos: -51.5,-23.5 parent: 2 - - uid: 36345 + - uid: 10899 components: - type: Transform - pos: -23.5,-88.5 + pos: -48.5,-24.5 parent: 2 - - uid: 36346 + - uid: 10900 components: - type: Transform - pos: -23.5,-87.5 + pos: -47.5,-24.5 parent: 2 - - uid: 36347 + - uid: 10901 components: - type: Transform - pos: -23.5,-86.5 + pos: -45.5,-27.5 parent: 2 - - uid: 36348 + - uid: 10903 components: - type: Transform - pos: -23.5,-85.5 + pos: -42.5,-28.5 parent: 2 - - uid: 36349 + - uid: 10905 components: - type: Transform - pos: -24.5,-85.5 + pos: -46.5,-26.5 parent: 2 - - uid: 36350 + - uid: 10906 components: - type: Transform - pos: -25.5,-85.5 + pos: -67.5,-24.5 parent: 2 - - uid: 36351 + - uid: 10907 components: - type: Transform - pos: -26.5,-85.5 + pos: -67.5,-21.5 parent: 2 - - uid: 36352 + - uid: 10908 components: - type: Transform - pos: -27.5,-85.5 + pos: -76.5,-20.5 parent: 2 - - uid: 36353 + - uid: 10909 components: - type: Transform - pos: -28.5,-85.5 + pos: -74.5,-19.5 parent: 2 - - uid: 36354 + - uid: 10910 components: - type: Transform - pos: -29.5,-85.5 + pos: -74.5,-20.5 parent: 2 - - uid: 36355 + - uid: 10911 components: - type: Transform - pos: -23.5,-84.5 + pos: -73.5,-19.5 parent: 2 - - uid: 36360 + - uid: 10912 components: - type: Transform - pos: -19.5,-83.5 + pos: -91.5,-24.5 parent: 2 - - uid: 36362 + - uid: 10913 components: - type: Transform - pos: -32.5,-88.5 + pos: -90.5,-24.5 parent: 2 - - uid: 36363 + - uid: 10914 components: - type: Transform - pos: -32.5,-89.5 + pos: -88.5,-25.5 parent: 2 - - uid: 36364 + - uid: 10915 components: - type: Transform - pos: -32.5,-90.5 + pos: -88.5,-26.5 parent: 2 - - uid: 36365 + - uid: 10916 components: - type: Transform - pos: -33.5,-90.5 + pos: -81.5,-26.5 parent: 2 - - uid: 36366 + - uid: 10917 components: - type: Transform - pos: -33.5,-91.5 + pos: -82.5,-27.5 parent: 2 - - uid: 36367 + - uid: 10919 components: - type: Transform - pos: -34.5,-91.5 + pos: -36.5,40.5 parent: 2 - - uid: 36368 + - uid: 10920 components: - type: Transform - pos: -34.5,-92.5 + pos: -36.5,43.5 parent: 2 - - uid: 36369 + - uid: 10921 components: - type: Transform - pos: -35.5,-92.5 + pos: -35.5,44.5 parent: 2 - - uid: 36723 + - uid: 10922 components: - type: Transform - pos: 31.5,-47.5 + rot: -1.5707963267948966 rad + pos: 79.5,-2.5 parent: 2 - - uid: 36745 + - uid: 10923 components: - type: Transform - pos: 35.5,-47.5 + rot: -1.5707963267948966 rad + pos: 79.5,-0.5 parent: 2 - - uid: 36746 + - uid: 10924 components: - type: Transform - pos: 31.5,-44.5 + rot: -1.5707963267948966 rad + pos: 79.5,-1.5 parent: 2 - - uid: 36773 + - uid: 10925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,37.5 + pos: 79.5,-3.5 parent: 2 - - uid: 36774 + - uid: 10926 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,37.5 + pos: 79.5,-4.5 parent: 2 - - uid: 36775 + - uid: 10927 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,37.5 + pos: 78.5,-5.5 parent: 2 - - uid: 36776 + - uid: 10928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,37.5 + rot: 1.5707963267948966 rad + pos: 81.5,-5.5 parent: 2 - - uid: 36777 + - uid: 10929 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,37.5 + pos: 80.5,-0.5 parent: 2 - - uid: 36778 + - uid: 10930 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,37.5 + pos: 80.5,-1.5 parent: 2 - - uid: 36779 + - uid: 10931 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,37.5 + pos: 80.5,-2.5 parent: 2 - - uid: 36780 + - uid: 10932 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,37.5 + pos: 80.5,-3.5 parent: 2 - - uid: 37231 + - uid: 10933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-8.5 + rot: -1.5707963267948966 rad + pos: 80.5,-4.5 parent: 2 - - uid: 37232 + - uid: 10934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-6.5 + rot: -1.5707963267948966 rad + pos: 79.5,-5.5 parent: 2 - - uid: 37235 + - uid: 10935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 + rot: -1.5707963267948966 rad + pos: 80.5,-5.5 parent: 2 - - uid: 37302 + - uid: 10936 components: - type: Transform - pos: 8.5,2.5 - parent: 36861 - - uid: 37303 + rot: -1.5707963267948966 rad + pos: 81.5,-4.5 + parent: 2 + - uid: 10937 components: - type: Transform - pos: 8.5,1.5 - parent: 36861 - - uid: 41056 + rot: -1.5707963267948966 rad + pos: 81.5,-3.5 + parent: 2 + - uid: 10938 components: - type: Transform - pos: -37.5,-66.5 + rot: -1.5707963267948966 rad + pos: 81.5,-2.5 parent: 2 - - uid: 41717 + - uid: 10939 components: - type: Transform - pos: 29.5,60.5 + rot: -1.5707963267948966 rad + pos: 81.5,-1.5 parent: 2 - - uid: 41718 + - uid: 10940 components: - type: Transform - pos: 29.5,61.5 + rot: -1.5707963267948966 rad + pos: 81.5,-0.5 parent: 2 - - uid: 41719 + - uid: 10941 components: - type: Transform - pos: 29.5,62.5 + rot: -1.5707963267948966 rad + pos: 81.5,0.5 parent: 2 - - uid: 41720 + - uid: 10942 components: - type: Transform - pos: 29.5,63.5 + rot: 3.141592653589793 rad + pos: -65.5,-64.5 parent: 2 - - uid: 41721 + - uid: 10944 components: - type: Transform - pos: 29.5,64.5 + pos: 32.5,-46.5 parent: 2 - - uid: 41722 + - uid: 10946 components: - type: Transform - pos: 29.5,65.5 + pos: 35.5,-40.5 parent: 2 - - uid: 41723 + - uid: 10947 components: - type: Transform - pos: 29.5,66.5 + pos: 35.5,-39.5 parent: 2 - - uid: 41724 + - uid: 10948 components: - type: Transform - pos: 29.5,67.5 + pos: 35.5,-38.5 parent: 2 - - uid: 41725 + - uid: 10949 components: - type: Transform - pos: 29.5,68.5 + pos: 36.5,-41.5 parent: 2 - - uid: 41726 + - uid: 10950 components: - type: Transform - pos: 29.5,69.5 + pos: 36.5,-42.5 parent: 2 - - uid: 41727 + - uid: 10952 components: - type: Transform - pos: 30.5,69.5 + pos: 38.5,-42.5 parent: 2 - - uid: 41728 + - uid: 10953 components: - type: Transform - pos: 30.5,70.5 + pos: 38.5,-43.5 parent: 2 - - uid: 41735 + - uid: 10954 components: - type: Transform - pos: 31.5,70.5 + pos: 39.5,-44.5 parent: 2 - - uid: 41751 + - uid: 10955 components: - type: Transform - pos: 32.5,70.5 + pos: 40.5,-44.5 parent: 2 - - uid: 41752 + - uid: 10956 components: - type: Transform - pos: 33.5,70.5 + pos: 40.5,-42.5 parent: 2 - - uid: 41753 + - uid: 10957 components: - type: Transform - pos: 34.5,70.5 + pos: 41.5,-42.5 parent: 2 - - uid: 41754 + - uid: 10958 components: - type: Transform - pos: 34.5,72.5 + pos: 42.5,-43.5 parent: 2 - - uid: 41755 + - uid: 10959 components: - type: Transform - pos: 34.5,71.5 + pos: 43.5,-43.5 parent: 2 - - uid: 41756 + - uid: 10960 components: - type: Transform - pos: 35.5,72.5 + pos: 44.5,-43.5 parent: 2 - - uid: 41757 + - uid: 10961 components: - type: Transform - pos: 36.5,72.5 + pos: 44.5,-42.5 parent: 2 - - uid: 41758 + - uid: 10962 components: - type: Transform - pos: 37.5,72.5 + pos: 43.5,-44.5 parent: 2 - - uid: 41759 + - uid: 10963 components: - type: Transform - pos: 38.5,72.5 + pos: 45.5,-44.5 parent: 2 - - uid: 41760 + - uid: 10964 components: - type: Transform - pos: 39.5,72.5 + pos: 47.5,-42.5 parent: 2 - - uid: 41761 + - uid: 10965 components: - type: Transform - pos: 40.5,72.5 + pos: 46.5,-42.5 parent: 2 - - uid: 41762 + - uid: 10966 components: - type: Transform - pos: 41.5,72.5 + pos: 48.5,-42.5 parent: 2 - - uid: 41763 + - uid: 10967 components: - type: Transform - pos: 42.5,72.5 + pos: 49.5,-43.5 parent: 2 - - uid: 41764 + - uid: 10968 components: - type: Transform - pos: 42.5,73.5 + pos: 48.5,-44.5 parent: 2 - - uid: 41779 + - uid: 10969 components: - type: Transform - pos: 25.5,50.5 + pos: 47.5,-44.5 parent: 2 - - uid: 41780 + - uid: 10970 components: - type: Transform - pos: 25.5,49.5 + pos: 50.5,-44.5 parent: 2 - - uid: 41781 + - uid: 10971 components: - type: Transform - pos: 26.5,49.5 + pos: 51.5,-44.5 parent: 2 - - uid: 41782 + - uid: 10973 components: - type: Transform - pos: 27.5,49.5 + pos: 29.5,-64.5 parent: 2 - - uid: 41784 + - uid: 10977 components: - type: Transform - pos: 25.5,52.5 + pos: 53.5,-42.5 parent: 2 - - uid: 41785 + - uid: 10980 components: - type: Transform - pos: 19.5,58.5 + rot: 3.141592653589793 rad + pos: 49.5,-45.5 parent: 2 - - uid: 41786 + - uid: 10981 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,58.5 + pos: 28.5,45.5 parent: 2 - - uid: 41787 + - uid: 10983 components: - type: Transform - pos: 21.5,58.5 + rot: 1.5707963267948966 rad + pos: 25.5,44.5 parent: 2 - - uid: 41788 + - uid: 10984 components: - type: Transform - pos: 22.5,58.5 + rot: 3.141592653589793 rad + pos: -64.5,-64.5 parent: 2 - - uid: 41789 + - uid: 10985 components: - type: Transform - pos: 23.5,58.5 + rot: 3.141592653589793 rad + pos: -66.5,-64.5 parent: 2 - - uid: 41790 + - uid: 10987 components: - type: Transform - pos: 23.5,56.5 + rot: 3.141592653589793 rad + pos: -67.5,-61.5 parent: 2 - - uid: 41791 + - uid: 10988 components: - type: Transform - pos: 23.5,55.5 + rot: 3.141592653589793 rad + pos: -67.5,-60.5 parent: 2 - - uid: 41792 + - uid: 10989 components: - type: Transform - pos: 23.5,54.5 + rot: 3.141592653589793 rad + pos: -67.5,-59.5 parent: 2 - - uid: 41793 + - uid: 10990 components: - type: Transform - pos: 23.5,53.5 + rot: 3.141592653589793 rad + pos: -67.5,-58.5 parent: 2 - - uid: 41794 + - uid: 10991 components: - type: Transform - pos: 23.5,52.5 + rot: 3.141592653589793 rad + pos: -67.5,-57.5 parent: 2 - - uid: 41795 + - uid: 10992 components: - type: Transform - pos: 24.5,52.5 + rot: 3.141592653589793 rad + pos: -61.5,-61.5 parent: 2 - - uid: 41807 + - uid: 10993 components: - type: Transform - pos: 21.5,63.5 + rot: 3.141592653589793 rad + pos: -61.5,-60.5 parent: 2 - - uid: 41815 + - uid: 10994 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,64.5 + pos: -61.5,-59.5 parent: 2 - - uid: 41853 + - uid: 10995 components: - type: Transform - pos: 66.5,51.5 + rot: 3.141592653589793 rad + pos: -61.5,-58.5 parent: 2 - - uid: 41951 + - uid: 10996 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,34.5 + pos: -61.5,-57.5 parent: 2 - - uid: 41952 + - uid: 10997 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,34.5 + pos: -61.5,-56.5 parent: 2 - - uid: 41953 + - uid: 10998 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,34.5 + pos: -55.5,-60.5 parent: 2 - - uid: 41954 + - uid: 10999 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,34.5 + pos: -55.5,-59.5 parent: 2 - - uid: 41957 + - uid: 11000 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,42.5 + pos: -55.5,-58.5 parent: 2 - - uid: 41958 + - uid: 11001 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,42.5 + pos: -55.5,-57.5 parent: 2 - - uid: 41959 + - uid: 11002 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,42.5 + pos: -55.5,-67.5 parent: 2 - - uid: 41960 + - uid: 11003 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,42.5 + pos: -55.5,-68.5 parent: 2 - - uid: 41964 + - uid: 11004 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,47.5 + pos: -55.5,-69.5 parent: 2 - - uid: 41965 + - uid: 11005 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,48.5 + pos: -55.5,-70.5 parent: 2 - - uid: 41966 + - uid: 11006 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,49.5 + pos: -55.5,-71.5 parent: 2 - - uid: 41967 + - uid: 11007 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,50.5 + pos: -61.5,-67.5 parent: 2 - - uid: 41968 + - uid: 11008 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,47.5 + pos: -61.5,-68.5 parent: 2 - - uid: 41969 + - uid: 11009 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,48.5 + pos: -61.5,-69.5 parent: 2 - - uid: 41970 + - uid: 11010 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,49.5 + pos: -61.5,-70.5 parent: 2 - - uid: 41971 + - uid: 11011 components: - type: Transform rot: 3.141592653589793 rad - pos: 88.5,42.5 + pos: -61.5,-71.5 parent: 2 - - uid: 41972 + - uid: 11012 components: - type: Transform rot: 3.141592653589793 rad - pos: 89.5,42.5 + pos: -61.5,-72.5 parent: 2 - - uid: 41973 + - uid: 11013 components: - type: Transform rot: 3.141592653589793 rad - pos: 90.5,42.5 + pos: -67.5,-67.5 parent: 2 - - uid: 41974 + - uid: 11014 components: - type: Transform rot: 3.141592653589793 rad - pos: 91.5,42.5 + pos: -67.5,-68.5 parent: 2 - - uid: 41976 + - uid: 11015 components: - type: Transform rot: 3.141592653589793 rad - pos: 88.5,34.5 + pos: -67.5,-69.5 parent: 2 - - uid: 41977 + - uid: 11016 components: - type: Transform rot: 3.141592653589793 rad - pos: 89.5,34.5 + pos: -67.5,-70.5 parent: 2 - - uid: 41978 + - uid: 11017 components: - type: Transform rot: 3.141592653589793 rad - pos: 90.5,34.5 + pos: -67.5,-71.5 parent: 2 - - uid: 41979 + - uid: 11018 components: - type: Transform rot: 3.141592653589793 rad - pos: 91.5,34.5 + pos: -68.5,-64.5 parent: 2 - - uid: 41980 + - uid: 11019 components: - type: Transform rot: 3.141592653589793 rad - pos: 92.5,34.5 + pos: -69.5,-64.5 parent: 2 - - uid: 41982 + - uid: 11020 components: - type: Transform rot: 3.141592653589793 rad - pos: 92.5,35.5 + pos: -67.5,-66.5 parent: 2 - - uid: 41984 + - uid: 11021 components: - type: Transform rot: 3.141592653589793 rad - pos: 92.5,38.5 + pos: -61.5,-64.5 parent: 2 - - uid: 41985 + - uid: 11022 components: - type: Transform rot: 3.141592653589793 rad - pos: 92.5,39.5 + pos: -60.5,-64.5 parent: 2 - - uid: 41986 + - uid: 11023 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,29.5 + pos: -59.5,-64.5 parent: 2 - - uid: 41987 + - uid: 11024 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,28.5 + pos: -58.5,-64.5 parent: 2 - - uid: 41988 + - uid: 11025 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,27.5 + pos: -57.5,-64.5 parent: 2 - - uid: 41989 + - uid: 11026 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,26.5 + pos: -56.5,-64.5 parent: 2 - - uid: 41991 + - uid: 11027 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,28.5 + pos: -55.5,-64.5 parent: 2 - - uid: 41992 + - uid: 11028 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,27.5 + pos: -54.5,-64.5 parent: 2 - - uid: 41993 + - uid: 11029 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,26.5 + pos: -53.5,-64.5 parent: 2 - - uid: 42022 + - uid: 11030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,43.5 + rot: 3.141592653589793 rad + pos: -52.5,-64.5 parent: 2 - - uid: 42024 + - uid: 11031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,30.5 + rot: 3.141592653589793 rad + pos: -55.5,-65.5 parent: 2 - - uid: 42031 + - uid: 11032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,36.5 + rot: 3.141592653589793 rad + pos: -55.5,-63.5 parent: 2 - - uid: 42032 + - uid: 11033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,37.5 + rot: 3.141592653589793 rad + pos: -55.5,-62.5 parent: 2 - - uid: 42037 + - uid: 11034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,29.5 + rot: 3.141592653589793 rad + pos: -61.5,-66.5 parent: 2 - - uid: 42038 + - uid: 11035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,41.5 + rot: 3.141592653589793 rad + pos: -61.5,-65.5 parent: 2 - - uid: 42039 + - uid: 11036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,40.5 + rot: 3.141592653589793 rad + pos: -61.5,-63.5 parent: 2 - - uid: 42044 + - uid: 11037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,43.5 + rot: 3.141592653589793 rad + pos: -61.5,-62.5 parent: 2 - - uid: 42046 + - uid: 11038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,41.5 + rot: 3.141592653589793 rad + pos: -67.5,-65.5 parent: 2 - - uid: 42071 + - uid: 11039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,49.5 + rot: 3.141592653589793 rad + pos: -67.5,-63.5 parent: 2 - - uid: 42072 + - uid: 11040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,51.5 + rot: 3.141592653589793 rad + pos: -67.5,-62.5 parent: 2 - - uid: 42300 + - uid: 11041 components: - type: Transform - pos: 48.5,79.5 + pos: 27.5,43.5 parent: 2 - - uid: 42311 + - uid: 11050 components: - type: Transform - pos: 46.5,79.5 + pos: -44.5,60.5 parent: 2 - - uid: 42312 + - uid: 11238 components: - type: Transform - pos: 48.5,78.5 + pos: 20.5,60.5 parent: 2 - - uid: 42313 + - uid: 11240 components: - type: Transform - pos: 48.5,77.5 + pos: 18.5,60.5 parent: 2 - - uid: 42315 + - uid: 11426 components: - type: Transform - pos: 48.5,80.5 + pos: -48.5,64.5 parent: 2 - - uid: 42316 + - uid: 11727 components: - type: Transform - pos: 48.5,81.5 + pos: 19.5,60.5 parent: 2 - - uid: 42317 + - uid: 11732 components: - type: Transform - pos: 48.5,82.5 + pos: 47.5,38.5 parent: 2 - - uid: 42323 + - uid: 11733 components: - type: Transform - pos: 46.5,87.5 + pos: 48.5,38.5 parent: 2 - - uid: 42324 + - uid: 11734 components: - type: Transform - pos: 47.5,87.5 + pos: 46.5,38.5 parent: 2 - - uid: 42325 + - uid: 11775 components: - type: Transform - pos: 49.5,87.5 + pos: 21.5,59.5 parent: 2 - - uid: 42326 + - uid: 11787 components: - type: Transform - pos: 50.5,87.5 + pos: -50.5,64.5 parent: 2 - - uid: 42328 + - uid: 11790 components: - type: Transform - pos: 39.5,79.5 + pos: -15.5,67.5 parent: 2 - - uid: 42329 + - uid: 11791 components: - type: Transform - pos: 40.5,79.5 + pos: -14.5,67.5 parent: 2 - - uid: 42330 + - uid: 11796 components: - type: Transform - pos: 41.5,79.5 + pos: 19.5,61.5 parent: 2 - - uid: 42331 + - uid: 11867 components: - type: Transform - pos: 42.5,79.5 + pos: 18.5,61.5 parent: 2 - - uid: 42332 + - uid: 11896 components: - type: Transform - pos: 43.5,79.5 + pos: 47.5,28.5 parent: 2 - - uid: 42333 + - uid: 12009 components: - type: Transform - pos: 44.5,79.5 + pos: 20.5,61.5 parent: 2 - - uid: 42334 + - uid: 12046 components: - type: Transform - pos: 45.5,79.5 + pos: -52.5,62.5 parent: 2 - - uid: 42335 + - uid: 12134 components: - type: Transform - pos: 49.5,79.5 + pos: 34.5,50.5 parent: 2 - - uid: 42336 + - uid: 12148 components: - type: Transform - pos: 50.5,79.5 + pos: 33.5,50.5 parent: 2 - - uid: 42337 + - uid: 12149 components: - type: Transform - pos: 51.5,79.5 + pos: -15.5,55.5 parent: 2 - - uid: 42338 + - uid: 12172 components: - type: Transform - pos: 52.5,79.5 + pos: 32.5,50.5 parent: 2 - - uid: 42339 + - uid: 12174 components: - type: Transform - pos: 53.5,79.5 + pos: 35.5,50.5 parent: 2 - - uid: 42340 + - uid: 12217 components: - type: Transform - pos: 54.5,79.5 + pos: 31.5,50.5 parent: 2 - - uid: 42341 + - uid: 13220 components: - type: Transform - pos: 55.5,79.5 + pos: -20.5,-84.5 parent: 2 - - uid: 42342 + - uid: 13792 components: - type: Transform - pos: 56.5,79.5 + pos: -21.5,-84.5 parent: 2 - - uid: 42343 + - uid: 13793 components: - type: Transform - pos: 57.5,79.5 + pos: -19.5,-84.5 parent: 2 - - uid: 42344 + - uid: 13949 components: - type: Transform - pos: 37.5,83.5 + pos: -7.5,-70.5 parent: 2 - - uid: 42345 + - uid: 13950 components: - type: Transform - pos: 38.5,83.5 + pos: -11.5,-69.5 parent: 2 - - uid: 42346 + - uid: 13971 components: - type: Transform - pos: 39.5,83.5 + pos: 9.5,-66.5 parent: 2 - - uid: 42347 + - uid: 14025 components: - type: Transform - pos: 40.5,83.5 + pos: -51.5,64.5 parent: 2 - - uid: 42348 + - uid: 14155 components: - type: Transform - pos: 41.5,83.5 + pos: 52.5,38.5 parent: 2 - - uid: 42349 + - uid: 14157 components: - type: Transform - pos: 42.5,83.5 + pos: 51.5,38.5 parent: 2 - - uid: 42350 + - uid: 14159 components: - type: Transform - pos: 43.5,83.5 + pos: -22.5,-32.5 parent: 2 - - uid: 42351 + - uid: 14160 components: - type: Transform - pos: 44.5,83.5 + pos: 44.5,38.5 parent: 2 - - uid: 42352 + - uid: 14203 components: - type: Transform - pos: 45.5,83.5 + pos: 44.5,87.5 parent: 2 - - uid: 42353 + - uid: 14218 components: - type: Transform - pos: 46.5,83.5 + pos: 43.5,87.5 parent: 2 - - uid: 42354 + - uid: 14286 components: - type: Transform - pos: 47.5,83.5 + pos: 42.5,87.5 parent: 2 - - uid: 42355 + - uid: 14318 components: - type: Transform - pos: 57.5,87.5 + pos: 41.5,87.5 parent: 2 - - uid: 42356 + - uid: 14320 components: - type: Transform - pos: 49.5,83.5 + pos: 43.5,38.5 parent: 2 - - uid: 42357 + - uid: 14325 components: - type: Transform - pos: 50.5,83.5 + pos: 38.5,41.5 parent: 2 - - uid: 42358 + - uid: 14333 components: - type: Transform - pos: 51.5,83.5 + pos: 40.5,87.5 parent: 2 - - uid: 42359 + - uid: 14339 components: - type: Transform - pos: 52.5,83.5 + pos: 49.5,38.5 parent: 2 - - uid: 42360 + - uid: 14340 components: - type: Transform - pos: 53.5,83.5 + pos: 45.5,38.5 parent: 2 - - uid: 42361 + - uid: 14341 components: - type: Transform - pos: 54.5,83.5 + pos: 50.5,38.5 parent: 2 - - uid: 42362 + - uid: 14368 components: - type: Transform - pos: 55.5,83.5 + pos: 39.5,87.5 parent: 2 - - uid: 42363 + - uid: 14407 components: - type: Transform - pos: 56.5,83.5 + pos: 38.5,87.5 parent: 2 - - uid: 42364 + - uid: 14583 components: - type: Transform - pos: 57.5,83.5 + pos: -67.5,-64.5 parent: 2 - - uid: 42365 + - uid: 14836 components: - type: Transform - pos: 58.5,83.5 + pos: -52.5,63.5 parent: 2 - - uid: 42366 + - uid: 14863 components: - type: Transform - pos: 59.5,83.5 + pos: 48.5,86.5 parent: 2 - - uid: 42367 + - uid: 14869 components: - type: Transform - pos: 56.5,87.5 + pos: 60.5,19.5 parent: 2 - - uid: 42368 + - uid: 15032 components: - type: Transform - pos: 55.5,87.5 + pos: 43.5,4.5 parent: 2 - - uid: 42369 + - uid: 15439 components: - type: Transform - pos: 54.5,87.5 + rot: 3.141592653589793 rad + pos: -41.5,37.5 parent: 2 - - uid: 42370 + - uid: 15463 components: - type: Transform - pos: 53.5,87.5 + rot: -1.5707963267948966 rad + pos: -41.5,46.5 parent: 2 - - uid: 42371 + - uid: 15484 components: - type: Transform - pos: 52.5,87.5 + rot: 3.141592653589793 rad + pos: -41.5,36.5 parent: 2 - - uid: 42372 + - uid: 15692 components: - type: Transform - pos: 51.5,87.5 + pos: 42.5,35.5 parent: 2 - - uid: 42373 + - uid: 15693 components: - type: Transform - pos: 45.5,87.5 + pos: 42.5,34.5 parent: 2 - - uid: 42380 + - uid: 15768 components: - type: Transform - pos: 48.5,88.5 + pos: 54.5,27.5 parent: 2 - - uid: 42488 + - uid: 15796 components: - type: Transform - pos: -51.5,47.5 + pos: 42.5,37.5 parent: 2 - - uid: 42780 + - uid: 15846 components: - type: Transform - pos: -47.5,60.5 + pos: 41.5,28.5 parent: 2 - - uid: 42781 + - uid: 15897 components: - type: Transform - pos: -52.5,54.5 + rot: -1.5707963267948966 rad + pos: -45.5,48.5 parent: 2 - - uid: 42782 + - uid: 16111 components: - type: Transform - pos: -52.5,55.5 + rot: -1.5707963267948966 rad + pos: -42.5,42.5 parent: 2 - - uid: 42783 + - uid: 16301 components: - type: Transform - pos: -52.5,56.5 + pos: 59.5,28.5 parent: 2 - - uid: 42784 + - uid: 17474 components: - type: Transform - pos: -52.5,57.5 + pos: 54.5,26.5 parent: 2 - - uid: 42785 + - uid: 17891 components: - type: Transform - pos: -52.5,58.5 + pos: -51.5,37.5 parent: 2 - - uid: 42787 + - uid: 17893 components: - type: Transform - pos: -52.5,60.5 + pos: -50.5,37.5 parent: 2 - - uid: 42788 + - uid: 17933 components: - type: Transform - pos: -52.5,61.5 + pos: -51.5,52.5 parent: 2 - - uid: 42791 + - uid: 17947 components: - type: Transform - pos: -53.5,67.5 + pos: -47.5,40.5 parent: 2 - - uid: 42792 + - uid: 18014 components: - type: Transform - pos: -53.5,64.5 + pos: -51.5,40.5 parent: 2 - - uid: 42793 + - uid: 18030 components: - type: Transform - pos: -54.5,64.5 + pos: -47.5,39.5 parent: 2 - - uid: 42794 + - uid: 18398 components: - type: Transform - pos: -55.5,64.5 + pos: 20.5,59.5 parent: 2 - - uid: 42795 + - uid: 18461 components: - type: Transform - pos: -56.5,64.5 + rot: -1.5707963267948966 rad + pos: -42.5,49.5 parent: 2 - - uid: 42796 + - uid: 18524 components: - type: Transform - pos: -57.5,64.5 + pos: -10.5,46.5 parent: 2 - - uid: 42797 + - uid: 18683 components: - type: Transform - pos: -58.5,64.5 + pos: 60.5,27.5 parent: 2 - - uid: 42799 + - uid: 18690 components: - type: Transform - pos: -46.5,60.5 + rot: -1.5707963267948966 rad + pos: -38.5,51.5 parent: 2 - - uid: 42800 + - uid: 18769 components: - type: Transform - pos: -45.5,60.5 + pos: 47.5,34.5 parent: 2 - - uid: 42801 + - uid: 18774 components: - type: Transform - pos: -46.5,64.5 + pos: 48.5,34.5 parent: 2 - - uid: 42802 + - uid: 18775 components: - type: Transform - pos: -47.5,64.5 + pos: 49.5,34.5 parent: 2 - - uid: 42806 + - uid: 18787 components: - type: Transform - pos: -48.5,60.5 + pos: 60.5,28.5 parent: 2 - - uid: 42807 + - uid: 18817 components: - type: Transform - pos: -49.5,60.5 + rot: -1.5707963267948966 rad + pos: -39.5,51.5 parent: 2 - - uid: 42808 + - uid: 18819 components: - type: Transform - pos: -50.5,60.5 + pos: 42.5,36.5 parent: 2 - - uid: 42809 + - uid: 18835 components: - type: Transform - pos: -51.5,60.5 + pos: 54.5,12.5 parent: 2 - - uid: 42810 + - uid: 18967 components: - type: Transform - pos: -53.5,60.5 + pos: 54.5,20.5 parent: 2 - - uid: 42811 + - uid: 19188 components: - type: Transform - pos: -54.5,60.5 + rot: 3.141592653589793 rad + pos: 43.5,35.5 parent: 2 - - uid: 42812 + - uid: 19362 components: - type: Transform - pos: -55.5,60.5 + pos: 45.5,32.5 parent: 2 - - uid: 42813 + - uid: 19450 components: - type: Transform - pos: -56.5,60.5 + pos: 45.5,33.5 parent: 2 - - uid: 42814 + - uid: 19452 components: - type: Transform - pos: -57.5,60.5 + pos: 45.5,34.5 parent: 2 - - uid: 42815 + - uid: 19536 components: - type: Transform - pos: -58.5,60.5 + pos: 46.5,34.5 parent: 2 - - uid: 42817 + - uid: 19568 components: - type: Transform - pos: -58.5,56.5 + pos: 51.5,28.5 parent: 2 - - uid: 42818 + - uid: 19569 components: - type: Transform - pos: -57.5,56.5 + pos: 52.5,28.5 parent: 2 - - uid: 42819 + - uid: 19574 components: - type: Transform - pos: -56.5,56.5 + pos: 19.5,59.5 parent: 2 - - uid: 42820 + - uid: 19666 components: - type: Transform - pos: -55.5,56.5 + pos: 56.5,28.5 parent: 2 - - uid: 42821 + - uid: 19740 components: - type: Transform - pos: -54.5,56.5 + rot: 1.5707963267948966 rad + pos: 43.5,31.5 parent: 2 - - uid: 42822 + - uid: 19778 components: - type: Transform - pos: -53.5,56.5 + rot: -1.5707963267948966 rad + pos: -45.5,49.5 parent: 2 - - uid: 42823 + - uid: 19787 components: - type: Transform - pos: -51.5,56.5 + rot: 3.141592653589793 rad + pos: 43.5,36.5 parent: 2 - - uid: 42824 + - uid: 19793 components: - type: Transform - pos: -50.5,56.5 + pos: 38.5,50.5 parent: 2 - - uid: 42825 + - uid: 19797 components: - type: Transform - pos: -49.5,56.5 + pos: 66.5,30.5 parent: 2 - - uid: 42826 + - uid: 19798 components: - type: Transform - pos: -48.5,56.5 + pos: 91.5,51.5 parent: 2 - - uid: 42827 + - uid: 19799 components: - type: Transform - pos: -47.5,56.5 + pos: 90.5,51.5 parent: 2 - - uid: 42828 + - uid: 19813 components: - type: Transform - pos: -46.5,56.5 + rot: 3.141592653589793 rad + pos: -42.5,37.5 parent: 2 - - uid: 42919 + - uid: 19819 components: - type: Transform - pos: -45.5,56.5 + pos: 60.5,21.5 parent: 2 - - uid: 42920 + - uid: 19830 components: - type: Transform - pos: -40.5,61.5 + rot: -1.5707963267948966 rad + pos: -41.5,47.5 parent: 2 - - uid: 42921 + - uid: 19834 components: - type: Transform - pos: -40.5,60.5 + pos: 29.5,-65.5 parent: 2 - - uid: 42922 + - uid: 19856 components: - type: Transform - pos: -41.5,59.5 + pos: -43.5,65.5 parent: 2 - - uid: 42928 + - uid: 19890 components: - type: Transform - pos: -41.5,64.5 + pos: 66.5,27.5 parent: 2 - - uid: 42929 + - uid: 19891 components: - type: Transform - pos: -41.5,65.5 + pos: 66.5,26.5 parent: 2 - - uid: 42965 + - uid: 19909 components: - type: Transform - pos: -11.5,64.5 + rot: 3.141592653589793 rad + pos: -43.5,36.5 parent: 2 - - uid: 43003 + - uid: 19910 components: - type: Transform - pos: -11.5,63.5 + rot: -1.5707963267948966 rad + pos: -39.5,49.5 parent: 2 - - uid: 43004 + - uid: 19933 components: - type: Transform - pos: -11.5,59.5 + pos: 29.5,59.5 parent: 2 - - uid: 43031 + - uid: 19942 components: - type: Transform - pos: -43.5,42.5 + pos: 29.5,58.5 parent: 2 - - uid: 43032 + - uid: 19980 components: - type: Transform - pos: -15.5,56.5 + pos: 41.5,41.5 parent: 2 - - uid: 43041 + - uid: 20026 components: - type: Transform - pos: -44.5,41.5 + pos: 37.5,50.5 parent: 2 - - uid: 43069 + - uid: 20160 components: - type: Transform - pos: -34.5,46.5 + pos: 16.5,43.5 parent: 2 - - uid: 43142 + - uid: 20161 components: - type: Transform - pos: -45.5,-5.5 + pos: 14.5,50.5 parent: 2 - - uid: 43262 + - uid: 20165 components: - type: Transform - pos: -47.5,35.5 + pos: 14.5,54.5 parent: 2 - - uid: 43273 + - uid: 20175 components: - type: Transform - pos: -47.5,36.5 + pos: 15.5,49.5 parent: 2 - - uid: 43275 + - uid: 20251 components: - type: Transform - pos: -47.5,34.5 + rot: 3.141592653589793 rad + pos: 31.5,38.5 parent: 2 - - uid: 43477 + - uid: 20328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,39.5 + pos: 18.5,63.5 parent: 2 - - uid: 43489 + - uid: 20330 components: - type: Transform - pos: -45.5,46.5 + pos: 21.5,60.5 parent: 2 - - uid: 43555 + - uid: 20426 components: - type: Transform - pos: 43.5,6.5 + pos: 80.5,10.5 parent: 2 - - uid: 43605 + - uid: 20429 components: - type: Transform - pos: -51.5,47.5 + pos: 80.5,9.5 parent: 2 - - uid: 43606 + - uid: 20443 components: - type: Transform - pos: -50.5,46.5 + pos: 17.5,59.5 parent: 2 - - uid: 43608 + - uid: 20483 components: - type: Transform - pos: -50.5,44.5 + pos: 12.5,58.5 parent: 2 - - uid: 43609 + - uid: 20485 components: - type: Transform - pos: -50.5,43.5 + pos: 16.5,48.5 parent: 2 - - uid: 43610 + - uid: 20498 components: - type: Transform - pos: -47.5,42.5 + pos: 16.5,47.5 parent: 2 - - uid: 43611 + - uid: 20582 components: - type: Transform - pos: -47.5,44.5 + pos: -12.5,55.5 parent: 2 - - uid: 43612 + - uid: 20661 components: - type: Transform - pos: -44.5,46.5 + pos: -11.5,54.5 parent: 2 - - uid: 43642 + - uid: 20677 components: - type: Transform - pos: -15.5,58.5 + pos: 34.5,-48.5 parent: 2 - - uid: 43653 + - uid: 20678 components: - type: Transform - pos: -15.5,64.5 + pos: 32.5,-43.5 parent: 2 - - uid: 43654 + - uid: 20779 components: - type: Transform - pos: -15.5,65.5 + pos: 66.5,35.5 parent: 2 - - uid: 43655 + - uid: 20807 components: - type: Transform - pos: -15.5,62.5 + rot: -1.5707963267948966 rad + pos: -44.5,45.5 parent: 2 - - uid: 43710 + - uid: 20810 components: - type: Transform - pos: -14.5,60.5 + rot: -1.5707963267948966 rad + pos: -46.5,47.5 parent: 2 - - uid: 43714 + - uid: 20842 components: - type: Transform - pos: -14.5,61.5 + pos: 23.5,57.5 parent: 2 - - uid: 43866 + - uid: 20845 components: - type: Transform - pos: -45.5,64.5 + rot: 1.5707963267948966 rad + pos: -48.5,34.5 parent: 2 - - uid: 43875 + - uid: 20855 components: - type: Transform - pos: -42.5,58.5 + rot: -1.5707963267948966 rad + pos: 45.5,37.5 parent: 2 - - uid: 43876 + - uid: 20870 components: - type: Transform - pos: -42.5,61.5 + rot: -1.5707963267948966 rad + pos: -37.5,50.5 parent: 2 - - uid: 43880 + - uid: 20875 components: - type: Transform - pos: -55.5,-56.5 + pos: -42.5,-76.5 parent: 2 - - uid: 43893 + - uid: 20931 components: - type: Transform - pos: -61.5,-55.5 + pos: -43.5,-76.5 parent: 2 - - uid: 43894 + - uid: 20941 components: - type: Transform - pos: -67.5,-72.5 + rot: -1.5707963267948966 rad + pos: -44.5,51.5 parent: 2 - - uid: 43895 + - uid: 20949 components: - type: Transform - pos: -61.5,-73.5 + pos: 17.5,63.5 parent: 2 - - uid: 43896 + - uid: 20950 components: - type: Transform - pos: -55.5,-72.5 + pos: 21.5,61.5 parent: 2 - - uid: 44488 + - uid: 20967 components: - type: Transform - pos: 53.5,-48.5 + pos: -44.5,-77.5 parent: 2 - - uid: 44490 + - uid: 20994 components: - type: Transform - pos: 55.5,-49.5 + pos: 81.5,10.5 parent: 2 - - uid: 44491 + - uid: 20996 components: - type: Transform - pos: 53.5,-47.5 + pos: 75.5,10.5 parent: 2 - - uid: 44492 + - uid: 20997 components: - type: Transform - pos: 60.5,-51.5 + pos: 81.5,7.5 parent: 2 - - uid: 44493 + - uid: 20998 components: - type: Transform - pos: 61.5,-51.5 + pos: 81.5,8.5 parent: 2 - - uid: 44496 + - uid: 21207 components: - type: Transform - pos: 54.5,-51.5 + pos: 58.5,28.5 parent: 2 - - uid: 44497 + - uid: 21208 components: - type: Transform - pos: 64.5,-51.5 + pos: 88.5,25.5 parent: 2 - - uid: 44498 + - uid: 21213 components: - type: Transform - pos: 65.5,-51.5 + pos: -10.5,50.5 parent: 2 - - uid: 44501 + - uid: 21376 components: - type: Transform - pos: 70.5,-49.5 + pos: 42.5,38.5 parent: 2 - - uid: 44502 + - uid: 21384 components: - type: Transform - pos: 71.5,-49.5 + pos: 40.5,41.5 parent: 2 - - uid: 44570 + - uid: 21386 components: - type: Transform - pos: 71.5,-40.5 + pos: 42.5,40.5 parent: 2 - - uid: 44571 + - uid: 21390 components: - type: Transform - pos: 72.5,-40.5 + pos: 42.5,41.5 parent: 2 - - uid: 44572 + - uid: 21402 components: - type: Transform - pos: 72.5,-39.5 + pos: 66.5,25.5 parent: 2 - - uid: 44573 + - uid: 21604 components: - type: Transform - pos: 71.5,-38.5 + pos: 92.5,48.5 parent: 2 - - uid: 44574 + - uid: 21617 components: - type: Transform - pos: 71.5,-36.5 + pos: 92.5,51.5 parent: 2 - - uid: 44575 + - uid: 21680 components: - type: Transform - pos: 71.5,-35.5 + pos: 66.5,33.5 parent: 2 - - uid: 44576 + - uid: 21733 components: - type: Transform - pos: 71.5,-30.5 + pos: 76.5,25.5 parent: 2 - - uid: 44577 + - uid: 21734 components: - type: Transform - pos: 71.5,-31.5 + pos: 78.5,25.5 parent: 2 - - uid: 44578 + - uid: 21735 components: - type: Transform - pos: 71.5,-32.5 + pos: 28.5,-64.5 parent: 2 - - uid: 44579 + - uid: 21738 components: - type: Transform - pos: 71.5,-33.5 + pos: 89.5,25.5 parent: 2 - - uid: 44580 + - uid: 21740 components: - type: Transform - pos: 70.5,-26.5 + pos: 66.5,41.5 parent: 2 - - uid: 44581 + - uid: 21779 components: - type: Transform - pos: 70.5,-25.5 + pos: 53.5,28.5 parent: 2 - - uid: 44582 + - uid: 21805 components: - type: Transform - pos: 70.5,-24.5 + pos: 72.5,51.5 parent: 2 - - uid: 44583 + - uid: 21822 components: - type: Transform - pos: 70.5,-23.5 + pos: 76.5,51.5 parent: 2 - - uid: 44584 + - uid: 21874 components: - type: Transform - pos: 69.5,-23.5 + pos: 53.5,29.5 parent: 2 - - uid: 44585 + - uid: 21958 components: - type: Transform - pos: 69.5,-21.5 + pos: 4.5,43.5 parent: 2 - - uid: 44586 + - uid: 21987 components: - type: Transform - pos: 70.5,-21.5 + pos: 42.5,39.5 parent: 2 - - uid: 44587 + - uid: 22020 components: - type: Transform - pos: 71.5,-21.5 + pos: 71.5,25.5 parent: 2 - - uid: 44588 + - uid: 22025 components: - type: Transform - pos: 71.5,-20.5 + pos: 74.5,25.5 parent: 2 - - uid: 44589 + - uid: 22026 components: - type: Transform - pos: 71.5,-26.5 + pos: 90.5,25.5 parent: 2 - - uid: 44590 + - uid: 22166 components: - type: Transform - pos: 72.5,-26.5 + pos: 57.5,12.5 parent: 2 - - uid: 44591 + - uid: 22188 components: - type: Transform - pos: 73.5,-26.5 + pos: 39.5,-9.5 parent: 2 - - uid: 44592 + - uid: 22486 components: - type: Transform - pos: 74.5,-26.5 + pos: -67.5,-56.5 parent: 2 - - uid: 44593 + - uid: 22523 components: - type: Transform - pos: 67.5,-23.5 + pos: -59.5,56.5 parent: 2 - - uid: 44594 + - uid: 22548 components: - type: Transform - pos: 66.5,-23.5 + pos: 16.5,-66.5 parent: 2 - - uid: 44595 + - uid: 22571 components: - type: Transform - pos: 65.5,-23.5 + pos: -24.5,-31.5 parent: 2 - - uid: 44596 + - uid: 22574 components: - type: Transform - pos: 65.5,-21.5 + pos: -24.5,-32.5 parent: 2 - - uid: 44597 + - uid: 22619 components: - type: Transform - pos: 65.5,-19.5 + pos: 38.5,-9.5 parent: 2 - - uid: 44598 + - uid: 22635 components: - type: Transform - pos: 64.5,-18.5 + pos: -24.5,-33.5 parent: 2 - - uid: 44599 + - uid: 22688 components: - type: Transform - pos: 64.5,-17.5 + pos: -23.5,-31.5 parent: 2 - - uid: 44600 + - uid: 22848 components: - type: Transform - pos: 63.5,-14.5 + pos: -23.5,-33.5 parent: 2 - - uid: 44601 + - uid: 22907 components: - type: Transform - pos: 63.5,-13.5 + pos: -22.5,-31.5 parent: 2 - - uid: 44602 + - uid: 22919 components: - type: Transform - pos: 64.5,-15.5 + pos: 34.5,-37.5 parent: 2 - - uid: 44603 + - uid: 22975 components: - type: Transform - pos: 63.5,-11.5 + rot: -1.5707963267948966 rad + pos: -45.5,48.5 parent: 2 - - uid: 44604 + - uid: 22996 components: - type: Transform - pos: 63.5,-10.5 + pos: 81.5,9.5 parent: 2 - - uid: 44605 + - uid: 22997 components: - type: Transform - pos: 63.5,-9.5 + pos: 81.5,12.5 parent: 2 - - uid: 44607 + - uid: 23065 components: - type: Transform - pos: 61.5,-9.5 + pos: -60.5,60.5 parent: 2 - - uid: 44763 + - uid: 23112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-10.5 + pos: -59.5,64.5 parent: 2 - - uid: 44764 + - uid: 23134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-10.5 + pos: 40.5,-9.5 parent: 2 - - uid: 44765 + - uid: 23270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-10.5 + pos: 68.5,25.5 parent: 2 - - uid: 44766 + - uid: 23462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-8.5 + pos: 92.5,26.5 parent: 2 - - uid: 44768 + - uid: 23463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-10.5 + pos: 92.5,25.5 parent: 2 - - uid: 44769 + - uid: 23464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-12.5 + pos: 92.5,27.5 parent: 2 - - uid: 44770 + - uid: 23466 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-13.5 + pos: 91.5,25.5 parent: 2 - - uid: 44771 + - uid: 23467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-16.5 + pos: 67.5,25.5 parent: 2 - - uid: 44772 + - uid: 23567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-16.5 + pos: 80.5,25.5 parent: 2 - - uid: 44773 + - uid: 23568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-17.5 + pos: 72.5,25.5 parent: 2 - - uid: 44774 + - uid: 23628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-17.5 + pos: 73.5,25.5 parent: 2 - - uid: 44775 + - uid: 23629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-17.5 + pos: 3.5,43.5 parent: 2 - - uid: 44776 + - uid: 23689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-17.5 + pos: 42.5,32.5 parent: 2 - - uid: 44777 + - uid: 23693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-17.5 + rot: 1.5707963267948966 rad + pos: 43.5,32.5 parent: 2 - - uid: 44778 + - uid: 23883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-18.5 + pos: 75.5,25.5 parent: 2 - - uid: 44779 + - uid: 23957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-13.5 + pos: -41.5,-76.5 parent: 2 - - uid: 44780 + - uid: 24032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-13.5 + pos: 69.5,25.5 parent: 2 - - uid: 44781 + - uid: 24033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-15.5 + pos: 82.5,25.5 parent: 2 - - uid: 44782 + - uid: 24034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-15.5 + pos: 84.5,25.5 parent: 2 - - uid: 44783 + - uid: 24358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-8.5 + pos: -44.5,-76.5 parent: 2 - - uid: 45383 + - uid: 24728 components: - type: Transform - pos: 0.5,-0.5 - parent: 43176 - - uid: 45384 + pos: 11.5,-28.5 + parent: 2 + - uid: 24739 components: - type: Transform - pos: -0.5,0.5 - parent: 43176 - - uid: 45385 + pos: 66.5,39.5 + parent: 2 + - uid: 24741 components: - type: Transform - pos: 0.5,0.5 - parent: 43176 - - uid: 45386 + pos: 66.5,40.5 + parent: 2 + - uid: 24755 components: - type: Transform - pos: 1.5,0.5 - parent: 43176 - - uid: 45387 + pos: 71.5,51.5 + parent: 2 + - uid: 24763 components: - type: Transform - pos: 2.5,0.5 - parent: 43176 - - uid: 45388 + pos: 73.5,51.5 + parent: 2 + - uid: 24767 components: - type: Transform - pos: 3.5,0.5 - parent: 43176 - - uid: 45389 + pos: 77.5,51.5 + parent: 2 + - uid: 24819 components: - type: Transform - pos: 4.5,0.5 - parent: 43176 - - uid: 45390 + pos: 75.5,51.5 + parent: 2 + - uid: 24820 components: - type: Transform - pos: 5.5,0.5 - parent: 43176 - - uid: 45391 + pos: 74.5,51.5 + parent: 2 + - uid: 24835 components: - type: Transform - pos: 6.5,0.5 - parent: 43176 - - uid: 45392 + pos: 43.5,28.5 + parent: 2 + - uid: 24840 components: - type: Transform - pos: 6.5,1.5 - parent: 43176 - - uid: 45393 + pos: 66.5,38.5 + parent: 2 + - uid: 24851 components: - type: Transform - pos: 6.5,2.5 - parent: 43176 - - uid: 45394 + pos: 83.5,25.5 + parent: 2 + - uid: 24852 components: - type: Transform - pos: 6.5,3.5 - parent: 43176 - - uid: 45395 + pos: 70.5,25.5 + parent: 2 + - uid: 24872 components: - type: Transform - pos: 6.5,4.5 - parent: 43176 - - uid: 45396 + pos: 66.5,37.5 + parent: 2 + - uid: 24954 components: - type: Transform - pos: 6.5,-0.5 - parent: 43176 - - uid: 45397 + pos: 66.5,36.5 + parent: 2 + - uid: 25010 components: - type: Transform - pos: 6.5,-1.5 - parent: 43176 - - uid: 45398 + pos: 60.5,12.5 + parent: 2 + - uid: 25177 components: - type: Transform - pos: 6.5,-2.5 - parent: 43176 - - uid: 45399 + pos: 60.5,15.5 + parent: 2 + - uid: 25230 components: - type: Transform - pos: 6.5,-3.5 - parent: 43176 - - uid: 45400 + pos: 86.5,25.5 + parent: 2 + - uid: 25231 components: - type: Transform - pos: 6.5,-4.5 - parent: 43176 - - uid: 47535 + pos: 81.5,25.5 + parent: 2 + - uid: 25232 components: - type: Transform - pos: 0.5,-0.5 - parent: 56108 - - uid: 47709 + pos: 79.5,25.5 + parent: 2 + - uid: 25233 components: - type: Transform - pos: -43.5,-28.5 + pos: 85.5,25.5 parent: 2 - - uid: 47894 + - uid: 25234 components: - type: Transform - pos: -6.5,-9.5 - parent: 45711 - - uid: 47895 + pos: 87.5,25.5 + parent: 2 + - uid: 25235 components: - type: Transform - pos: -6.5,-10.5 - parent: 45711 - - uid: 47896 + pos: 54.5,25.5 + parent: 2 + - uid: 25243 components: - type: Transform - pos: -5.5,-9.5 - parent: 45711 - - uid: 47897 + pos: 44.5,28.5 + parent: 2 + - uid: 25261 components: - type: Transform - pos: -5.5,-10.5 - parent: 45711 - - uid: 47898 + pos: 42.5,31.5 + parent: 2 + - uid: 25269 components: - type: Transform - pos: -4.5,-9.5 - parent: 45711 - - uid: 47899 + pos: 42.5,33.5 + parent: 2 + - uid: 25309 components: - type: Transform - pos: -4.5,-10.5 - parent: 45711 - - uid: 47900 + pos: 45.5,28.5 + parent: 2 + - uid: 25318 components: - type: Transform - pos: -3.5,-9.5 - parent: 45711 - - uid: 47901 + pos: 77.5,25.5 + parent: 2 + - uid: 25391 components: - type: Transform - pos: -3.5,-10.5 - parent: 45711 - - uid: 47902 + pos: 20.5,62.5 + parent: 2 + - uid: 25396 components: - type: Transform - pos: -2.5,-9.5 - parent: 45711 - - uid: 47903 + pos: 19.5,62.5 + parent: 2 + - uid: 25400 components: - type: Transform - pos: -2.5,-10.5 - parent: 45711 - - uid: 47904 + pos: 17.5,62.5 + parent: 2 + - uid: 25402 components: - type: Transform - pos: -1.5,-9.5 - parent: 45711 - - uid: 47905 + pos: 18.5,62.5 + parent: 2 + - uid: 25472 components: - type: Transform - pos: -0.5,-9.5 - parent: 45711 - - uid: 47906 + pos: 36.5,50.5 + parent: 2 + - uid: 25607 components: - type: Transform - pos: -0.5,-10.5 - parent: 45711 - - uid: 47907 + pos: 10.5,-27.5 + parent: 2 + - uid: 25683 components: - type: Transform - pos: 0.5,-9.5 - parent: 45711 - - uid: 47908 + pos: -11.5,-70.5 + parent: 2 + - uid: 25789 components: - type: Transform - pos: 0.5,-10.5 - parent: 45711 - - uid: 47909 + pos: 30.5,50.5 + parent: 2 + - uid: 25796 components: - type: Transform - pos: 1.5,-9.5 - parent: 45711 - - uid: 47910 + pos: 11.5,-27.5 + parent: 2 + - uid: 25814 components: - type: Transform - pos: 1.5,-10.5 - parent: 45711 - - uid: 47911 + pos: 29.5,50.5 + parent: 2 + - uid: 25815 components: - type: Transform - pos: 2.5,-9.5 - parent: 45711 - - uid: 47912 + pos: 28.5,46.5 + parent: 2 + - uid: 25860 components: - type: Transform - pos: 2.5,-10.5 - parent: 45711 - - uid: 47913 + pos: 28.5,47.5 + parent: 2 + - uid: 25864 components: - type: Transform - pos: 3.5,-9.5 - parent: 45711 - - uid: 47914 + pos: -11.5,55.5 + parent: 2 + - uid: 25870 components: - type: Transform - pos: 3.5,-10.5 - parent: 45711 - - uid: 47915 + pos: 28.5,48.5 + parent: 2 + - uid: 25929 components: - type: Transform - pos: 4.5,-10.5 - parent: 45711 - - uid: 47916 + pos: 28.5,50.5 + parent: 2 + - uid: 25936 components: - type: Transform - pos: 5.5,-9.5 - parent: 45711 - - uid: 47917 + pos: 29.5,51.5 + parent: 2 + - uid: 25949 components: - type: Transform - pos: 5.5,-10.5 - parent: 45711 - - uid: 47918 + pos: 92.5,32.5 + parent: 2 + - uid: 25952 components: - type: Transform - pos: 6.5,-9.5 - parent: 45711 - - uid: 47919 + pos: 29.5,52.5 + parent: 2 + - uid: 25953 components: - type: Transform - pos: 6.5,-10.5 - parent: 45711 - - uid: 47920 + pos: 66.5,34.5 + parent: 2 + - uid: 26057 components: - type: Transform - pos: 7.5,-9.5 - parent: 45711 - - uid: 47921 + pos: 29.5,53.5 + parent: 2 + - uid: 26077 components: - type: Transform - pos: 7.5,-10.5 - parent: 45711 - - uid: 47922 + pos: 29.5,54.5 + parent: 2 + - uid: 26078 components: - type: Transform - pos: -5.5,-11.5 - parent: 45711 - - uid: 47923 + pos: 29.5,55.5 + parent: 2 + - uid: 26081 components: - type: Transform - pos: -3.5,-11.5 - parent: 45711 - - uid: 47924 + pos: 29.5,56.5 + parent: 2 + - uid: 26082 components: - type: Transform - pos: -2.5,-11.5 - parent: 45711 - - uid: 47925 + pos: 29.5,57.5 + parent: 2 + - uid: 26105 components: - type: Transform - pos: -1.5,-11.5 - parent: 45711 - - uid: 47926 + pos: 6.5,-66.5 + parent: 2 + - uid: 26175 components: - type: Transform - pos: -0.5,-11.5 - parent: 45711 - - uid: 47927 + pos: 14.5,-10.5 + parent: 2 + - uid: 26208 components: - type: Transform - pos: 0.5,-11.5 - parent: 45711 - - uid: 47928 + pos: 39.5,-10.5 + parent: 2 + - uid: 26311 components: - type: Transform - pos: 1.5,-11.5 - parent: 45711 - - uid: 47929 + pos: 15.5,-66.5 + parent: 2 + - uid: 26610 components: - type: Transform - pos: 2.5,-11.5 - parent: 45711 - - uid: 47930 + pos: 25.5,51.5 + parent: 2 + - uid: 26794 components: - type: Transform - pos: 4.5,-11.5 - parent: 45711 - - uid: 47931 + pos: -26.5,-53.5 + parent: 2 + - uid: 26821 components: - type: Transform - pos: 5.5,-11.5 - parent: 45711 - - uid: 47932 + pos: -14.5,-12.5 + parent: 2 + - uid: 27296 components: - type: Transform - pos: 6.5,-11.5 - parent: 45711 - - uid: 47933 + pos: -9.5,-70.5 + parent: 2 + - uid: 27331 components: - type: Transform - pos: -4.5,-12.5 - parent: 45711 - - uid: 47934 + pos: 37.5,41.5 + parent: 2 + - uid: 27370 components: - type: Transform - pos: -3.5,-12.5 - parent: 45711 - - uid: 47935 + pos: 36.5,41.5 + parent: 2 + - uid: 27726 components: - type: Transform - pos: -2.5,-12.5 - parent: 45711 - - uid: 47936 + pos: 16.5,44.5 + parent: 2 + - uid: 27767 components: - type: Transform - pos: -1.5,-12.5 - parent: 45711 - - uid: 47937 + pos: 29.5,-49.5 + parent: 2 + - uid: 27805 components: - type: Transform - pos: -0.5,-12.5 - parent: 45711 - - uid: 47938 + pos: -47.5,35.5 + parent: 2 + - uid: 27871 components: - type: Transform - pos: 1.5,-12.5 - parent: 45711 - - uid: 47939 + pos: 50.5,34.5 + parent: 2 + - uid: 28139 components: - type: Transform - pos: 2.5,-12.5 - parent: 45711 - - uid: 47940 + pos: 7.5,43.5 + parent: 2 + - uid: 28436 components: - type: Transform - pos: 3.5,-12.5 - parent: 45711 - - uid: 47941 + pos: 34.5,-45.5 + parent: 2 + - uid: 28761 components: - type: Transform - pos: 4.5,-12.5 - parent: 45711 - - uid: 47942 + pos: 57.5,28.5 + parent: 2 + - uid: 28762 components: - type: Transform - pos: 5.5,-12.5 - parent: 45711 - - uid: 47943 + pos: 55.5,28.5 + parent: 2 + - uid: 28766 components: - type: Transform - pos: -3.5,-13.5 - parent: 45711 - - uid: 47944 + pos: 50.5,28.5 + parent: 2 + - uid: 28767 components: - type: Transform - pos: -2.5,-13.5 - parent: 45711 - - uid: 47945 + pos: 60.5,16.5 + parent: 2 + - uid: 28768 components: - type: Transform - pos: -1.5,-13.5 - parent: 45711 - - uid: 47946 + pos: 56.5,12.5 + parent: 2 + - uid: 28770 components: - type: Transform - pos: -0.5,-13.5 - parent: 45711 - - uid: 47947 + pos: 55.5,12.5 + parent: 2 + - uid: 28771 components: - type: Transform - pos: 0.5,-13.5 - parent: 45711 - - uid: 47948 + pos: 46.5,28.5 + parent: 2 + - uid: 28772 components: - type: Transform - pos: 1.5,-13.5 - parent: 45711 - - uid: 47949 + pos: 48.5,28.5 + parent: 2 + - uid: 28773 components: - type: Transform - pos: 2.5,-13.5 - parent: 45711 - - uid: 47950 + pos: 60.5,17.5 + parent: 2 + - uid: 29010 components: - type: Transform - pos: 3.5,-13.5 - parent: 45711 - - uid: 47951 + pos: 21.5,62.5 + parent: 2 + - uid: 29036 components: - type: Transform - pos: 4.5,-13.5 - parent: 45711 - - uid: 47952 + pos: 60.5,24.5 + parent: 2 + - uid: 29037 components: - type: Transform - pos: -1.5,5.5 - parent: 45711 - - uid: 47953 + pos: -50.5,45.5 + parent: 2 + - uid: 29084 components: - type: Transform - pos: -1.5,4.5 - parent: 45711 - - uid: 47954 + pos: 60.5,20.5 + parent: 2 + - uid: 29114 components: - type: Transform - pos: -1.5,3.5 - parent: 45711 - - uid: 47955 + pos: -26.5,-54.5 + parent: 2 + - uid: 29581 components: - type: Transform - pos: -1.5,2.5 - parent: 45711 - - uid: 47956 + pos: 54.5,23.5 + parent: 2 + - uid: 29582 components: - type: Transform - pos: -1.5,1.5 - parent: 45711 - - uid: 47957 + pos: 45.5,30.5 + parent: 2 + - uid: 29583 components: - type: Transform - pos: -0.5,6.5 - parent: 45711 - - uid: 47958 + pos: 45.5,29.5 + parent: 2 + - uid: 29690 components: - type: Transform - pos: -0.5,5.5 - parent: 45711 - - uid: 47959 + rot: -1.5707963267948966 rad + pos: -37.5,37.5 + parent: 2 + - uid: 29871 components: - type: Transform - pos: -0.5,3.5 - parent: 45711 - - uid: 47960 + pos: 32.5,-49.5 + parent: 2 + - uid: 30140 components: - type: Transform - pos: -0.5,1.5 - parent: 45711 - - uid: 47961 + pos: 60.5,14.5 + parent: 2 + - uid: 30417 components: - type: Transform - pos: -0.5,0.5 - parent: 45711 - - uid: 47962 + pos: 60.5,18.5 + parent: 2 + - uid: 30773 components: - type: Transform - pos: 0.5,6.5 - parent: 45711 - - uid: 47963 + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 2 + - uid: 30779 components: - type: Transform - pos: 0.5,5.5 - parent: 45711 - - uid: 47964 + pos: 2.5,-27.5 + parent: 2 + - uid: 30800 components: - type: Transform - pos: 0.5,3.5 - parent: 45711 - - uid: 47965 + rot: 1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 2 + - uid: 31100 components: - type: Transform - pos: 0.5,2.5 - parent: 45711 - - uid: 47966 + rot: 3.141592653589793 rad + pos: 43.5,34.5 + parent: 2 + - uid: 31911 components: - type: Transform - pos: 0.5,1.5 - parent: 45711 - - uid: 47967 + pos: 60.5,23.5 + parent: 2 + - uid: 32749 components: - type: Transform - pos: 0.5,0.5 - parent: 45711 - - uid: 47968 + pos: 81.5,13.5 + parent: 2 + - uid: 33519 components: - type: Transform - pos: 1.5,6.5 - parent: 45711 - - uid: 47969 + pos: -2.5,-29.5 + parent: 33049 + - uid: 33520 components: - type: Transform - pos: 1.5,5.5 - parent: 45711 - - uid: 47970 + pos: -2.5,-28.5 + parent: 33049 + - uid: 33521 components: - type: Transform - pos: 0.5,4.5 - parent: 45711 - - uid: 47971 + pos: -2.5,-27.5 + parent: 33049 + - uid: 33522 components: - type: Transform - pos: 1.5,3.5 - parent: 45711 - - uid: 47972 + pos: -1.5,-26.5 + parent: 33049 + - uid: 33523 components: - type: Transform - pos: 2.5,2.5 - parent: 45711 - - uid: 47973 + pos: -0.5,-27.5 + parent: 33049 + - uid: 33524 components: - type: Transform - pos: 1.5,1.5 - parent: 45711 - - uid: 47974 + pos: 0.5,-27.5 + parent: 33049 + - uid: 33525 components: - type: Transform - pos: 1.5,0.5 - parent: 45711 - - uid: 47975 + pos: 0.5,-28.5 + parent: 33049 + - uid: 33526 components: - type: Transform - pos: 2.5,5.5 - parent: 45711 - - uid: 47976 + pos: -0.5,-28.5 + parent: 33049 + - uid: 33527 components: - type: Transform - pos: 2.5,4.5 - parent: 45711 - - uid: 47977 + pos: 1.5,-30.5 + parent: 33049 + - uid: 33528 components: - type: Transform - pos: 2.5,3.5 - parent: 45711 - - uid: 47978 + pos: -1.5,-27.5 + parent: 33049 + - uid: 33529 components: - type: Transform - pos: 2.5,1.5 - parent: 45711 - - uid: 47979 + pos: -1.5,-27.5 + parent: 33049 + - uid: 33530 components: - type: Transform - pos: -13.5,31.5 - parent: 45711 - - uid: 47980 + pos: -0.5,-28.5 + parent: 33049 + - uid: 33531 components: - type: Transform - pos: -13.5,29.5 - parent: 45711 - - uid: 47981 + pos: -1.5,-29.5 + parent: 33049 + - uid: 33532 components: - type: Transform - pos: -13.5,30.5 - parent: 45711 - - uid: 47982 + pos: -1.5,-29.5 + parent: 33049 + - uid: 33533 components: - type: Transform - pos: -16.5,32.5 - parent: 45711 - - uid: 47983 + pos: 1.5,-30.5 + parent: 33049 + - uid: 33534 components: - type: Transform - pos: -16.5,28.5 - parent: 45711 - - uid: 47984 + pos: 1.5,-31.5 + parent: 33049 + - uid: 33535 components: - type: Transform - pos: -15.5,33.5 - parent: 45711 - - uid: 47985 + pos: 1.5,-27.5 + parent: 33049 + - uid: 33536 components: - type: Transform - pos: -16.5,30.5 - parent: 45711 - - uid: 47986 + pos: 1.5,-26.5 + parent: 33049 + - uid: 33537 components: - type: Transform - pos: -16.5,29.5 - parent: 45711 - - uid: 47987 + pos: 1.5,-28.5 + parent: 33049 + - uid: 33538 components: - type: Transform - pos: -16.5,31.5 - parent: 45711 - - uid: 47988 + pos: -0.5,-30.5 + parent: 33049 + - uid: 33539 components: - type: Transform - pos: -14.5,29.5 - parent: 45711 - - uid: 47989 + pos: -1.5,-30.5 + parent: 33049 + - uid: 33540 components: - type: Transform - pos: -14.5,28.5 - parent: 45711 - - uid: 47990 + pos: -1.5,-30.5 + parent: 33049 + - uid: 33541 components: - type: Transform - pos: -14.5,30.5 - parent: 45711 - - uid: 47991 + pos: 0.5,-31.5 + parent: 33049 + - uid: 33542 components: - type: Transform - pos: -15.5,28.5 - parent: 45711 - - uid: 47992 + pos: 4.5,-11.5 + parent: 33049 + - uid: 33543 components: - type: Transform - pos: -14.5,32.5 - parent: 45711 - - uid: 47993 + pos: 4.5,-10.5 + parent: 33049 + - uid: 34500 components: - type: Transform - pos: -14.5,31.5 - parent: 45711 - - uid: 47994 + pos: 80.5,8.5 + parent: 2 + - uid: 34503 components: - type: Transform - pos: -16.5,33.5 - parent: 45711 - - uid: 47995 + pos: 81.5,11.5 + parent: 2 + - uid: 34504 components: - type: Transform - pos: -14.5,33.5 - parent: 45711 - - uid: 47996 + pos: 80.5,11.5 + parent: 2 + - uid: 34505 components: - type: Transform - pos: -15.5,31.5 - parent: 45711 - - uid: 47997 + pos: 80.5,12.5 + parent: 2 + - uid: 34506 components: - type: Transform - pos: -15.5,30.5 - parent: 45711 - - uid: 47998 + pos: 80.5,13.5 + parent: 2 + - uid: 34507 components: - type: Transform - pos: -15.5,32.5 - parent: 45711 - - uid: 47999 + pos: 79.5,8.5 + parent: 2 + - uid: 34508 components: - type: Transform - pos: -15.5,29.5 - parent: 45711 - - uid: 48000 + pos: 79.5,9.5 + parent: 2 + - uid: 34509 components: - type: Transform - pos: -17.5,28.5 - parent: 45711 - - uid: 48001 + pos: 79.5,10.5 + parent: 2 + - uid: 34510 components: - type: Transform - pos: -17.5,29.5 - parent: 45711 - - uid: 48002 + pos: 79.5,11.5 + parent: 2 + - uid: 34511 components: - type: Transform - pos: -17.5,30.5 - parent: 45711 - - uid: 48003 + pos: 79.5,12.5 + parent: 2 + - uid: 34512 components: - type: Transform - pos: -17.5,31.5 - parent: 45711 - - uid: 48004 + pos: 79.5,13.5 + parent: 2 + - uid: 34513 components: - type: Transform - pos: -17.5,32.5 - parent: 45711 - - uid: 48005 + pos: 79.5,14.5 + parent: 2 + - uid: 34514 components: - type: Transform - pos: -17.5,33.5 - parent: 45711 - - uid: 48006 + pos: 78.5,14.5 + parent: 2 + - uid: 34515 components: - type: Transform - pos: -13.5,32.5 - parent: 45711 - - uid: 48007 + pos: 77.5,14.5 + parent: 2 + - uid: 34516 components: - type: Transform - pos: -23.5,26.5 - parent: 45711 - - uid: 48008 + pos: 76.5,14.5 + parent: 2 + - uid: 34517 components: - type: Transform - pos: -23.5,27.5 - parent: 45711 - - uid: 48009 + pos: 76.5,13.5 + parent: 2 + - uid: 34518 components: - type: Transform - pos: -26.5,27.5 - parent: 45711 - - uid: 48010 + pos: 76.5,12.5 + parent: 2 + - uid: 34519 components: - type: Transform - pos: -26.5,26.5 - parent: 45711 - - uid: 48011 + pos: 76.5,11.5 + parent: 2 + - uid: 34520 components: - type: Transform - pos: -24.5,26.5 - parent: 45711 - - uid: 48012 + pos: 76.5,10.5 + parent: 2 + - uid: 34521 components: - type: Transform - pos: -25.5,26.5 - parent: 45711 - - uid: 48013 + pos: 76.5,9.5 + parent: 2 + - uid: 34522 components: - type: Transform - pos: -23.5,28.5 - parent: 45711 - - uid: 48014 + pos: 77.5,13.5 + parent: 2 + - uid: 34523 components: - type: Transform - pos: -24.5,28.5 - parent: 45711 - - uid: 48015 + pos: 77.5,12.5 + parent: 2 + - uid: 34524 components: - type: Transform - pos: -25.5,28.5 - parent: 45711 - - uid: 48016 + pos: 77.5,11.5 + parent: 2 + - uid: 34525 components: - type: Transform - pos: -26.5,28.5 - parent: 45711 - - uid: 48017 + pos: 77.5,10.5 + parent: 2 + - uid: 34526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,34.5 - parent: 45711 - - uid: 48018 + pos: 77.5,9.5 + parent: 2 + - uid: 34527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,34.5 - parent: 45711 - - uid: 48019 + pos: 78.5,13.5 + parent: 2 + - uid: 34528 components: - type: Transform - pos: -16.5,9.5 - parent: 45711 - - uid: 48020 + pos: 78.5,12.5 + parent: 2 + - uid: 34529 components: - type: Transform - pos: -16.5,8.5 - parent: 45711 - - uid: 48021 + pos: 78.5,11.5 + parent: 2 + - uid: 34530 components: - type: Transform - pos: -17.5,6.5 - parent: 45711 - - uid: 48022 + pos: 78.5,10.5 + parent: 2 + - uid: 34531 components: - type: Transform - pos: -18.5,6.5 - parent: 45711 - - uid: 48023 + pos: 78.5,9.5 + parent: 2 + - uid: 34532 components: - type: Transform - pos: -20.5,7.5 - parent: 45711 - - uid: 48024 + pos: 75.5,9.5 + parent: 2 + - uid: 34535 components: - type: Transform - pos: -17.5,10.5 - parent: 45711 - - uid: 48025 + pos: 74.5,10.5 + parent: 2 + - uid: 34536 components: - type: Transform - pos: -15.5,10.5 - parent: 45711 - - uid: 48026 + pos: 74.5,9.5 + parent: 2 + - uid: 34537 components: - type: Transform - pos: -20.5,10.5 - parent: 45711 - - uid: 48027 + pos: 73.5,10.5 + parent: 2 + - uid: 34538 components: - type: Transform - pos: -20.5,11.5 - parent: 45711 - - uid: 48028 + pos: 73.5,9.5 + parent: 2 + - uid: 34539 components: - type: Transform - pos: -18.5,12.5 - parent: 45711 - - uid: 48029 + pos: 77.5,15.5 + parent: 2 + - uid: 34540 components: - type: Transform - pos: -17.5,12.5 - parent: 45711 - - uid: 49528 + pos: 76.5,15.5 + parent: 2 + - uid: 34541 components: - type: Transform - pos: -26.5,53.5 - parent: 45711 - - uid: 50276 + pos: 78.5,15.5 + parent: 2 + - uid: 34542 components: - type: Transform - pos: -26.5,52.5 - parent: 45711 - - uid: 50589 + pos: 77.5,16.5 + parent: 2 + - uid: 34543 components: - type: Transform - pos: 58.5,87.5 + pos: 76.5,16.5 parent: 2 - - uid: 50592 + - uid: 34587 components: - type: Transform - pos: 60.5,83.5 + pos: 54.5,13.5 parent: 2 - - uid: 50594 + - uid: 35686 components: - type: Transform - pos: 58.5,79.5 + pos: 54.5,15.5 parent: 2 - - uid: 50595 + - uid: 36073 components: - type: Transform - pos: 38.5,79.5 + pos: 60.5,25.5 parent: 2 - - uid: 50596 + - uid: 36074 components: - type: Transform - pos: 36.5,83.5 + pos: 54.5,16.5 parent: 2 - - uid: 50598 + - uid: 36092 components: - type: Transform - pos: 71.5,43.5 + pos: 60.5,26.5 parent: 2 - - uid: 50599 + - uid: 36115 components: - type: Transform - pos: 71.5,44.5 + pos: 34.5,-46.5 parent: 2 - - uid: 50600 + - uid: 36201 components: - type: Transform - pos: 71.5,45.5 + pos: -44.5,-78.5 parent: 2 - - uid: 50601 + - uid: 36203 components: - type: Transform - pos: 71.5,46.5 + pos: -36.5,-72.5 parent: 2 - - uid: 50602 + - uid: 36226 components: - type: Transform - pos: 72.5,46.5 + pos: -40.5,-76.5 parent: 2 - - uid: 50603 + - uid: 36227 components: - type: Transform - pos: 73.5,46.5 + pos: -39.5,-76.5 parent: 2 - - uid: 50604 + - uid: 36228 components: - type: Transform - pos: 74.5,46.5 + pos: -38.5,-76.5 parent: 2 - - uid: 50605 + - uid: 36229 components: - type: Transform - pos: 71.5,33.5 + pos: -37.5,-76.5 parent: 2 - - uid: 50606 + - uid: 36230 components: - type: Transform - pos: 71.5,32.5 + pos: -36.5,-76.5 parent: 2 - - uid: 50607 + - uid: 36232 components: - type: Transform - pos: 71.5,31.5 + pos: -38.5,-83.5 parent: 2 - - uid: 50608 + - uid: 36234 components: - type: Transform - pos: 71.5,30.5 + pos: -40.5,-81.5 parent: 2 - - uid: 50609 + - uid: 36257 components: - type: Transform - pos: 72.5,30.5 + pos: -38.5,-84.5 parent: 2 - - uid: 50610 + - uid: 36258 components: - type: Transform - pos: 73.5,30.5 + pos: -38.5,-82.5 parent: 2 - - uid: 50611 + - uid: 36259 components: - type: Transform - pos: 74.5,30.5 + pos: -39.5,-82.5 parent: 2 - - uid: 50612 + - uid: 36262 components: - type: Transform - pos: 84.5,30.5 + pos: -39.5,-81.5 parent: 2 - - uid: 50613 + - uid: 36266 components: - type: Transform - pos: 85.5,30.5 + pos: 20.5,63.5 parent: 2 - - uid: 50614 + - uid: 36269 components: - type: Transform - pos: 86.5,30.5 + pos: -41.5,-81.5 parent: 2 - - uid: 50615 + - uid: 36270 components: - type: Transform - pos: 87.5,30.5 + pos: -38.5,-85.5 parent: 2 - - uid: 50616 + - uid: 36271 components: - type: Transform - pos: 87.5,31.5 + pos: -37.5,-85.5 parent: 2 - - uid: 50617 + - uid: 36272 components: - type: Transform - pos: 87.5,32.5 + pos: -36.5,-85.5 parent: 2 - - uid: 50618 + - uid: 36273 components: - type: Transform - pos: 87.5,33.5 + pos: -35.5,-85.5 parent: 2 - - uid: 50619 + - uid: 36293 components: - type: Transform - pos: 87.5,43.5 + pos: 41.5,47.5 parent: 2 - - uid: 50620 + - uid: 36294 components: - type: Transform - pos: 87.5,44.5 + pos: 42.5,47.5 parent: 2 - - uid: 50621 + - uid: 36295 components: - type: Transform - pos: 87.5,45.5 + pos: 43.5,47.5 parent: 2 - - uid: 50622 + - uid: 36296 components: - type: Transform - pos: 87.5,46.5 + pos: 44.5,47.5 parent: 2 - - uid: 50623 + - uid: 36338 components: - type: Transform - pos: 86.5,46.5 + pos: -22.5,-84.5 parent: 2 - - uid: 50624 + - uid: 36340 components: - type: Transform - pos: 85.5,46.5 + pos: -21.5,-91.5 parent: 2 - - uid: 50625 + - uid: 36341 components: - type: Transform - pos: 84.5,46.5 + pos: -21.5,-90.5 parent: 2 - - uid: 50921 + - uid: 36342 components: - type: Transform - pos: -52.5,64.5 + pos: -21.5,-89.5 parent: 2 - - uid: 50922 + - uid: 36343 components: - type: Transform - pos: -52.5,65.5 + pos: -22.5,-89.5 parent: 2 - - uid: 50923 + - uid: 36344 components: - type: Transform - pos: -52.5,66.5 + pos: -22.5,-88.5 parent: 2 - - uid: 50924 + - uid: 36345 components: - type: Transform - pos: -52.5,67.5 + pos: -23.5,-88.5 parent: 2 - - uid: 50925 + - uid: 36346 components: - type: Transform - pos: -52.5,68.5 + pos: -23.5,-87.5 parent: 2 - - uid: 50926 + - uid: 36347 components: - type: Transform - pos: -54.5,67.5 + pos: -23.5,-86.5 parent: 2 - - uid: 50927 + - uid: 36348 components: - type: Transform - pos: -55.5,67.5 + pos: -23.5,-85.5 parent: 2 - - uid: 50928 + - uid: 36349 components: - type: Transform - pos: -56.5,67.5 + pos: -24.5,-85.5 parent: 2 - - uid: 50929 + - uid: 36350 components: - type: Transform - pos: -57.5,67.5 + pos: -25.5,-85.5 parent: 2 - - uid: 50930 + - uid: 36351 components: - type: Transform - pos: -58.5,67.5 + pos: -26.5,-85.5 parent: 2 - - uid: 50931 + - uid: 36352 components: - type: Transform - pos: -58.5,68.5 + pos: -27.5,-85.5 parent: 2 - - uid: 50932 + - uid: 36353 components: - type: Transform - pos: -58.5,69.5 + pos: -28.5,-85.5 parent: 2 - - uid: 50933 + - uid: 36354 components: - type: Transform - pos: -58.5,70.5 + pos: -29.5,-85.5 parent: 2 - - uid: 50934 + - uid: 36355 components: - type: Transform - pos: -58.5,71.5 + pos: -23.5,-84.5 parent: 2 - - uid: 50935 + - uid: 36360 components: - type: Transform - pos: -58.5,72.5 + pos: -19.5,-83.5 parent: 2 - - uid: 50937 + - uid: 36362 components: - type: Transform - pos: -51.5,67.5 + pos: -32.5,-88.5 parent: 2 - - uid: 50938 + - uid: 36363 components: - type: Transform - pos: -50.5,67.5 + pos: -32.5,-89.5 parent: 2 - - uid: 50939 + - uid: 36364 components: - type: Transform - pos: -49.5,67.5 + pos: -32.5,-90.5 parent: 2 - - uid: 50940 + - uid: 36365 components: - type: Transform - pos: -48.5,67.5 + pos: -33.5,-90.5 parent: 2 - - uid: 50941 + - uid: 36366 components: - type: Transform - pos: -47.5,67.5 + pos: -33.5,-91.5 parent: 2 - - uid: 50942 + - uid: 36367 components: - type: Transform - pos: -46.5,67.5 + pos: -34.5,-91.5 parent: 2 - - uid: 50943 + - uid: 36368 components: - type: Transform - pos: -46.5,68.5 + pos: -34.5,-92.5 parent: 2 - - uid: 50944 + - uid: 36369 components: - type: Transform - pos: -46.5,69.5 + pos: -35.5,-92.5 parent: 2 - - uid: 50945 + - uid: 36723 components: - type: Transform - pos: -46.5,70.5 + pos: 31.5,-47.5 parent: 2 - - uid: 50946 + - uid: 36745 components: - type: Transform - pos: -46.5,71.5 + pos: 35.5,-47.5 parent: 2 - - uid: 50947 + - uid: 36746 components: - type: Transform - pos: -46.5,72.5 + pos: 31.5,-44.5 parent: 2 - - uid: 50948 + - uid: 36773 components: - type: Transform - pos: -52.5,69.5 + rot: -1.5707963267948966 rad + pos: 44.5,37.5 parent: 2 - - uid: 50949 + - uid: 36774 components: - type: Transform - pos: -53.5,68.5 + rot: -1.5707963267948966 rad + pos: 46.5,37.5 parent: 2 - - uid: 50950 + - uid: 36775 components: - type: Transform - pos: -51.5,68.5 + rot: -1.5707963267948966 rad + pos: 47.5,37.5 parent: 2 - - uid: 51117 + - uid: 36776 components: - type: Transform - pos: -0.5,-70.5 + rot: -1.5707963267948966 rad + pos: 48.5,37.5 parent: 2 - - uid: 51118 + - uid: 36777 components: - type: Transform - pos: 0.5,-70.5 + rot: -1.5707963267948966 rad + pos: 49.5,37.5 parent: 2 - - uid: 51119 + - uid: 36778 components: - type: Transform - pos: 5.5,-70.5 + rot: -1.5707963267948966 rad + pos: 50.5,37.5 parent: 2 - - uid: 51120 + - uid: 36779 components: - type: Transform - pos: 8.5,-70.5 + rot: -1.5707963267948966 rad + pos: 51.5,37.5 parent: 2 - - uid: 51121 + - uid: 36780 components: - type: Transform - pos: 9.5,-70.5 + rot: -1.5707963267948966 rad + pos: 52.5,37.5 parent: 2 - - uid: 51122 + - uid: 37231 components: - type: Transform - pos: 14.5,-70.5 + rot: 1.5707963267948966 rad + pos: 28.5,-8.5 parent: 2 - - uid: 51123 + - uid: 37232 components: - type: Transform - pos: 15.5,-70.5 + rot: 1.5707963267948966 rad + pos: 28.5,-6.5 parent: 2 - - uid: 51124 + - uid: 37235 components: - type: Transform - pos: -3.5,-69.5 + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 parent: 2 - - uid: 51125 + - uid: 37302 components: - type: Transform - pos: -3.5,-70.5 - parent: 2 - - uid: 51126 + pos: 8.5,2.5 + parent: 36861 + - uid: 37303 components: - type: Transform - pos: -2.5,-70.5 - parent: 2 - - uid: 51127 + pos: 8.5,1.5 + parent: 36861 + - uid: 41056 components: - type: Transform - pos: 13.5,-70.5 + pos: -37.5,-66.5 parent: 2 - - uid: 51134 + - uid: 41717 components: - type: Transform - pos: 19.5,-59.5 + pos: 29.5,60.5 parent: 2 - - uid: 51135 + - uid: 41718 components: - type: Transform - pos: 19.5,-58.5 + pos: 29.5,61.5 parent: 2 - - uid: 51136 + - uid: 41719 components: - type: Transform - pos: 19.5,-57.5 + pos: 29.5,62.5 parent: 2 - - uid: 51155 + - uid: 41720 components: - type: Transform - pos: 18.5,-70.5 + pos: 29.5,63.5 parent: 2 - - uid: 51156 + - uid: 41721 components: - type: Transform - pos: 18.5,-69.5 + pos: 29.5,64.5 parent: 2 - - uid: 51157 + - uid: 41722 components: - type: Transform - pos: 18.5,-68.5 + pos: 29.5,65.5 parent: 2 - - uid: 51158 + - uid: 41723 components: - type: Transform - pos: 18.5,-67.5 + pos: 29.5,66.5 parent: 2 - - uid: 51159 + - uid: 41724 components: - type: Transform - pos: 18.5,-63.5 + pos: 29.5,67.5 parent: 2 - - uid: 51160 + - uid: 41725 components: - type: Transform - pos: 18.5,-61.5 + pos: 29.5,68.5 parent: 2 - - uid: 51161 + - uid: 41726 components: - type: Transform - pos: 18.5,-59.5 + pos: 29.5,69.5 parent: 2 - - uid: 51203 + - uid: 41727 components: - type: Transform - pos: 19.5,-66.5 + pos: 30.5,69.5 parent: 2 - - uid: 51204 + - uid: 41728 components: - type: Transform - pos: 20.5,-66.5 + pos: 30.5,70.5 parent: 2 - - uid: 51206 + - uid: 41735 components: - type: Transform - pos: 23.5,-64.5 + pos: 31.5,70.5 parent: 2 - - uid: 51271 + - uid: 41751 components: - type: Transform - pos: 23.5,-60.5 + pos: 32.5,70.5 parent: 2 - - uid: 51272 + - uid: 41752 components: - type: Transform - pos: 24.5,-60.5 + pos: 33.5,70.5 parent: 2 - - uid: 51273 + - uid: 41753 components: - type: Transform - pos: 22.5,-56.5 + pos: 34.5,70.5 parent: 2 - - uid: 51274 + - uid: 41754 components: - type: Transform - pos: 20.5,-56.5 + pos: 34.5,72.5 parent: 2 - - uid: 51275 + - uid: 41755 components: - type: Transform - pos: 21.5,-56.5 + pos: 34.5,71.5 parent: 2 - - uid: 51453 + - uid: 41756 components: - type: Transform - pos: 19.5,-74.5 + pos: 35.5,72.5 parent: 2 - - uid: 51454 + - uid: 41757 components: - type: Transform - pos: 18.5,-74.5 + pos: 36.5,72.5 parent: 2 - - uid: 51455 + - uid: 41758 components: - type: Transform - pos: 17.5,-74.5 + pos: 37.5,72.5 parent: 2 - - uid: 51456 + - uid: 41759 components: - type: Transform - pos: 17.5,-73.5 + pos: 38.5,72.5 parent: 2 - - uid: 51575 + - uid: 41760 components: - type: Transform - pos: 37.5,7.5 + pos: 39.5,72.5 parent: 2 - - uid: 51576 + - uid: 41761 components: - type: Transform - pos: 38.5,7.5 + pos: 40.5,72.5 parent: 2 - - uid: 51577 + - uid: 41762 components: - type: Transform - pos: 35.5,7.5 + pos: 41.5,72.5 parent: 2 - - uid: 51615 + - uid: 41763 components: - type: Transform - pos: 39.5,10.5 + pos: 42.5,72.5 parent: 2 - - uid: 51616 + - uid: 41764 components: - type: Transform - pos: 38.5,11.5 + pos: 42.5,73.5 parent: 2 - - uid: 51618 + - uid: 41779 components: - type: Transform - pos: 39.5,9.5 + pos: 25.5,50.5 parent: 2 - - uid: 51657 + - uid: 41780 components: - type: Transform - pos: -0.5,-8.5 + pos: 25.5,49.5 parent: 2 - - uid: 51667 + - uid: 41781 components: - type: Transform - pos: 39.5,20.5 + pos: 26.5,49.5 parent: 2 - - uid: 51669 + - uid: 41782 components: - type: Transform - pos: 37.5,20.5 + pos: 27.5,49.5 parent: 2 - - uid: 51685 + - uid: 41784 components: - type: Transform - pos: 33.5,13.5 + pos: 25.5,52.5 parent: 2 - - uid: 51686 + - uid: 41785 components: - type: Transform - pos: 33.5,14.5 + pos: 19.5,58.5 parent: 2 - - uid: 51687 + - uid: 41786 components: - type: Transform - pos: 36.5,15.5 + rot: 1.5707963267948966 rad + pos: 20.5,58.5 parent: 2 - - uid: 51688 + - uid: 41787 components: - type: Transform - pos: 36.5,16.5 + pos: 21.5,58.5 parent: 2 - - uid: 52189 + - uid: 41788 components: - type: Transform - pos: 34.5,-36.5 + pos: 22.5,58.5 parent: 2 - - uid: 52195 + - uid: 41789 components: - type: Transform - pos: -11.5,46.5 + pos: 23.5,58.5 parent: 2 - - uid: 52323 - components: - - type: Transform - pos: -25.5,54.5 - parent: 45711 - - uid: 52388 - components: - - type: Transform - pos: -24.5,52.5 - parent: 45711 - - uid: 52389 + - uid: 41790 components: - type: Transform - pos: -25.5,55.5 - parent: 45711 - - uid: 53626 + pos: 23.5,56.5 + parent: 2 + - uid: 41791 components: - type: Transform - pos: -31.5,45.5 - parent: 45711 - - uid: 53632 + pos: 23.5,55.5 + parent: 2 + - uid: 41792 components: - type: Transform - pos: -25.5,53.5 - parent: 45711 - - uid: 53638 + pos: 23.5,54.5 + parent: 2 + - uid: 41793 components: - type: Transform - pos: -25.5,52.5 - parent: 45711 - - uid: 53647 + pos: 23.5,53.5 + parent: 2 + - uid: 41794 components: - type: Transform - pos: -26.5,55.5 - parent: 45711 - - uid: 53648 + pos: 23.5,52.5 + parent: 2 + - uid: 41795 components: - type: Transform - pos: -26.5,54.5 - parent: 45711 - - uid: 53662 + pos: 24.5,52.5 + parent: 2 + - uid: 41807 components: - type: Transform - pos: -24.5,53.5 - parent: 45711 - - uid: 53663 + pos: 21.5,63.5 + parent: 2 + - uid: 41815 components: - type: Transform - pos: -24.5,54.5 - parent: 45711 - - uid: 53664 + rot: 3.141592653589793 rad + pos: 19.5,64.5 + parent: 2 + - uid: 41853 components: - type: Transform - pos: -24.5,55.5 - parent: 45711 - - uid: 53672 + pos: 66.5,51.5 + parent: 2 + - uid: 41951 components: - type: Transform - pos: -30.5,54.5 - parent: 45711 - - uid: 53674 + rot: 3.141592653589793 rad + pos: 67.5,34.5 + parent: 2 + - uid: 41952 components: - type: Transform - pos: -30.5,55.5 - parent: 45711 - - uid: 53676 + rot: 3.141592653589793 rad + pos: 68.5,34.5 + parent: 2 + - uid: 41953 components: - type: Transform - pos: -30.5,53.5 - parent: 45711 - - uid: 53677 + rot: 3.141592653589793 rad + pos: 69.5,34.5 + parent: 2 + - uid: 41954 components: - type: Transform - pos: -31.5,55.5 - parent: 45711 - - uid: 53678 + rot: 3.141592653589793 rad + pos: 70.5,34.5 + parent: 2 + - uid: 41957 components: - type: Transform - pos: -31.5,54.5 - parent: 45711 - - uid: 53679 + rot: 3.141592653589793 rad + pos: 67.5,42.5 + parent: 2 + - uid: 41958 components: - type: Transform - pos: -31.5,53.5 - parent: 45711 - - uid: 53680 + rot: 3.141592653589793 rad + pos: 68.5,42.5 + parent: 2 + - uid: 41959 components: - type: Transform - pos: -32.5,55.5 - parent: 45711 - - uid: 53681 + rot: 3.141592653589793 rad + pos: 69.5,42.5 + parent: 2 + - uid: 41960 components: - type: Transform - pos: -32.5,54.5 - parent: 45711 - - uid: 53682 + rot: 3.141592653589793 rad + pos: 70.5,42.5 + parent: 2 + - uid: 41964 components: - type: Transform - pos: -32.5,53.5 - parent: 45711 - - uid: 53683 + rot: 3.141592653589793 rad + pos: 75.5,47.5 + parent: 2 + - uid: 41965 components: - type: Transform - pos: -33.5,55.5 - parent: 45711 - - uid: 53684 + rot: 3.141592653589793 rad + pos: 75.5,48.5 + parent: 2 + - uid: 41966 components: - type: Transform - pos: -33.5,54.5 - parent: 45711 - - uid: 53685 + rot: 3.141592653589793 rad + pos: 75.5,49.5 + parent: 2 + - uid: 41967 components: - type: Transform - pos: -33.5,53.5 - parent: 45711 - - uid: 53689 + rot: 3.141592653589793 rad + pos: 75.5,50.5 + parent: 2 + - uid: 41968 components: - type: Transform - pos: -33.5,49.5 - parent: 45711 - - uid: 53690 + rot: 3.141592653589793 rad + pos: 83.5,47.5 + parent: 2 + - uid: 41969 components: - type: Transform - pos: -33.5,48.5 - parent: 45711 - - uid: 53691 + rot: 3.141592653589793 rad + pos: 83.5,48.5 + parent: 2 + - uid: 41970 components: - type: Transform - pos: -33.5,47.5 - parent: 45711 - - uid: 53695 + rot: 3.141592653589793 rad + pos: 83.5,49.5 + parent: 2 + - uid: 41971 components: - type: Transform - pos: -32.5,49.5 - parent: 45711 - - uid: 53696 + rot: 3.141592653589793 rad + pos: 88.5,42.5 + parent: 2 + - uid: 41972 components: - type: Transform - pos: -32.5,48.5 - parent: 45711 - - uid: 53697 + rot: 3.141592653589793 rad + pos: 89.5,42.5 + parent: 2 + - uid: 41973 components: - type: Transform - pos: -32.5,47.5 - parent: 45711 - - uid: 53701 + rot: 3.141592653589793 rad + pos: 90.5,42.5 + parent: 2 + - uid: 41974 components: - type: Transform - pos: -31.5,49.5 - parent: 45711 - - uid: 53702 + rot: 3.141592653589793 rad + pos: 91.5,42.5 + parent: 2 + - uid: 41976 components: - type: Transform - pos: -31.5,48.5 - parent: 45711 - - uid: 53703 + rot: 3.141592653589793 rad + pos: 88.5,34.5 + parent: 2 + - uid: 41977 components: - type: Transform - pos: -31.5,47.5 - parent: 45711 - - uid: 53704 + rot: 3.141592653589793 rad + pos: 89.5,34.5 + parent: 2 + - uid: 41978 components: - type: Transform - pos: -34.5,47.5 - parent: 45711 - - uid: 53705 + rot: 3.141592653589793 rad + pos: 90.5,34.5 + parent: 2 + - uid: 41979 components: - type: Transform - pos: -34.5,48.5 - parent: 45711 - - uid: 53706 + rot: 3.141592653589793 rad + pos: 91.5,34.5 + parent: 2 + - uid: 41980 components: - type: Transform - pos: -34.5,49.5 - parent: 45711 - - uid: 53707 + rot: 3.141592653589793 rad + pos: 92.5,34.5 + parent: 2 + - uid: 41982 components: - type: Transform - pos: -35.5,47.5 - parent: 45711 - - uid: 53708 + rot: 3.141592653589793 rad + pos: 92.5,35.5 + parent: 2 + - uid: 41984 components: - type: Transform - pos: -35.5,48.5 - parent: 45711 - - uid: 53709 + rot: 3.141592653589793 rad + pos: 92.5,38.5 + parent: 2 + - uid: 41985 components: - type: Transform - pos: -35.5,49.5 - parent: 45711 - - uid: 53710 + rot: 3.141592653589793 rad + pos: 92.5,39.5 + parent: 2 + - uid: 41986 components: - type: Transform - pos: -36.5,47.5 - parent: 45711 - - uid: 53711 + rot: 3.141592653589793 rad + pos: 83.5,29.5 + parent: 2 + - uid: 41987 components: - type: Transform - pos: -36.5,48.5 - parent: 45711 - - uid: 53712 + rot: 3.141592653589793 rad + pos: 83.5,28.5 + parent: 2 + - uid: 41988 components: - type: Transform - pos: -36.5,49.5 - parent: 45711 - - uid: 53730 + rot: 3.141592653589793 rad + pos: 83.5,27.5 + parent: 2 + - uid: 41989 components: - type: Transform - pos: -32.5,57.5 - parent: 45711 - - uid: 54076 + rot: 3.141592653589793 rad + pos: 83.5,26.5 + parent: 2 + - uid: 41991 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,52.5 - parent: 45711 - - uid: 54077 + pos: 75.5,28.5 + parent: 2 + - uid: 41992 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,48.5 - parent: 45711 - - uid: 56162 + pos: 75.5,27.5 + parent: 2 + - uid: 41993 components: - type: Transform - pos: -0.5,-0.5 - parent: 56108 - - uid: 56163 + rot: 3.141592653589793 rad + pos: 75.5,26.5 + parent: 2 + - uid: 42022 components: - type: Transform - pos: 5.5,0.5 - parent: 56108 - - uid: 56164 + rot: -1.5707963267948966 rad + pos: -42.5,43.5 + parent: 2 + - uid: 42024 components: - type: Transform - pos: -0.5,-1.5 - parent: 56108 - - uid: 56165 + rot: 1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - uid: 42031 components: - type: Transform - pos: 5.5,-1.5 - parent: 56108 - - uid: 56166 + rot: 1.5707963267948966 rad + pos: -46.5,36.5 + parent: 2 + - uid: 42032 components: - type: Transform - pos: 5.5,-0.5 - parent: 56108 - - uid: 56167 + rot: 1.5707963267948966 rad + pos: -46.5,37.5 + parent: 2 + - uid: 42037 components: - type: Transform - pos: -4.5,-1.5 - parent: 56108 - - uid: 56168 + rot: 1.5707963267948966 rad + pos: 43.5,29.5 + parent: 2 + - uid: 42038 components: - type: Transform - pos: 0.5,0.5 - parent: 56108 - - uid: 56169 + rot: 1.5707963267948966 rad + pos: -45.5,41.5 + parent: 2 + - uid: 42039 components: - type: Transform - pos: -0.5,0.5 - parent: 56108 - - uid: 56170 + rot: 1.5707963267948966 rad + pos: -45.5,40.5 + parent: 2 + - uid: 42044 components: - type: Transform - pos: -4.5,-0.5 - parent: 56108 - - uid: 56172 + rot: 1.5707963267948966 rad + pos: -47.5,43.5 + parent: 2 + - uid: 42046 components: - type: Transform - pos: -4.5,0.5 - parent: 56108 - - uid: 56173 + rot: 1.5707963267948966 rad + pos: -51.5,41.5 + parent: 2 + - uid: 42071 components: - type: Transform - pos: 0.5,-1.5 - parent: 56108 - - uid: 56174 + rot: -1.5707963267948966 rad + pos: -37.5,49.5 + parent: 2 + - uid: 42300 components: - type: Transform - pos: 1.5,0.5 - parent: 56108 - - uid: 56175 + pos: 48.5,79.5 + parent: 2 + - uid: 42311 components: - type: Transform - pos: 1.5,-0.5 - parent: 56108 - - uid: 56176 + pos: 46.5,79.5 + parent: 2 + - uid: 42312 components: - type: Transform - pos: 1.5,-1.5 - parent: 56108 -- proto: Cautery - entities: - - uid: 11043 + pos: 48.5,78.5 + parent: 2 + - uid: 42313 components: - type: Transform - pos: -7.4971514,-50.514805 + pos: 48.5,77.5 parent: 2 - - uid: 11044 + - uid: 42315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.627186,-30.156305 + pos: 48.5,80.5 parent: 2 -- proto: CellRechargerCircuitboard - entities: - - uid: 52077 + - uid: 42316 components: - type: Transform - pos: 16.616203,9.665211 + pos: 48.5,81.5 parent: 2 -- proto: Chainsaw - entities: - - uid: 51434 + - uid: 42317 components: - type: Transform - pos: 21.378426,-68.3473 + pos: 48.5,82.5 parent: 2 -- proto: Chair - entities: - - uid: 545 + - uid: 42323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-73.5 + pos: 46.5,87.5 parent: 2 - - uid: 709 + - uid: 42324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 + pos: 47.5,87.5 parent: 2 - - uid: 929 + - uid: 42325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,30.5 + pos: 49.5,87.5 parent: 2 - - uid: 980 + - uid: 42326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,49.5 + pos: 50.5,87.5 parent: 2 - - uid: 990 + - uid: 42328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-73.5 + pos: 39.5,79.5 parent: 2 - - uid: 2004 + - uid: 42329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-11.5 + pos: 40.5,79.5 parent: 2 - - uid: 3985 + - uid: 42330 components: - type: Transform - pos: -8.5,-68.5 + pos: 41.5,79.5 parent: 2 - - uid: 4441 + - uid: 42331 components: - type: Transform - pos: -7.5,-68.5 + pos: 42.5,79.5 parent: 2 - - uid: 5554 + - uid: 42332 components: - type: Transform - pos: -33.5,-3.5 + pos: 43.5,79.5 parent: 2 - - uid: 5761 + - uid: 42333 components: - type: Transform - pos: 8.5,34.5 + pos: 44.5,79.5 parent: 2 - - uid: 5763 + - uid: 42334 components: - type: Transform - pos: 9.5,34.5 + pos: 45.5,79.5 parent: 2 - - uid: 5764 + - uid: 42335 components: - type: Transform - pos: 10.5,33.5 + pos: 49.5,79.5 parent: 2 - - uid: 5765 + - uid: 42336 components: - type: Transform - pos: 9.5,33.5 + pos: 50.5,79.5 parent: 2 - - uid: 5766 + - uid: 42337 components: - type: Transform - pos: 6.5,33.5 + pos: 51.5,79.5 parent: 2 - - uid: 5767 + - uid: 42338 components: - type: Transform - pos: 8.5,33.5 + pos: 52.5,79.5 parent: 2 - - uid: 6633 + - uid: 42339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,40.5 + pos: 53.5,79.5 parent: 2 - - uid: 6773 + - uid: 42340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,59.5 + pos: 54.5,79.5 parent: 2 - - uid: 6778 + - uid: 42341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,58.5 + pos: 55.5,79.5 parent: 2 - - uid: 6975 + - uid: 42342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,63.5 + pos: 56.5,79.5 parent: 2 - - uid: 7837 + - uid: 42343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,21.5 + pos: 57.5,79.5 parent: 2 - - uid: 7887 + - uid: 42344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,20.5 + pos: 37.5,83.5 parent: 2 - - uid: 7889 + - uid: 42345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,21.5 + pos: 38.5,83.5 parent: 2 - - uid: 7902 + - uid: 42346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,20.5 + pos: 39.5,83.5 parent: 2 - - uid: 7961 + - uid: 42347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-20.5 + pos: 40.5,83.5 parent: 2 - - uid: 8629 + - uid: 42348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,53.5 + pos: 41.5,83.5 parent: 2 - - uid: 11047 + - uid: 42349 components: - type: Transform - pos: 5.5,-36.5 + pos: 42.5,83.5 parent: 2 - - uid: 11048 + - uid: 42350 components: - type: Transform - pos: 3.5,-36.5 + pos: 43.5,83.5 parent: 2 - - uid: 11051 + - uid: 42351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-4.5 + pos: 44.5,83.5 parent: 2 - - uid: 11054 + - uid: 42352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,17.5 + pos: 45.5,83.5 parent: 2 - - uid: 11055 + - uid: 42353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,19.5 + pos: 46.5,83.5 parent: 2 - - uid: 11057 + - uid: 42354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,13.5 + pos: 47.5,83.5 parent: 2 - - uid: 11058 + - uid: 42355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,23.5 + pos: 57.5,87.5 parent: 2 - - uid: 11059 + - uid: 42356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-9.5 + pos: 49.5,83.5 parent: 2 - - uid: 11061 + - uid: 42357 components: - type: Transform - pos: -8.5,-28.5 + pos: 50.5,83.5 parent: 2 - - uid: 11062 + - uid: 42358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,13.5 + pos: 51.5,83.5 parent: 2 - - uid: 11066 + - uid: 42359 components: - type: Transform - pos: -7.5,-28.5 + pos: 52.5,83.5 parent: 2 - - uid: 11067 + - uid: 42360 components: - type: Transform - pos: -9.5,-28.5 + pos: 53.5,83.5 parent: 2 - - uid: 11068 + - uid: 42361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-5.5 + pos: 54.5,83.5 parent: 2 - - uid: 11069 + - uid: 42362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-6.5 + pos: 55.5,83.5 parent: 2 - - uid: 11070 + - uid: 42363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,10.5 + pos: 56.5,83.5 parent: 2 - - uid: 11071 + - uid: 42364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-4.5 + pos: 57.5,83.5 parent: 2 - - uid: 11072 + - uid: 42365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-6.5 + pos: 58.5,83.5 parent: 2 - - uid: 11073 + - uid: 42366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-5.5 + pos: 59.5,83.5 parent: 2 - - uid: 11074 + - uid: 42367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,10.5 + pos: 56.5,87.5 parent: 2 - - uid: 11075 + - uid: 42368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-10.5 + pos: 55.5,87.5 parent: 2 - - uid: 11076 + - uid: 42369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-9.5 + pos: 54.5,87.5 parent: 2 - - uid: 11077 + - uid: 42370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-8.5 + pos: 53.5,87.5 parent: 2 - - uid: 11078 + - uid: 42371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-8.5 + pos: 52.5,87.5 parent: 2 - - uid: 11102 + - uid: 42372 components: - type: Transform - pos: 39.5,3.5 + pos: 51.5,87.5 parent: 2 - - uid: 11103 + - uid: 42373 components: - type: Transform - pos: 27.5,3.5 + pos: 45.5,87.5 parent: 2 - - uid: 11104 + - uid: 42380 components: - type: Transform - pos: 31.5,3.5 + pos: 48.5,88.5 parent: 2 - - uid: 11105 + - uid: 42488 components: - type: Transform - pos: 35.5,3.5 + pos: -51.5,47.5 parent: 2 - - uid: 11106 + - uid: 42780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-30.5 + pos: -47.5,60.5 parent: 2 - - uid: 11109 + - uid: 42781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,15.5 + pos: -52.5,54.5 parent: 2 - - uid: 11110 + - uid: 42782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,8.5 + pos: -52.5,55.5 parent: 2 - - uid: 11111 + - uid: 42783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,13.5 + pos: -52.5,56.5 parent: 2 - - uid: 11112 + - uid: 42784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-10.5 + pos: -52.5,57.5 parent: 2 - - uid: 11118 + - uid: 42785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-36.5 + pos: -52.5,58.5 parent: 2 - - uid: 11119 + - uid: 42787 components: - type: Transform - pos: -40.5,-45.5 + pos: -52.5,60.5 parent: 2 - - uid: 11128 + - uid: 42788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-34.5 + pos: -52.5,61.5 parent: 2 - - uid: 11129 + - uid: 42791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-34.5 + pos: -53.5,67.5 parent: 2 - - uid: 11130 + - uid: 42792 components: - type: Transform - pos: -4.5,-36.5 + pos: -53.5,64.5 parent: 2 - - uid: 11131 + - uid: 42793 components: - type: Transform - pos: -5.5,-36.5 + pos: -54.5,64.5 parent: 2 - - uid: 11132 + - uid: 42794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-10.5 + pos: -55.5,64.5 parent: 2 - - uid: 11147 + - uid: 42795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,27.5 + pos: -56.5,64.5 parent: 2 - - uid: 11148 + - uid: 42796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,26.5 + pos: -57.5,64.5 parent: 2 - - uid: 11155 + - uid: 42797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,28.5 + pos: -58.5,64.5 parent: 2 - - uid: 11156 + - uid: 42799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,13.5 + pos: -46.5,60.5 parent: 2 - - uid: 11157 + - uid: 42800 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-47.5 + pos: -45.5,60.5 parent: 2 - - uid: 11158 + - uid: 42801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,15.5 + pos: -46.5,64.5 parent: 2 - - uid: 11159 + - uid: 42802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,14.5 + pos: -47.5,64.5 parent: 2 - - uid: 11162 + - uid: 42806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,14.5 + pos: -48.5,60.5 parent: 2 - - uid: 11163 + - uid: 42807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,21.5 + pos: -49.5,60.5 parent: 2 - - uid: 11164 + - uid: 42808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,22.5 + pos: -50.5,60.5 parent: 2 - - uid: 11165 + - uid: 42809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,23.5 + pos: -51.5,60.5 parent: 2 - - uid: 11166 + - uid: 42810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,23.5 + pos: -53.5,60.5 parent: 2 - - uid: 11167 + - uid: 42811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,21.5 + pos: -54.5,60.5 parent: 2 - - uid: 11168 + - uid: 42812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,21.5 + pos: -55.5,60.5 parent: 2 - - uid: 11169 + - uid: 42813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,23.5 + pos: -56.5,60.5 parent: 2 - - uid: 11170 + - uid: 42814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,15.5 + pos: -57.5,60.5 parent: 2 - - uid: 11171 + - uid: 42815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,15.5 + pos: -58.5,60.5 parent: 2 - - uid: 11172 + - uid: 42817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,21.5 + pos: -58.5,56.5 parent: 2 - - uid: 11173 + - uid: 42818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,21.5 + pos: -57.5,56.5 parent: 2 - - uid: 11174 + - uid: 42819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,15.5 + pos: -56.5,56.5 parent: 2 - - uid: 11175 + - uid: 42820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,15.5 + pos: -55.5,56.5 parent: 2 - - uid: 11176 + - uid: 42821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,23.5 + pos: -54.5,56.5 parent: 2 - - uid: 11177 + - uid: 42822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,17.5 + pos: -53.5,56.5 parent: 2 - - uid: 11178 + - uid: 42823 components: - type: Transform - pos: -98.5,19.5 + pos: -51.5,56.5 parent: 2 - - uid: 11179 + - uid: 42824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,13.5 + pos: -50.5,56.5 parent: 2 - - uid: 11180 + - uid: 42825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,13.5 + pos: -49.5,56.5 parent: 2 - - uid: 11181 + - uid: 42826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,17.5 + pos: -48.5,56.5 parent: 2 - - uid: 11184 + - uid: 42827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,30.5 + pos: -47.5,56.5 parent: 2 - - uid: 11185 + - uid: 42828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,27.5 + pos: -46.5,56.5 parent: 2 - - uid: 11186 + - uid: 42919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,19.5 + pos: -45.5,56.5 parent: 2 - - uid: 11187 + - uid: 42920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,23.5 + pos: -40.5,61.5 parent: 2 - - uid: 11188 + - uid: 42921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,22.5 + pos: -40.5,60.5 parent: 2 - - uid: 11189 + - uid: 42922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,21.5 + pos: -41.5,59.5 parent: 2 - - uid: 11190 + - uid: 42928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,21.5 + pos: -41.5,64.5 parent: 2 - - uid: 11191 + - uid: 42929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,21.5 + pos: -41.5,65.5 parent: 2 - - uid: 11192 + - uid: 42965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,15.5 + pos: -11.5,64.5 parent: 2 - - uid: 11193 + - uid: 43003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,15.5 + pos: -11.5,63.5 parent: 2 - - uid: 11194 + - uid: 43004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,15.5 + pos: -11.5,59.5 parent: 2 - - uid: 11195 + - uid: 43031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,21.5 + pos: -43.5,42.5 parent: 2 - - uid: 11196 + - uid: 43032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,21.5 + pos: -15.5,56.5 parent: 2 - - uid: 11197 + - uid: 43041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,15.5 + pos: -44.5,41.5 parent: 2 - - uid: 11198 + - uid: 43069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,13.5 + pos: -34.5,46.5 parent: 2 - - uid: 11199 + - uid: 43142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,13.5 + pos: -45.5,-5.5 parent: 2 - - uid: 11200 + - uid: 43262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,23.5 + pos: -47.5,35.5 parent: 2 - - uid: 11201 + - uid: 43273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,23.5 + pos: -47.5,36.5 parent: 2 - - uid: 11202 + - uid: 43275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,23.5 + pos: -47.5,34.5 parent: 2 - - uid: 11203 + - uid: 43477 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,23.5 + pos: -50.5,39.5 parent: 2 - - uid: 11204 + - uid: 43489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,13.5 + pos: -45.5,46.5 parent: 2 - - uid: 11205 + - uid: 43555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,13.5 + pos: 43.5,6.5 parent: 2 - - uid: 11206 + - uid: 43605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,27.5 + pos: -51.5,47.5 parent: 2 - - uid: 11207 + - uid: 43606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,28.5 + pos: -50.5,46.5 parent: 2 - - uid: 11210 + - uid: 43608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,28.5 + pos: -50.5,44.5 parent: 2 - - uid: 11211 + - uid: 43609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,29.5 + pos: -50.5,43.5 parent: 2 - - uid: 11212 + - uid: 43610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,30.5 + pos: -47.5,42.5 parent: 2 - - uid: 11213 + - uid: 43611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,27.5 + pos: -47.5,44.5 parent: 2 - - uid: 11214 + - uid: 43612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,28.5 + pos: -44.5,46.5 parent: 2 - - uid: 11215 + - uid: 43642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,29.5 + pos: -15.5,58.5 parent: 2 - - uid: 11216 + - uid: 43653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,30.5 + pos: -15.5,64.5 parent: 2 - - uid: 11217 + - uid: 43654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,27.5 + pos: -15.5,65.5 parent: 2 - - uid: 11218 + - uid: 43655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,28.5 + pos: -15.5,62.5 parent: 2 - - uid: 11219 + - uid: 43710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,29.5 + pos: -14.5,60.5 parent: 2 - - uid: 11220 + - uid: 43714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,30.5 + pos: -14.5,61.5 parent: 2 - - uid: 11221 + - uid: 43866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,27.5 + pos: -45.5,64.5 parent: 2 - - uid: 11222 + - uid: 43875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,28.5 + pos: -42.5,58.5 parent: 2 - - uid: 11223 + - uid: 43876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,29.5 + pos: -42.5,61.5 parent: 2 - - uid: 11224 + - uid: 43880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,30.5 + pos: -55.5,-56.5 parent: 2 - - uid: 11225 + - uid: 43893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,8.5 + pos: -61.5,-55.5 parent: 2 - - uid: 11230 + - uid: 43894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-25.5 + pos: -67.5,-72.5 parent: 2 - - uid: 11231 + - uid: 43895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-26.5 + pos: -61.5,-73.5 parent: 2 - - uid: 11233 + - uid: 43896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-13.5 + pos: -55.5,-72.5 parent: 2 - - uid: 11234 + - uid: 44488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-15.5 + pos: 53.5,-48.5 parent: 2 - - uid: 11242 + - uid: 44490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-12.5 + pos: 55.5,-49.5 parent: 2 - - uid: 11243 + - uid: 44491 components: - type: Transform - pos: -54.5,-9.5 + pos: 53.5,-47.5 parent: 2 - - uid: 11244 + - uid: 44492 components: - type: Transform - pos: -7.5,-15.5 + pos: 60.5,-51.5 parent: 2 - - uid: 11245 + - uid: 44493 components: - type: Transform - pos: -8.5,-15.5 + pos: 61.5,-51.5 parent: 2 - - uid: 11249 + - uid: 44496 components: - type: Transform - pos: -84.5,-21.5 + pos: 54.5,-51.5 parent: 2 - - uid: 11250 + - uid: 44497 components: - type: Transform - pos: -85.5,-21.5 + pos: 64.5,-51.5 parent: 2 - - uid: 11251 + - uid: 44498 components: - type: Transform - pos: -86.5,-21.5 + pos: 65.5,-51.5 parent: 2 - - uid: 11252 + - uid: 44501 components: - type: Transform - pos: -82.5,-21.5 + pos: 70.5,-49.5 parent: 2 - - uid: 11254 + - uid: 44502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,2.5 + pos: 71.5,-49.5 parent: 2 - - uid: 11255 + - uid: 44570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,1.5 + pos: 71.5,-40.5 parent: 2 - - uid: 11256 + - uid: 44571 components: - type: Transform - pos: 18.5,40.5 + pos: 72.5,-40.5 parent: 2 - - uid: 11257 + - uid: 44572 components: - type: Transform - pos: 19.5,40.5 + pos: 72.5,-39.5 parent: 2 - - uid: 11258 + - uid: 44573 components: - type: Transform - pos: 20.5,40.5 + pos: 71.5,-38.5 parent: 2 - - uid: 11260 + - uid: 44574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,0.5 + pos: 71.5,-36.5 parent: 2 - - uid: 11265 + - uid: 44575 components: - type: Transform - pos: 36.5,-39.5 + pos: 71.5,-35.5 parent: 2 - - uid: 11266 + - uid: 44576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-41.5 + pos: 71.5,-30.5 parent: 2 - - uid: 11267 + - uid: 44577 components: - type: Transform - pos: 34.5,-64.5 + pos: 71.5,-31.5 parent: 2 - - uid: 11268 + - uid: 44578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-67.5 + pos: 71.5,-32.5 parent: 2 - - uid: 11917 + - uid: 44579 components: - type: Transform - pos: 7.5,-70.5 + pos: 71.5,-33.5 parent: 2 - - uid: 13375 + - uid: 44580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,50.5 + pos: 70.5,-26.5 parent: 2 - - uid: 14164 + - uid: 44581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 + pos: 70.5,-25.5 parent: 2 - - uid: 14886 + - uid: 44582 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-73.5 + pos: 70.5,-24.5 parent: 2 - - uid: 15145 + - uid: 44583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,39.5 + pos: 70.5,-23.5 parent: 2 - - uid: 18053 + - uid: 44584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-19.5 + pos: 69.5,-23.5 parent: 2 - - uid: 18138 + - uid: 44585 components: - type: Transform - pos: -4.5,33.5 + pos: 69.5,-21.5 parent: 2 - - uid: 19588 + - uid: 44586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,36.5 + pos: 70.5,-21.5 parent: 2 - - uid: 20263 + - uid: 44587 components: - type: Transform - pos: 12.5,51.5 + pos: 71.5,-21.5 parent: 2 - - uid: 20309 + - uid: 44588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,61.5 + pos: 71.5,-20.5 parent: 2 - - uid: 20310 + - uid: 44589 components: - type: Transform - pos: 8.5,67.5 + pos: 71.5,-26.5 parent: 2 - - uid: 20856 + - uid: 44590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,64.5 + pos: 72.5,-26.5 parent: 2 - - uid: 20861 + - uid: 44591 components: - type: Transform - pos: -5.5,33.5 + pos: 73.5,-26.5 parent: 2 - - uid: 21077 + - uid: 44592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,59.5 + pos: 74.5,-26.5 parent: 2 - - uid: 21440 + - uid: 44593 components: - type: Transform - pos: 4.5,33.5 + pos: 67.5,-23.5 parent: 2 - - uid: 21445 + - uid: 44594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 + pos: 66.5,-23.5 parent: 2 - - uid: 21515 + - uid: 44595 components: - type: Transform - pos: 10.5,34.5 + pos: 65.5,-23.5 parent: 2 - - uid: 21517 + - uid: 44596 components: - type: Transform - pos: 6.5,34.5 + pos: 65.5,-21.5 parent: 2 - - uid: 21518 + - uid: 44597 components: - type: Transform - pos: 5.5,33.5 + pos: 65.5,-19.5 parent: 2 - - uid: 21539 + - uid: 44598 components: - type: Transform - pos: 5.5,34.5 + pos: 64.5,-18.5 parent: 2 - - uid: 21540 + - uid: 44599 components: - type: Transform - pos: 4.5,34.5 + pos: 64.5,-17.5 parent: 2 - - uid: 21776 + - uid: 44600 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-73.5 + pos: 63.5,-14.5 parent: 2 - - uid: 21886 + - uid: 44601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,42.5 + pos: 63.5,-13.5 parent: 2 - - uid: 21906 + - uid: 44602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,40.5 + pos: 64.5,-15.5 parent: 2 - - uid: 22528 + - uid: 44603 components: - type: Transform - pos: 66.5,-43.5 + pos: 63.5,-11.5 parent: 2 - - uid: 22538 + - uid: 44604 components: - type: Transform - pos: 65.5,-43.5 + pos: 63.5,-10.5 parent: 2 - - uid: 23369 + - uid: 44605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,30.5 + pos: 63.5,-9.5 parent: 2 - - uid: 23704 + - uid: 44607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,30.5 + pos: 61.5,-9.5 parent: 2 - - uid: 23746 + - uid: 44763 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-34.5 + pos: 59.5,-10.5 parent: 2 - - uid: 24305 + - uid: 44764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,52.5 + rot: 3.141592653589793 rad + pos: 58.5,-10.5 parent: 2 - - uid: 25560 + - uid: 44765 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,6.5 + pos: 57.5,-10.5 parent: 2 - - uid: 26073 + - uid: 44766 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,49.5 + pos: 58.5,-8.5 parent: 2 - - uid: 26857 + - uid: 44768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,40.5 + rot: 3.141592653589793 rad + pos: 54.5,-10.5 parent: 2 - - uid: 27503 + - uid: 44769 components: - type: Transform - pos: 45.5,1.5 + rot: 3.141592653589793 rad + pos: 53.5,-12.5 parent: 2 - - uid: 27509 + - uid: 44770 components: - type: Transform - pos: 47.5,1.5 + rot: 3.141592653589793 rad + pos: 53.5,-13.5 parent: 2 - - uid: 28243 + - uid: 44771 components: - type: Transform - pos: -6.5,33.5 + rot: 3.141592653589793 rad + pos: 51.5,-16.5 parent: 2 - - uid: 28782 + - uid: 44772 components: - type: Transform - pos: -47.5,-33.5 + rot: 3.141592653589793 rad + pos: 51.5,-16.5 parent: 2 - - uid: 28811 + - uid: 44773 components: - type: Transform - pos: -45.5,-33.5 + rot: 3.141592653589793 rad + pos: 51.5,-17.5 parent: 2 - - uid: 28914 + - uid: 44774 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,49.5 + pos: 54.5,-17.5 parent: 2 - - uid: 30145 + - uid: 44775 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,-8.5 + pos: 53.5,-17.5 parent: 2 - - uid: 30176 + - uid: 44776 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-8.5 + pos: 57.5,-17.5 parent: 2 - - uid: 30197 + - uid: 44777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,69.5 + rot: 3.141592653589793 rad + pos: 58.5,-17.5 parent: 2 - - uid: 30205 + - uid: 44778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,69.5 + rot: 3.141592653589793 rad + pos: 57.5,-18.5 parent: 2 - - uid: 30207 + - uid: 44779 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,68.5 + pos: 57.5,-13.5 parent: 2 - - uid: 30781 + - uid: 44780 components: - type: Transform - pos: -29.5,-31.5 + rot: 3.141592653589793 rad + pos: 56.5,-13.5 parent: 2 - - uid: 31017 + - uid: 44781 components: - type: Transform - pos: -28.5,-31.5 + rot: 3.141592653589793 rad + pos: 56.5,-15.5 parent: 2 - - uid: 31917 + - uid: 44782 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,53.5 + pos: 57.5,-15.5 parent: 2 - - uid: 32888 + - uid: 44783 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,49.5 + pos: 57.5,-8.5 parent: 2 - - uid: 33544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,22.5 - parent: 33049 - - uid: 33545 + - uid: 45383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,23.5 - parent: 33049 - - uid: 33546 + pos: 0.5,-0.5 + parent: 43176 + - uid: 45384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,22.5 - parent: 33049 - - uid: 33547 + pos: -0.5,0.5 + parent: 43176 + - uid: 45385 components: - type: Transform - pos: -1.5,24.5 - parent: 33049 - - uid: 35038 + pos: 0.5,0.5 + parent: 43176 + - uid: 45386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,11.5 - parent: 34641 - - uid: 35039 + pos: 1.5,0.5 + parent: 43176 + - uid: 45387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,8.5 - parent: 34641 - - uid: 35131 + pos: 2.5,0.5 + parent: 43176 + - uid: 45388 components: - type: Transform - pos: 8.5,-70.5 - parent: 2 - - uid: 35443 + pos: 3.5,0.5 + parent: 43176 + - uid: 45389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,34.5 - parent: 2 - - uid: 35445 + pos: 4.5,0.5 + parent: 43176 + - uid: 45390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,37.5 - parent: 2 - - uid: 35468 + pos: 5.5,0.5 + parent: 43176 + - uid: 45391 components: - type: Transform - pos: -11.5,30.5 - parent: 2 - - uid: 35474 + pos: 6.5,0.5 + parent: 43176 + - uid: 45392 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,28.5 - parent: 2 - - uid: 35664 + pos: 6.5,1.5 + parent: 43176 + - uid: 45393 components: - type: Transform - pos: -33.5,-33.5 - parent: 2 - - uid: 35670 + pos: 6.5,2.5 + parent: 43176 + - uid: 45394 components: - type: Transform - pos: -34.5,-33.5 - parent: 2 - - uid: 35673 + pos: 6.5,3.5 + parent: 43176 + - uid: 45395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-35.5 - parent: 2 - - uid: 35675 + pos: 6.5,4.5 + parent: 43176 + - uid: 45396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-35.5 - parent: 2 - - uid: 37304 + pos: 6.5,-0.5 + parent: 43176 + - uid: 45397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 36861 - - uid: 37305 + pos: 6.5,-1.5 + parent: 43176 + - uid: 45398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,18.5 - parent: 36861 - - uid: 37306 + pos: 6.5,-2.5 + parent: 43176 + - uid: 45399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,17.5 - parent: 36861 - - uid: 37307 + pos: 6.5,-3.5 + parent: 43176 + - uid: 45400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 36861 - - uid: 37308 + pos: 6.5,-4.5 + parent: 43176 + - uid: 47535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,5.5 - parent: 36861 - - uid: 41242 + pos: 0.5,-0.5 + parent: 56108 + - uid: 47709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,65.5 + pos: -43.5,-28.5 parent: 2 - - uid: 41604 + - uid: 47808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,42.5 + pos: 54.5,17.5 parent: 2 - - uid: 42123 + - uid: 47809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-3.5 + pos: 54.5,19.5 parent: 2 - - uid: 42149 + - uid: 47810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-5.5 + pos: 54.5,21.5 parent: 2 - - uid: 43352 + - uid: 47894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,73.5 - parent: 2 - - uid: 43541 + pos: -6.5,-9.5 + parent: 45711 + - uid: 47895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,13.5 - parent: 2 - - uid: 44557 + pos: -6.5,-10.5 + parent: 45711 + - uid: 47896 components: - type: Transform - pos: 65.5,-52.5 - parent: 2 - - uid: 44622 + pos: -5.5,-9.5 + parent: 45711 + - uid: 47897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-34.5 - parent: 2 - - uid: 44623 + pos: -5.5,-10.5 + parent: 45711 + - uid: 47898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-23.5 - parent: 2 - - uid: 45136 + pos: -4.5,-9.5 + parent: 45711 + - uid: 47899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,45.5 + pos: -4.5,-10.5 parent: 45711 - - uid: 45401 + - uid: 47900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 43176 - - uid: 47580 + pos: -3.5,-9.5 + parent: 45711 + - uid: 47901 components: - type: Transform - pos: 25.5,-24.5 - parent: 2 - - uid: 48030 + pos: -3.5,-10.5 + parent: 45711 + - uid: 47902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,29.5 + pos: -2.5,-9.5 parent: 45711 - - uid: 51088 + - uid: 47903 components: - type: Transform - pos: 6.5,-70.5 - parent: 2 - - uid: 51103 + pos: -2.5,-10.5 + parent: 45711 + - uid: 47904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-65.5 - parent: 2 - - uid: 51104 + pos: -1.5,-9.5 + parent: 45711 + - uid: 47905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-66.5 - parent: 2 - - uid: 52890 + pos: -0.5,-9.5 + parent: 45711 + - uid: 47906 components: - type: Transform - pos: -5.5,71.5 + pos: -0.5,-10.5 parent: 45711 - - uid: 53037 + - uid: 47907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,72.5 + pos: 0.5,-9.5 parent: 45711 - - uid: 53042 + - uid: 47908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,70.5 + pos: 0.5,-10.5 parent: 45711 - - uid: 53043 + - uid: 47909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,71.5 + pos: 1.5,-9.5 parent: 45711 - - uid: 53044 + - uid: 47910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,69.5 + pos: 1.5,-10.5 parent: 45711 - - uid: 53050 + - uid: 47911 components: - type: Transform - pos: 2.5,70.5 + pos: 2.5,-9.5 parent: 45711 - - uid: 53408 + - uid: 47912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,43.5 + pos: 2.5,-10.5 parent: 45711 - - uid: 53537 + - uid: 47913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,53.5 + pos: 3.5,-9.5 parent: 45711 - - uid: 54117 + - uid: 47914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,42.5 + pos: 3.5,-10.5 parent: 45711 - - uid: 54118 + - uid: 47915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,43.5 + pos: 4.5,-10.5 parent: 45711 - - uid: 54119 + - uid: 47916 components: - type: Transform - pos: 26.5,44.5 + pos: 5.5,-9.5 parent: 45711 - - uid: 56058 + - uid: 47917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,56.5 + pos: 5.5,-10.5 parent: 45711 - - uid: 56059 + - uid: 47918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,55.5 + pos: 6.5,-9.5 parent: 45711 -- proto: ChairCarp - entities: - - uid: 7045 + - uid: 47919 components: - type: Transform - pos: -25.5,19.5 - parent: 2 - - uid: 11269 + pos: 6.5,-10.5 + parent: 45711 + - uid: 47920 components: - type: Transform - pos: 37.5,-54.5 - parent: 2 - - uid: 40964 + pos: 7.5,-9.5 + parent: 45711 + - uid: 47921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 40952 - - uid: 40965 + pos: 7.5,-10.5 + parent: 45711 + - uid: 47922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 40952 - - uid: 41680 + pos: -5.5,-11.5 + parent: 45711 + - uid: 47923 components: - type: Transform - pos: 104.5,53.5 - parent: 2 - - uid: 44547 + pos: -3.5,-11.5 + parent: 45711 + - uid: 47924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-31.5 - parent: 2 - - uid: 48031 + pos: -2.5,-11.5 + parent: 45711 + - uid: 47925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,0.5 + pos: -1.5,-11.5 parent: 45711 - - uid: 53289 + - uid: 47926 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,62.5 + pos: -0.5,-11.5 parent: 45711 - - uid: 53290 + - uid: 47927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,61.5 + pos: 0.5,-11.5 parent: 45711 -- proto: ChairFolding - entities: - - uid: 5569 + - uid: 47928 components: - type: Transform - pos: -42.519722,-8.539805 - parent: 2 - - uid: 11270 + pos: 1.5,-11.5 + parent: 45711 + - uid: 47929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-66.5 - parent: 2 - - uid: 11271 + pos: 2.5,-11.5 + parent: 45711 + - uid: 47930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-67.5 - parent: 2 - - uid: 11272 + pos: 4.5,-11.5 + parent: 45711 + - uid: 47931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,33.5 - parent: 2 - - uid: 11273 + pos: 5.5,-11.5 + parent: 45711 + - uid: 47932 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,32.5 - parent: 2 - - uid: 11274 + pos: 6.5,-11.5 + parent: 45711 + - uid: 47933 components: - type: Transform - pos: -43.5,34.5 - parent: 2 - - uid: 11275 + pos: -4.5,-12.5 + parent: 45711 + - uid: 47934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,12.5 - parent: 2 - - uid: 11276 + pos: -3.5,-12.5 + parent: 45711 + - uid: 47935 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - uid: 11278 + pos: -2.5,-12.5 + parent: 45711 + - uid: 47936 components: - type: Transform - pos: 42.5,10.5 - parent: 2 - - uid: 11279 + pos: -1.5,-12.5 + parent: 45711 + - uid: 47937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.8649,-7.9212456 - parent: 2 - - uid: 11726 + pos: -0.5,-12.5 + parent: 45711 + - uid: 47938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-36.5 - parent: 2 - - uid: 20562 + pos: 1.5,-12.5 + parent: 45711 + - uid: 47939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.809464,35.64511 - parent: 2 - - uid: 31206 + pos: 2.5,-12.5 + parent: 45711 + - uid: 47940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,37.5 - parent: 2 - - uid: 32262 + pos: 3.5,-12.5 + parent: 45711 + - uid: 47941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,53.5 - parent: 2 - - uid: 32267 + pos: 4.5,-12.5 + parent: 45711 + - uid: 47942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,53.5 - parent: 2 - - uid: 47615 + pos: 5.5,-12.5 + parent: 45711 + - uid: 47943 components: - type: Transform - pos: 23.645405,-2.6885324 - parent: 2 - - uid: 48032 + pos: -3.5,-13.5 + parent: 45711 + - uid: 47944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,13.5 + pos: -2.5,-13.5 parent: 45711 - - uid: 48033 + - uid: 47945 components: - type: Transform - pos: 11.5,15.5 + pos: -1.5,-13.5 parent: 45711 - - uid: 48034 + - uid: 47946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,14.5 + pos: -0.5,-13.5 parent: 45711 - - uid: 51505 + - uid: 47947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-68.5 - parent: 2 - - uid: 51506 + pos: 0.5,-13.5 + parent: 45711 + - uid: 47948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-67.5 - parent: 2 - - uid: 51621 + pos: 1.5,-13.5 + parent: 45711 + - uid: 47949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,9.5 - parent: 2 - - uid: 53047 + pos: 2.5,-13.5 + parent: 45711 + - uid: 47950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.808197,72.04266 + pos: 3.5,-13.5 parent: 45711 - - uid: 53048 + - uid: 47951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.4105377,69.48016 + pos: 4.5,-13.5 parent: 45711 - - uid: 53049 + - uid: 47952 components: - type: Transform - pos: 6.676193,71.93329 + pos: -1.5,5.5 parent: 45711 -- proto: ChairFoldingSpawnFolded - entities: - - uid: 2631 + - uid: 47953 components: - type: Transform - pos: 20.414936,-35.27168 - parent: 2 - - uid: 11281 + pos: -1.5,4.5 + parent: 45711 + - uid: 47954 components: - type: Transform - pos: 24.410307,-29.27056 - parent: 2 - - uid: 18064 + pos: -1.5,3.5 + parent: 45711 + - uid: 47955 components: - type: Transform - pos: -29.13488,-36.453384 - parent: 2 - - uid: 19019 + pos: -1.5,2.5 + parent: 45711 + - uid: 47956 components: - type: Transform - pos: -30.541134,-36.85963 - parent: 2 - - uid: 20513 + pos: -1.5,1.5 + parent: 45711 + - uid: 47957 components: - type: Transform - pos: 21.028214,34.660732 - parent: 2 - - uid: 22689 + pos: -0.5,6.5 + parent: 45711 + - uid: 47958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.624104,34.251617 - parent: 2 - - uid: 25810 + pos: -0.5,5.5 + parent: 45711 + - uid: 47959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.38973,35.032867 - parent: 2 - - uid: 36634 + pos: -0.5,3.5 + parent: 45711 + - uid: 47960 components: - type: Transform - pos: 20.715714,34.129482 - parent: 2 - - uid: 43839 + pos: -0.5,1.5 + parent: 45711 + - uid: 47961 components: - type: Transform - pos: -34.92811,62.13869 - parent: 2 - - uid: 43840 + pos: -0.5,0.5 + parent: 45711 + - uid: 47962 components: - type: Transform - pos: -31.068733,58.373066 - parent: 2 - - uid: 53045 + pos: 0.5,6.5 + parent: 45711 + - uid: 47963 components: - type: Transform - pos: 0.09803772,69.16766 + pos: 0.5,5.5 parent: 45711 - - uid: 53046 + - uid: 47964 components: - type: Transform - pos: 4.5980377,72.33954 + pos: 0.5,3.5 parent: 45711 -- proto: ChairGreyscale - entities: - - uid: 988 + - uid: 47965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-61.5 - parent: 2 - - uid: 11045 + pos: 0.5,2.5 + parent: 45711 + - uid: 47966 components: - type: Transform - pos: 5.5,-33.5 - parent: 2 - - uid: 11053 + pos: 0.5,1.5 + parent: 45711 + - uid: 47967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-45.5 - parent: 2 - - uid: 11056 + pos: 0.5,0.5 + parent: 45711 + - uid: 47968 components: - type: Transform - pos: -9.5,-47.5 - parent: 2 - - uid: 11114 + pos: 1.5,6.5 + parent: 45711 + - uid: 47969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-43.5 - parent: 2 - - uid: 11115 + pos: 1.5,5.5 + parent: 45711 + - uid: 47970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-42.5 - parent: 2 - - uid: 11116 + pos: 0.5,4.5 + parent: 45711 + - uid: 47971 components: - type: Transform - pos: -17.5,-39.5 - parent: 2 - - uid: 11120 + pos: 1.5,3.5 + parent: 45711 + - uid: 47972 components: - type: Transform - pos: -8.5,-47.5 - parent: 2 - - uid: 11133 + pos: 2.5,2.5 + parent: 45711 + - uid: 47973 components: - type: Transform - pos: -7.5,-47.5 - parent: 2 - - uid: 11134 + pos: 1.5,1.5 + parent: 45711 + - uid: 47974 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-43.5 - parent: 2 - - uid: 11137 + pos: 1.5,0.5 + parent: 45711 + - uid: 47975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 2 - - uid: 11138 + pos: 2.5,5.5 + parent: 45711 + - uid: 47976 components: - type: Transform - pos: -10.5,-47.5 - parent: 2 - - uid: 11882 + pos: 2.5,4.5 + parent: 45711 + - uid: 47977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-49.5 - parent: 2 - - uid: 15293 + pos: 2.5,3.5 + parent: 45711 + - uid: 47978 components: - type: Transform - pos: -15.5,-39.5 - parent: 2 - - uid: 23274 + pos: 2.5,1.5 + parent: 45711 + - uid: 47979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-46.5 - parent: 2 - - uid: 23523 + pos: -13.5,31.5 + parent: 45711 + - uid: 47980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-6.5 - parent: 2 - - uid: 23527 + pos: -13.5,29.5 + parent: 45711 + - uid: 47981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-7.5 - parent: 2 - - uid: 25028 + pos: -13.5,30.5 + parent: 45711 + - uid: 47982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-44.5 - parent: 2 - - uid: 26638 + pos: -16.5,32.5 + parent: 45711 + - uid: 47983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-50.5 - parent: 2 - - uid: 33025 + pos: -16.5,28.5 + parent: 45711 + - uid: 47984 components: - type: Transform - pos: -13.5,-44.5 - parent: 2 - - uid: 41603 + pos: -15.5,33.5 + parent: 45711 + - uid: 47985 components: - type: Transform - pos: 99.5,44.5 - parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 173 + pos: -16.5,30.5 + parent: 45711 + - uid: 47986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-51.5 - parent: 2 - - uid: 701 + pos: -16.5,29.5 + parent: 45711 + - uid: 47987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.41905,-10.891795 - parent: 2 - - uid: 722 + pos: -16.5,31.5 + parent: 45711 + - uid: 47988 components: - type: Transform - pos: 2.7950473,-2.309985 - parent: 2 - - uid: 825 + pos: -14.5,29.5 + parent: 45711 + - uid: 47989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.318207,-5.1766915 - parent: 2 - - uid: 4059 + pos: -14.5,28.5 + parent: 45711 + - uid: 47990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-19.5 - parent: 2 - - uid: 7949 + pos: -14.5,30.5 + parent: 45711 + - uid: 47991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.62803,-20.307697 - parent: 2 - - uid: 8534 + pos: -15.5,28.5 + parent: 45711 + - uid: 47992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,11.5 - parent: 2 - - uid: 9621 + pos: -14.5,32.5 + parent: 45711 + - uid: 47993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,29.5 - parent: 2 - - uid: 9963 + pos: -14.5,31.5 + parent: 45711 + - uid: 47994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,18.5 - parent: 2 - - uid: 11141 + pos: -16.5,33.5 + parent: 45711 + - uid: 47995 components: - type: Transform - pos: 12.5,-14.5 - parent: 2 - - uid: 11143 + pos: -14.5,33.5 + parent: 45711 + - uid: 47996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,30.5 - parent: 2 - - uid: 11282 + pos: -15.5,31.5 + parent: 45711 + - uid: 47997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,5.5 - parent: 2 - - uid: 11285 + pos: -15.5,30.5 + parent: 45711 + - uid: 47998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 2 - - uid: 11288 + pos: -15.5,32.5 + parent: 45711 + - uid: 47999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-19.5 - parent: 2 - - uid: 11289 + pos: -15.5,29.5 + parent: 45711 + - uid: 48000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-16.5 - parent: 2 - - uid: 11290 + pos: -17.5,28.5 + parent: 45711 + - uid: 48001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-38.5 - parent: 2 - - uid: 11291 + pos: -17.5,29.5 + parent: 45711 + - uid: 48002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-6.5 - parent: 2 - - uid: 11292 + pos: -17.5,30.5 + parent: 45711 + - uid: 48003 components: - type: Transform - pos: -5.5,-2.5 - parent: 2 - - uid: 11293 + pos: -17.5,31.5 + parent: 45711 + - uid: 48004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 2 - - uid: 11294 + pos: -17.5,32.5 + parent: 45711 + - uid: 48005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-23.5 - parent: 2 - - uid: 11295 + pos: -17.5,33.5 + parent: 45711 + - uid: 48006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 2 - - uid: 11296 + pos: -13.5,32.5 + parent: 45711 + - uid: 48007 components: - type: Transform - pos: 50.5,3.5 - parent: 2 - - uid: 11298 + pos: -23.5,26.5 + parent: 45711 + - uid: 48008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,6.5 - parent: 2 - - uid: 11299 + pos: -23.5,27.5 + parent: 45711 + - uid: 48009 components: - type: Transform - pos: -8.5,-38.5 - parent: 2 - - uid: 11302 + pos: -26.5,27.5 + parent: 45711 + - uid: 48010 components: - type: Transform - pos: 59.5,-41.5 - parent: 2 - - uid: 11308 + pos: -26.5,26.5 + parent: 45711 + - uid: 48011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-3.5 - parent: 2 - - uid: 11312 + pos: -24.5,26.5 + parent: 45711 + - uid: 48012 components: - type: Transform - pos: 24.5,4.5 - parent: 2 - - uid: 11314 + pos: -25.5,26.5 + parent: 45711 + - uid: 48013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 2 - - uid: 11315 + pos: -23.5,28.5 + parent: 45711 + - uid: 48014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 2 - - uid: 11317 + pos: -24.5,28.5 + parent: 45711 + - uid: 48015 components: - type: Transform - pos: -4.5,-25.5 - parent: 2 - - uid: 11319 + pos: -25.5,28.5 + parent: 45711 + - uid: 48016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 2 - - uid: 11321 + pos: -26.5,28.5 + parent: 45711 + - uid: 48017 components: - type: Transform - pos: -4.5,-2.5 - parent: 2 - - uid: 11325 + rot: 3.141592653589793 rad + pos: -7.5,34.5 + parent: 45711 + - uid: 48018 components: - type: Transform - pos: 37.5,68.5 - parent: 2 - - uid: 11327 + rot: 3.141592653589793 rad + pos: -8.5,34.5 + parent: 45711 + - uid: 48019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,69.5 - parent: 2 - - uid: 11330 + pos: -16.5,9.5 + parent: 45711 + - uid: 48020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-16.5 - parent: 2 - - uid: 11331 + pos: -16.5,8.5 + parent: 45711 + - uid: 48021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-15.5 - parent: 2 - - uid: 11332 + pos: -17.5,6.5 + parent: 45711 + - uid: 48022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 2 - - uid: 11334 + pos: -18.5,6.5 + parent: 45711 + - uid: 48023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-17.5 - parent: 2 - - uid: 11337 + pos: -20.5,7.5 + parent: 45711 + - uid: 48024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-27.5 - parent: 2 - - uid: 11338 + pos: -17.5,10.5 + parent: 45711 + - uid: 48025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-55.5 - parent: 2 - - uid: 11427 + pos: -15.5,10.5 + parent: 45711 + - uid: 48026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-40.5 - parent: 2 - - uid: 15440 + pos: -20.5,10.5 + parent: 45711 + - uid: 48027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-46.5 - parent: 2 - - uid: 15755 + pos: -20.5,11.5 + parent: 45711 + - uid: 48028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 - - uid: 19226 + pos: -18.5,12.5 + parent: 45711 + - uid: 48029 components: - type: Transform - pos: -5.5,46.5 - parent: 2 - - uid: 21959 + pos: -17.5,12.5 + parent: 45711 + - uid: 49528 components: - type: Transform - pos: 4.5,41.5 - parent: 2 - - uid: 24470 + pos: -26.5,53.5 + parent: 45711 + - uid: 50276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 2 - - uid: 25016 + pos: -26.5,52.5 + parent: 45711 + - uid: 50589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,15.5 + pos: 58.5,87.5 parent: 2 - - uid: 25018 + - uid: 50592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,16.5 + pos: 60.5,83.5 parent: 2 - - uid: 27527 + - uid: 50594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,39.5 + pos: 58.5,79.5 parent: 2 - - uid: 28105 + - uid: 50595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,45.5 + pos: 38.5,79.5 parent: 2 - - uid: 28226 + - uid: 50596 components: - type: Transform - pos: -5.5,42.5 + pos: 36.5,83.5 parent: 2 - - uid: 28304 + - uid: 50598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-18.5 + pos: 71.5,43.5 parent: 2 - - uid: 28318 + - uid: 50599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-20.5 + pos: 71.5,44.5 parent: 2 - - uid: 31195 + - uid: 50600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,29.5 + pos: 71.5,45.5 parent: 2 - - uid: 31324 + - uid: 50601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-35.5 + pos: 71.5,46.5 parent: 2 - - uid: 32019 + - uid: 50602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,46.5 + pos: 72.5,46.5 parent: 2 - - uid: 32592 + - uid: 50603 components: - type: Transform - pos: -10.5,34.5 + pos: 73.5,46.5 parent: 2 - - uid: 35473 + - uid: 50604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,50.5 + pos: 74.5,46.5 parent: 2 - - uid: 43008 + - uid: 50605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-4.5 + pos: 71.5,33.5 parent: 2 - - uid: 44368 + - uid: 50606 components: - type: Transform - pos: 60.486862,-30.294237 + pos: 71.5,32.5 parent: 2 - - uid: 45996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,42.5 - parent: 45711 - - uid: 47708 + - uid: 50607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.581781,-25.306364 + pos: 71.5,31.5 parent: 2 - - uid: 47737 + - uid: 50608 components: - type: Transform - pos: 25.604233,-7.9559507 + pos: 71.5,30.5 parent: 2 - - uid: 48035 + - uid: 50609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 45711 - - uid: 48036 + pos: 72.5,30.5 + parent: 2 + - uid: 50610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 45711 - - uid: 48037 + pos: 73.5,30.5 + parent: 2 + - uid: 50611 components: - type: Transform - pos: -10.5,3.5 - parent: 45711 - - uid: 48038 + pos: 74.5,30.5 + parent: 2 + - uid: 50612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 45711 - - uid: 48039 + pos: 84.5,30.5 + parent: 2 + - uid: 50613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 45711 - - uid: 48040 + pos: 85.5,30.5 + parent: 2 + - uid: 50614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,3.5 - parent: 45711 - - uid: 48041 + pos: 86.5,30.5 + parent: 2 + - uid: 50615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 45711 - - uid: 48042 + pos: 87.5,30.5 + parent: 2 + - uid: 50616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,14.5 - parent: 45711 - - uid: 48043 + pos: 87.5,31.5 + parent: 2 + - uid: 50617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 45711 - - uid: 48044 + pos: 87.5,32.5 + parent: 2 + - uid: 50618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 45711 - - uid: 48045 + pos: 87.5,33.5 + parent: 2 + - uid: 50619 components: - type: Transform - pos: 29.5,19.5 - parent: 45711 - - uid: 48046 + pos: 87.5,43.5 + parent: 2 + - uid: 50620 components: - type: Transform - pos: 31.5,18.5 - parent: 45711 - - uid: 48047 + pos: 87.5,44.5 + parent: 2 + - uid: 50621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,18.5 - parent: 45711 - - uid: 48048 + pos: 87.5,45.5 + parent: 2 + - uid: 50622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,14.5 - parent: 45711 - - uid: 48049 + pos: 87.5,46.5 + parent: 2 + - uid: 50623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,34.5 - parent: 45711 - - uid: 51993 + pos: 86.5,46.5 + parent: 2 + - uid: 50624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,15.5 + pos: 85.5,46.5 parent: 2 - - uid: 52154 + - uid: 50625 components: - type: Transform - pos: 43.5,-6.5 + pos: 84.5,46.5 parent: 2 - - uid: 52162 + - uid: 50921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 + pos: -52.5,64.5 parent: 2 - - uid: 52379 + - uid: 50922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,56.5 - parent: 45711 - - uid: 52889 + pos: -52.5,65.5 + parent: 2 + - uid: 50923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,69.5 - parent: 45711 - - uid: 53040 + pos: -52.5,66.5 + parent: 2 + - uid: 50924 components: - type: Transform - pos: 2.469513,75.75311 - parent: 45711 - - uid: 53311 + pos: -52.5,67.5 + parent: 2 + - uid: 50925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.585724,70.65082 - parent: 45711 - - uid: 53520 + pos: -52.5,68.5 + parent: 2 + - uid: 50926 components: - type: Transform - pos: -20.781036,55.536804 - parent: 45711 - - uid: 53688 + pos: -54.5,67.5 + parent: 2 + - uid: 50927 components: - type: Transform - pos: -33.510345,39.60193 - parent: 45711 - - uid: 53990 + pos: -55.5,67.5 + parent: 2 + - uid: 50928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.460327,39.644592 - parent: 45711 - - uid: 53991 + pos: -56.5,67.5 + parent: 2 + - uid: 50929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.413452,40.67578 - parent: 45711 - - uid: 53992 + pos: -57.5,67.5 + parent: 2 + - uid: 50930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.569702,41.816406 - parent: 45711 - - uid: 54125 + pos: -58.5,67.5 + parent: 2 + - uid: 50931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.436798,42.627136 - parent: 45711 - - uid: 54126 + pos: -58.5,68.5 + parent: 2 + - uid: 50932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.40013,41.705505 - parent: 45711 -- proto: ChairOfficeLight - entities: - - uid: 1670 + pos: -58.5,69.5 + parent: 2 + - uid: 50933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.555946,-26.262169 + pos: -58.5,70.5 parent: 2 - - uid: 5525 + - uid: 50934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-35.5 + pos: -58.5,71.5 parent: 2 - - uid: 6999 + - uid: 50935 components: - type: Transform - pos: -70.5,-6.5 + pos: -58.5,72.5 parent: 2 - - uid: 11339 + - uid: 50937 components: - type: Transform - pos: 17.5,14.5 + pos: -51.5,67.5 parent: 2 - - uid: 11340 + - uid: 50938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-39.5 + pos: -50.5,67.5 parent: 2 - - uid: 11341 + - uid: 50939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,3.5 + pos: -49.5,67.5 parent: 2 - - uid: 11342 + - uid: 50940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 + pos: -48.5,67.5 parent: 2 - - uid: 11343 + - uid: 50941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,5.5 + pos: -47.5,67.5 parent: 2 - - uid: 11344 + - uid: 50942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,3.5 + pos: -46.5,67.5 parent: 2 - - uid: 11345 + - uid: 50943 components: - type: Transform - pos: 8.5,36.5 + pos: -46.5,68.5 parent: 2 - - uid: 11347 + - uid: 50944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-55.5 + pos: -46.5,69.5 parent: 2 - - uid: 11348 + - uid: 50945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-55.5 + pos: -46.5,70.5 parent: 2 - - uid: 11349 + - uid: 50946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-3.5 + pos: -46.5,71.5 parent: 2 - - uid: 11350 + - uid: 50947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-39.5 + pos: -46.5,72.5 parent: 2 - - uid: 11351 + - uid: 50948 components: - type: Transform - pos: -3.5,-50.5 + pos: -52.5,69.5 parent: 2 - - uid: 11352 + - uid: 50949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-39.5 + pos: -53.5,68.5 parent: 2 - - uid: 11353 + - uid: 50950 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-0.5 + pos: -51.5,68.5 parent: 2 - - uid: 11354 + - uid: 51117 components: - type: Transform - pos: 10.5,36.5 + pos: -0.5,-70.5 parent: 2 - - uid: 11360 + - uid: 51118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-62.5 + pos: 0.5,-70.5 parent: 2 - - uid: 11430 + - uid: 51119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-58.5 + pos: 5.5,-70.5 parent: 2 - - uid: 12054 + - uid: 51120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,29.5 + pos: 8.5,-70.5 parent: 2 - - uid: 12097 + - uid: 51121 components: - type: Transform - pos: 15.5,-45.5 + pos: 9.5,-70.5 parent: 2 - - uid: 23023 + - uid: 51122 components: - type: Transform - pos: 13.5,43.5 + pos: 14.5,-70.5 parent: 2 - - uid: 31104 + - uid: 51123 components: - type: Transform - pos: 55.5,-30.5 + pos: 15.5,-70.5 parent: 2 - - uid: 36233 + - uid: 51124 components: - type: Transform - pos: 54.579315,-26.415165 + pos: -3.5,-69.5 parent: 2 - - uid: 37309 + - uid: 51125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 36861 - - uid: 37310 + pos: -3.5,-70.5 + parent: 2 + - uid: 51126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 36861 - - uid: 37311 + pos: -2.5,-70.5 + parent: 2 + - uid: 51127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 36861 - - uid: 37312 + pos: 13.5,-70.5 + parent: 2 + - uid: 51134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 36861 - - uid: 42876 + pos: 19.5,-59.5 + parent: 2 + - uid: 51135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,58.5 + pos: 19.5,-58.5 parent: 2 -- proto: ChairPilotSeat - entities: - - uid: 11361 + - uid: 51136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 + pos: 19.5,-57.5 parent: 2 - - uid: 11362 + - uid: 51155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,6.5 + pos: 18.5,-70.5 parent: 2 - - uid: 11363 + - uid: 51156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,6.5 + pos: 18.5,-69.5 parent: 2 - - uid: 11364 + - uid: 51157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,4.5 + pos: 18.5,-68.5 parent: 2 - - uid: 11365 + - uid: 51158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,5.5 + pos: 18.5,-67.5 parent: 2 - - uid: 11366 + - uid: 51159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,5.5 + pos: 18.5,-63.5 parent: 2 - - uid: 11367 + - uid: 51160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,4.5 + pos: 18.5,-61.5 parent: 2 - - uid: 11368 + - uid: 51161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,3.5 + pos: 18.5,-59.5 parent: 2 - - uid: 11369 + - uid: 51203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,6.5 + pos: 19.5,-66.5 parent: 2 - - uid: 11370 + - uid: 51204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,3.5 + pos: 20.5,-66.5 parent: 2 - - uid: 11371 + - uid: 51206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,6.5 + pos: 23.5,-64.5 parent: 2 - - uid: 11372 + - uid: 51271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,6.5 + pos: 23.5,-60.5 parent: 2 - - uid: 11373 + - uid: 51272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,3.5 + pos: 24.5,-60.5 parent: 2 - - uid: 11374 + - uid: 51273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,1.5 + pos: 22.5,-56.5 parent: 2 - - uid: 11375 + - uid: 51274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,1.5 + pos: 20.5,-56.5 parent: 2 - - uid: 11376 + - uid: 51275 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,1.5 + pos: 21.5,-56.5 parent: 2 - - uid: 11377 + - uid: 51453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,1.5 + pos: 19.5,-74.5 parent: 2 - - uid: 11378 + - uid: 51454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,7.5 + pos: 18.5,-74.5 parent: 2 - - uid: 11379 + - uid: 51455 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,7.5 + pos: 17.5,-74.5 parent: 2 - - uid: 11380 + - uid: 51456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,7.5 + pos: 17.5,-73.5 parent: 2 - - uid: 11381 + - uid: 51575 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,7.5 + pos: 37.5,7.5 parent: 2 - - uid: 11382 + - uid: 51576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,7.5 + pos: 38.5,7.5 parent: 2 - - uid: 11383 + - uid: 51577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,7.5 + pos: 35.5,7.5 parent: 2 - - uid: 11384 + - uid: 51615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,3.5 + pos: 39.5,10.5 parent: 2 - - uid: 11385 + - uid: 51616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,6.5 + pos: 38.5,11.5 parent: 2 - - uid: 11386 + - uid: 51618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,3.5 + pos: 39.5,9.5 parent: 2 - - uid: 11387 + - uid: 51657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,6.5 + pos: -0.5,-8.5 parent: 2 - - uid: 11388 + - uid: 51667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,3.5 + pos: 39.5,20.5 parent: 2 - - uid: 11389 + - uid: 51669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,5.5 + pos: 37.5,20.5 parent: 2 - - uid: 11390 + - uid: 51685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,4.5 + pos: 33.5,13.5 parent: 2 - - uid: 11391 + - uid: 51686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,5.5 + pos: 33.5,14.5 parent: 2 - - uid: 11392 + - uid: 51687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,4.5 + pos: 36.5,15.5 parent: 2 - - uid: 11393 + - uid: 51688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,6.5 + pos: 36.5,16.5 parent: 2 - - uid: 11394 + - uid: 52189 components: - type: Transform - pos: -88.5,2.5 + pos: 34.5,-36.5 parent: 2 - - uid: 11395 + - uid: 52195 components: - type: Transform - pos: -87.5,2.5 + pos: -11.5,46.5 parent: 2 - - uid: 11396 + - uid: 52323 components: - type: Transform - pos: -86.5,2.5 - parent: 2 - - uid: 11397 + pos: -25.5,54.5 + parent: 45711 + - uid: 52388 components: - type: Transform - pos: -80.5,2.5 - parent: 2 - - uid: 11398 + pos: -24.5,52.5 + parent: 45711 + - uid: 52389 components: - type: Transform - pos: -79.5,2.5 - parent: 2 - - uid: 11399 + pos: -25.5,55.5 + parent: 45711 + - uid: 53626 components: - type: Transform - pos: -78.5,2.5 - parent: 2 - - uid: 11400 + pos: -31.5,45.5 + parent: 45711 + - uid: 53632 components: - type: Transform - pos: -91.5,8.5 - parent: 2 - - uid: 11401 + pos: -25.5,53.5 + parent: 45711 + - uid: 53638 components: - type: Transform - pos: -90.5,8.5 - parent: 2 - - uid: 11402 + pos: -25.5,52.5 + parent: 45711 + - uid: 53647 components: - type: Transform - pos: -84.5,8.5 - parent: 2 - - uid: 11403 + pos: -26.5,55.5 + parent: 45711 + - uid: 53648 components: - type: Transform - pos: -82.5,8.5 - parent: 2 - - uid: 32805 + pos: -26.5,54.5 + parent: 45711 + - uid: 53662 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 32764 - - uid: 32806 + pos: -24.5,53.5 + parent: 45711 + - uid: 53663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 32764 - - uid: 32807 + pos: -24.5,54.5 + parent: 45711 + - uid: 53664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 32764 - - uid: 32808 + pos: -24.5,55.5 + parent: 45711 + - uid: 53672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 32764 - - uid: 35837 + pos: -30.5,54.5 + parent: 45711 + - uid: 53674 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 35803 - - uid: 35838 + pos: -30.5,55.5 + parent: 45711 + - uid: 53676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 35803 - - uid: 35839 + pos: -30.5,53.5 + parent: 45711 + - uid: 53677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 35803 - - uid: 35840 + pos: -31.5,55.5 + parent: 45711 + - uid: 53678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 - parent: 35803 - - uid: 44952 + pos: -31.5,54.5 + parent: 45711 + - uid: 53679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 44868 - - uid: 44953 + pos: -31.5,53.5 + parent: 45711 + - uid: 53680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 44868 - - uid: 44954 + pos: -32.5,55.5 + parent: 45711 + - uid: 53681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 44868 - - uid: 44955 + pos: -32.5,54.5 + parent: 45711 + - uid: 53682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 44868 - - uid: 44956 + pos: -32.5,53.5 + parent: 45711 + - uid: 53683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 44868 - - uid: 44957 + pos: -33.5,55.5 + parent: 45711 + - uid: 53684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 44868 - - uid: 44958 + pos: -33.5,54.5 + parent: 45711 + - uid: 53685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 44868 - - uid: 44959 + pos: -33.5,53.5 + parent: 45711 + - uid: 53689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 44868 - - uid: 44960 + pos: -33.5,49.5 + parent: 45711 + - uid: 53690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 44868 - - uid: 48050 + pos: -33.5,48.5 + parent: 45711 + - uid: 53691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,31.5 + pos: -33.5,47.5 parent: 45711 - - uid: 48051 + - uid: 53695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,31.5 + pos: -32.5,49.5 parent: 45711 - - uid: 56177 + - uid: 53696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 56108 - - uid: 56178 + pos: -32.5,48.5 + parent: 45711 + - uid: 53697 components: - type: Transform - pos: -0.5,2.5 - parent: 56108 - - uid: 56179 + pos: -32.5,47.5 + parent: 45711 + - uid: 53701 components: - type: Transform - pos: 1.5,2.5 - parent: 56108 -- proto: ChairRitual - entities: - - uid: 11404 + pos: -31.5,49.5 + parent: 45711 + - uid: 53702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,13.5 - parent: 2 - - uid: 11405 + pos: -31.5,48.5 + parent: 45711 + - uid: 53703 components: - type: Transform - pos: -29.5,15.5 - parent: 2 - - uid: 11406 + pos: -31.5,47.5 + parent: 45711 + - uid: 53704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-78.5 - parent: 2 - - uid: 11407 + pos: -34.5,47.5 + parent: 45711 + - uid: 53705 components: - type: Transform - pos: -30.5,-74.5 - parent: 2 - - uid: 41384 + pos: -34.5,48.5 + parent: 45711 + - uid: 53706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,59.5 - parent: 2 - - uid: 41390 + pos: -34.5,49.5 + parent: 45711 + - uid: 53707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,59.5 - parent: 2 -- proto: ChairWood - entities: - - uid: 1517 + pos: -35.5,47.5 + parent: 45711 + - uid: 53708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,48.5 - parent: 2 - - uid: 1520 + pos: -35.5,48.5 + parent: 45711 + - uid: 53709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-64.5 - parent: 2 - - uid: 6791 + pos: -35.5,49.5 + parent: 45711 + - uid: 53710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 2 - - uid: 6795 + pos: -36.5,47.5 + parent: 45711 + - uid: 53711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 2 - - uid: 6888 + pos: -36.5,48.5 + parent: 45711 + - uid: 53712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-1.5 - parent: 2 - - uid: 6889 + pos: -36.5,49.5 + parent: 45711 + - uid: 53730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,0.5 - parent: 2 - - uid: 6890 + pos: -32.5,57.5 + parent: 45711 + - uid: 54076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,1.5 - parent: 2 - - uid: 6895 + rot: 3.141592653589793 rad + pos: 12.5,52.5 + parent: 45711 + - uid: 54077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 2 - - uid: 6896 + rot: 3.141592653589793 rad + pos: 12.5,48.5 + parent: 45711 + - uid: 56162 components: - type: Transform - pos: -43.5,1.5 - parent: 2 - - uid: 6897 + pos: -0.5,-0.5 + parent: 56108 + - uid: 56163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-0.5 - parent: 2 - - uid: 8050 + pos: 5.5,0.5 + parent: 56108 + - uid: 56164 components: - type: Transform - pos: -23.48965,69.58936 - parent: 2 - - uid: 8072 + pos: -0.5,-1.5 + parent: 56108 + - uid: 56165 components: - type: Transform - pos: -24.505276,69.62061 - parent: 2 - - uid: 8438 + pos: 5.5,-1.5 + parent: 56108 + - uid: 56166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-66.5 - parent: 2 - - uid: 8439 + pos: 5.5,-0.5 + parent: 56108 + - uid: 56167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-66.5 - parent: 2 - - uid: 8440 + pos: -4.5,-1.5 + parent: 56108 + - uid: 56168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-66.5 - parent: 2 - - uid: 8447 + pos: 0.5,0.5 + parent: 56108 + - uid: 56169 components: - type: Transform - pos: -3.5,-61.5 - parent: 2 - - uid: 8448 + pos: -0.5,0.5 + parent: 56108 + - uid: 56170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-62.5 - parent: 2 - - uid: 9829 + pos: -4.5,-0.5 + parent: 56108 + - uid: 56172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-63.5 - parent: 2 - - uid: 10405 + pos: -4.5,0.5 + parent: 56108 + - uid: 56173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,0.5 - parent: 2 - - uid: 10406 + pos: 0.5,-1.5 + parent: 56108 + - uid: 56174 components: - type: Transform - pos: -39.5,2.5 - parent: 2 - - uid: 10837 + pos: 1.5,0.5 + parent: 56108 + - uid: 56175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 2 - - uid: 11136 + pos: 1.5,-0.5 + parent: 56108 + - uid: 56176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-37.5 - parent: 2 - - uid: 11139 + pos: 1.5,-1.5 + parent: 56108 +- proto: Cautery + entities: + - uid: 11043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-36.5 + pos: -7.4971514,-50.514805 parent: 2 - - uid: 11409 + - uid: 11044 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-14.5 + pos: 26.627186,-30.156305 parent: 2 - - uid: 11433 +- proto: CellRechargerCircuitboard + entities: + - uid: 52077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-12.5 + pos: 16.616203,9.665211 parent: 2 - - uid: 11434 +- proto: Chainsaw + entities: + - uid: 51434 components: - type: Transform - pos: -38.5,16.5 + pos: 21.378426,-68.3473 parent: 2 - - uid: 11435 +- proto: Chair + entities: + - uid: 545 components: - type: Transform - pos: -37.5,16.5 + rot: 3.141592653589793 rad + pos: 8.5,-73.5 parent: 2 - - uid: 11436 + - uid: 709 components: - type: Transform - pos: -37.5,17.5 + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 parent: 2 - - uid: 11437 + - uid: 929 components: - type: Transform - pos: -38.5,17.5 + rot: 3.141592653589793 rad + pos: -4.5,30.5 parent: 2 - - uid: 11438 + - uid: 980 components: - type: Transform - pos: -38.5,18.5 + rot: 3.141592653589793 rad + pos: -3.5,49.5 parent: 2 - - uid: 11439 + - uid: 990 components: - type: Transform - pos: -37.5,18.5 + rot: 3.141592653589793 rad + pos: 7.5,-73.5 parent: 2 - - uid: 11440 + - uid: 2004 components: - type: Transform - pos: -37.5,19.5 + rot: -1.5707963267948966 rad + pos: -25.5,-11.5 parent: 2 - - uid: 11441 + - uid: 3985 components: - type: Transform - pos: -38.5,19.5 + pos: -8.5,-68.5 parent: 2 - - uid: 11442 + - uid: 4441 components: - type: Transform - pos: -33.5,19.5 + pos: -7.5,-68.5 parent: 2 - - uid: 11443 + - uid: 5554 components: - type: Transform - pos: -32.5,19.5 + pos: -33.5,-3.5 parent: 2 - - uid: 11444 + - uid: 5761 components: - type: Transform - pos: -32.5,18.5 + pos: 8.5,34.5 parent: 2 - - uid: 11445 + - uid: 5763 components: - type: Transform - pos: -33.5,18.5 + pos: 9.5,34.5 parent: 2 - - uid: 11446 + - uid: 5764 components: - type: Transform - pos: -33.5,17.5 + pos: 10.5,33.5 parent: 2 - - uid: 11447 + - uid: 5765 components: - type: Transform - pos: -32.5,17.5 + pos: 9.5,33.5 parent: 2 - - uid: 11448 + - uid: 5766 components: - type: Transform - pos: -32.5,16.5 + pos: 6.5,33.5 parent: 2 - - uid: 11449 + - uid: 5767 components: - type: Transform - pos: -33.5,16.5 + pos: 8.5,33.5 parent: 2 - - uid: 11457 + - uid: 6633 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,27.5 + rot: -1.5707963267948966 rad + pos: -5.5,40.5 parent: 2 - - uid: 11464 + - uid: 6773 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-36.5 + pos: -8.5,59.5 parent: 2 - - uid: 11465 + - uid: 6778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,30.5 + rot: 1.5707963267948966 rad + pos: -8.5,58.5 parent: 2 - - uid: 11466 + - uid: 6975 components: - type: Transform - pos: -13.5,32.5 + rot: 1.5707963267948966 rad + pos: -8.5,63.5 parent: 2 - - uid: 11471 + - uid: 7837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,30.5 + rot: 1.5707963267948966 rad + pos: 43.5,21.5 parent: 2 - - uid: 11475 + - uid: 7887 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,25.5 + pos: 47.5,20.5 parent: 2 - - uid: 11477 + - uid: 7889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,21.5 + parent: 2 + - uid: 7902 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,25.5 + pos: 43.5,20.5 parent: 2 - - uid: 11479 + - uid: 7961 components: - type: Transform - pos: -14.5,32.5 + rot: -1.5707963267948966 rad + pos: -34.5,-20.5 parent: 2 - - uid: 11480 + - uid: 8629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-52.5 + rot: 1.5707963267948966 rad + pos: 5.5,53.5 parent: 2 - - uid: 11483 + - uid: 11054 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,28.5 + pos: -68.5,17.5 parent: 2 - - uid: 11484 + - uid: 11055 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,29.5 + pos: -68.5,19.5 parent: 2 - - uid: 11485 + - uid: 11058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,27.5 + rot: -1.5707963267948966 rad + pos: -79.5,23.5 parent: 2 - - uid: 11486 + - uid: 11062 components: - type: Transform - pos: -18.5,30.5 + rot: -1.5707963267948966 rad + pos: -57.5,13.5 parent: 2 - - uid: 11487 + - uid: 11070 components: - type: Transform - pos: -20.5,30.5 + rot: -1.5707963267948966 rad + pos: 69.5,10.5 parent: 2 - - uid: 11488 + - uid: 11074 components: - type: Transform - pos: -19.5,30.5 + rot: 1.5707963267948966 rad + pos: 67.5,10.5 parent: 2 - - uid: 11489 + - uid: 11106 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,27.5 + pos: 27.5,-30.5 parent: 2 - - uid: 11490 + - uid: 11110 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,28.5 + pos: -55.5,8.5 parent: 2 - - uid: 11491 + - uid: 11118 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,29.5 + pos: 36.5,-36.5 parent: 2 - - uid: 11492 + - uid: 11119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-59.5 + pos: -40.5,-45.5 parent: 2 - - uid: 11493 + - uid: 11128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-59.5 + rot: 3.141592653589793 rad + pos: 27.5,-34.5 parent: 2 - - uid: 11494 + - uid: 11129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-62.5 + rot: 3.141592653589793 rad + pos: 28.5,-34.5 parent: 2 - - uid: 11495 + - uid: 11147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-62.5 + pos: 16.5,27.5 parent: 2 - - uid: 11496 + - uid: 11148 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-62.5 + pos: 16.5,26.5 parent: 2 - - uid: 11497 + - uid: 11155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-62.5 + rot: 1.5707963267948966 rad + pos: -95.5,28.5 parent: 2 - - uid: 11498 + - uid: 11156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-67.5 + rot: 1.5707963267948966 rad + pos: -25.5,13.5 parent: 2 - - uid: 11499 + - uid: 11157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-67.5 + rot: 3.141592653589793 rad + pos: -40.5,-47.5 parent: 2 - - uid: 11500 + - uid: 11166 components: - type: Transform - pos: 46.5,-66.5 + rot: -1.5707963267948966 rad + pos: -71.5,23.5 parent: 2 - - uid: 11501 + - uid: 11167 components: - type: Transform - pos: 47.5,-66.5 + rot: 1.5707963267948966 rad + pos: -80.5,21.5 parent: 2 - - uid: 11576 + - uid: 11168 components: - type: Transform - pos: -19.52329,69.54664 + rot: -1.5707963267948966 rad + pos: -78.5,21.5 parent: 2 - - uid: 11585 + - uid: 11169 components: - type: Transform - pos: -17.52329,69.51539 + rot: 1.5707963267948966 rad + pos: -73.5,23.5 parent: 2 - - uid: 11843 + - uid: 11170 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-37.5 + pos: -74.5,15.5 parent: 2 - - uid: 12218 + - uid: 11171 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,55.5 + pos: -72.5,15.5 parent: 2 - - uid: 12219 + - uid: 11172 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,56.5 + pos: -72.5,21.5 parent: 2 - - uid: 12236 + - uid: 11173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,21.5 + parent: 2 + - uid: 11174 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,54.5 + pos: -78.5,15.5 parent: 2 - - uid: 12317 + - uid: 11175 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-36.5 + pos: -80.5,15.5 parent: 2 - - uid: 18292 + - uid: 11176 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-66.5 + pos: -81.5,23.5 parent: 2 - - uid: 18447 + - uid: 11177 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,-14.5 + pos: -84.5,17.5 parent: 2 - - uid: 20750 + - uid: 11178 components: - type: Transform - pos: 23.528881,-6.5385823 + pos: -98.5,19.5 parent: 2 - - uid: 20757 + - uid: 11179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.513254,-8.101083 + rot: 1.5707963267948966 rad + pos: -77.5,13.5 parent: 2 - - uid: 20811 + - uid: 11180 components: - type: Transform - pos: -49.5,52.5 + rot: -1.5707963267948966 rad + pos: -75.5,13.5 parent: 2 - - uid: 20836 + - uid: 11181 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,43.5 + pos: -98.5,17.5 parent: 2 - - uid: 20848 + - uid: 11184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,30.5 + parent: 2 + - uid: 11185 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,68.5 + pos: -93.5,27.5 parent: 2 - - uid: 23731 + - uid: 11186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,19.5 + parent: 2 + - uid: 11190 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-59.5 + pos: -60.5,21.5 parent: 2 - - uid: 24664 + - uid: 11191 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-0.5 + pos: -62.5,21.5 parent: 2 - - uid: 28786 + - uid: 11192 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,68.5 + pos: -62.5,15.5 parent: 2 - - uid: 30118 + - uid: 11193 components: - type: Transform - pos: 29.5,16.5 + rot: -1.5707963267948966 rad + pos: -60.5,15.5 parent: 2 - - uid: 36252 + - uid: 11194 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-82.5 + pos: -54.5,15.5 parent: 2 - - uid: 36253 + - uid: 11195 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-82.5 + pos: -56.5,21.5 parent: 2 - - uid: 41355 + - uid: 11196 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,47.5 + pos: -54.5,21.5 parent: 2 - - uid: 41358 + - uid: 11197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,50.5 + rot: 1.5707963267948966 rad + pos: -56.5,15.5 parent: 2 - - uid: 41550 + - uid: 11198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,46.5 + rot: 1.5707963267948966 rad + pos: -63.5,13.5 parent: 2 - - uid: 43294 + - uid: 11199 components: - type: Transform - pos: -55.5,45.5 + rot: -1.5707963267948966 rad + pos: -61.5,13.5 parent: 2 - - uid: 43302 + - uid: 11200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,43.5 + rot: -1.5707963267948966 rad + pos: -61.5,23.5 parent: 2 - - uid: 43303 + - uid: 11201 components: - type: Transform - pos: -55.5,48.5 + rot: 1.5707963267948966 rad + pos: -63.5,23.5 parent: 2 - - uid: 43304 + - uid: 11202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,46.5 + rot: 1.5707963267948966 rad + pos: -55.5,23.5 parent: 2 - - uid: 43494 + - uid: 11203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,29.5 + rot: -1.5707963267948966 rad + pos: -53.5,23.5 parent: 2 - - uid: 43495 + - uid: 11204 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,29.5 + pos: -53.5,13.5 parent: 2 - - uid: 43496 + - uid: 11205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,28.5 + rot: 1.5707963267948966 rad + pos: -55.5,13.5 parent: 2 - - uid: 53463 + - uid: 11207 components: - type: Transform - pos: -13.130432,58.65155 - parent: 45711 - - uid: 53464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.739807,55.760925 - parent: 45711 - - uid: 53465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.536682,55.292175 - parent: 45711 - - uid: 53466 + rot: -1.5707963267948966 rad + pos: -93.5,28.5 + parent: 2 + - uid: 11225 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.208588,57.40155 - parent: 45711 -- proto: ChaplainPDA - entities: - - uid: 35978 - components: - - type: Transform - parent: 35974 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 35981 + pos: -62.5,8.5 + parent: 2 + - uid: 11230 components: - type: Transform - parent: 35974 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 43290 + rot: -1.5707963267948966 rad + pos: -22.5,-25.5 + parent: 2 + - uid: 11231 components: - type: Transform - parent: 43286 - - type: ContainerContainer - containers: - PDA-id: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - PDA-pen: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - PDA-pai: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - Cartridge-Slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - program-container: !type:Container - showEnts: False - occludes: True - ents: [] - actions: !type:Container - showEnts: False - occludes: True - ents: - - 43291 - - type: UnpoweredFlashlight - toggleActionEntity: 43291 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: InsideEntityStorage -- proto: CheapLighter - entities: - - uid: 11124 + rot: -1.5707963267948966 rad + pos: -22.5,-26.5 + parent: 2 + - uid: 11233 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.4753,32.512047 + pos: -92.5,-13.5 parent: 2 - - uid: 11502 + - uid: 11234 components: - type: Transform - pos: 6.00209,-34.436802 + rot: -1.5707963267948966 rad + pos: -92.5,-15.5 parent: 2 - - uid: 43261 + - uid: 11242 components: - type: Transform - pos: -64.23598,-0.4107522 + rot: 3.141592653589793 rad + pos: -54.5,-12.5 parent: 2 -- proto: CheapRollerBed - entities: - - uid: 11503 + - uid: 11243 components: - type: Transform - pos: 10.396281,-52.22435 + pos: -54.5,-9.5 parent: 2 - - uid: 24368 + - uid: 11244 components: - type: Transform - pos: -5.4519567,-43.42959 + pos: -7.5,-15.5 parent: 2 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 13427 + - uid: 11245 components: - type: Transform - pos: 3.45709,-41.276978 + pos: -8.5,-15.5 parent: 2 -- proto: CheckerBoard - entities: - - uid: 3123 + - uid: 11249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.487907,36.533287 + pos: -84.5,-21.5 parent: 2 - - uid: 6982 + - uid: 11250 components: - type: Transform - pos: -61.451828,0.58980817 + pos: -85.5,-21.5 parent: 2 - - uid: 11507 + - uid: 11251 components: - type: Transform - pos: -73.45303,21.616426 + pos: -86.5,-21.5 parent: 2 -- proto: chem_master - entities: - - uid: 1322 + - uid: 11252 components: - type: Transform - pos: 13.5,-41.5 + pos: -82.5,-21.5 parent: 2 - - uid: 11508 + - uid: 11254 components: - type: Transform - pos: 10.5,-36.5 + rot: 1.5707963267948966 rad + pos: 78.5,2.5 parent: 2 - - uid: 11517 + - uid: 11255 components: - type: Transform - pos: 15.5,-34.5 + rot: 1.5707963267948966 rad + pos: 78.5,1.5 parent: 2 -- proto: ChemBag - entities: - - uid: 43985 + - uid: 11256 components: - type: Transform - parent: 129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 43986 + pos: 18.5,40.5 + parent: 2 + - uid: 11257 components: - type: Transform - parent: 129 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ChemDispenser - entities: - - uid: 11511 + pos: 19.5,40.5 + parent: 2 + - uid: 11258 components: - type: Transform - pos: 8.5,-36.5 + pos: 20.5,40.5 parent: 2 - - uid: 11518 + - uid: 11260 components: - type: Transform - pos: 14.5,-34.5 + rot: 1.5707963267948966 rad + pos: 78.5,0.5 parent: 2 - - uid: 12041 + - uid: 11265 components: - type: Transform - pos: 11.5,-41.5 + pos: 36.5,-39.5 parent: 2 -- proto: ChemDispenserMachineCircuitboard - entities: - - uid: 43330 + - uid: 11266 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.495434,52.323933 + pos: 36.5,-41.5 parent: 2 -- proto: ChemicalPayload - entities: - - uid: 142 + - uid: 11267 components: - type: Transform - pos: 55.35402,-24.41992 + pos: 34.5,-64.5 parent: 2 - - uid: 15348 + - uid: 11268 components: - type: Transform - pos: 80.766815,-45.586338 + rot: 3.141592653589793 rad + pos: 43.5,-67.5 parent: 2 - - uid: 15349 + - uid: 11917 components: - type: Transform - pos: 80.766815,-45.586338 + pos: 7.5,-70.5 parent: 2 - - uid: 22632 + - uid: 12806 components: - type: Transform - pos: 55.588394,-24.279295 + rot: 1.5707963267948966 rad + pos: 39.5,4.5 parent: 2 - - uid: 52232 + - uid: 13375 components: - type: Transform - parent: 52231 - - type: ContainerContainer - containers: - BeakerSlotA: !type:ContainerSlot - showEnts: False - occludes: True - ent: 52233 - BeakerSlotB: !type:ContainerSlot - showEnts: False - occludes: True - ent: 52235 - - type: Physics - canCollide: False - - uid: 52337 + rot: 1.5707963267948966 rad + pos: -53.5,50.5 + parent: 2 + - uid: 14164 components: - type: Transform - parent: 52336 - - type: ContainerContainer - containers: - BeakerSlotA: !type:ContainerSlot - showEnts: False - occludes: True - ent: 52338 - BeakerSlotB: !type:ContainerSlot - showEnts: False - occludes: True - ent: 52340 - - type: Physics - canCollide: False -- proto: ChemistryHotplate - entities: - - uid: 33548 + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - uid: 14886 components: - type: Transform - pos: 1.5,23.5 - parent: 33049 - - uid: 42705 + rot: 3.141592653589793 rad + pos: -1.5,-73.5 + parent: 2 + - uid: 15145 components: - type: Transform - pos: 12.5,-35.5 + rot: -1.5707963267948966 rad + pos: -45.5,39.5 parent: 2 -- proto: ChessBoard - entities: - - uid: 11521 + - uid: 18053 components: - type: Transform - pos: -80.519226,23.553926 + rot: 1.5707963267948966 rad + pos: -44.5,-19.5 parent: 2 - - uid: 11522 + - uid: 18138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.506212,33.573555 + pos: -4.5,33.5 parent: 2 - - uid: 11523 + - uid: 19588 components: - type: Transform - pos: -62.56171,-22.43355 + rot: -1.5707963267948966 rad + pos: -45.5,36.5 parent: 2 - - uid: 11525 + - uid: 20263 components: - type: Transform - pos: -40.480328,-46.39786 + pos: 12.5,51.5 parent: 2 - - uid: 19632 + - uid: 20309 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.445745,54.7132 + pos: 8.5,61.5 parent: 2 - - uid: 21787 + - uid: 20310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.49514,-30.353746 + pos: 8.5,67.5 parent: 2 - - uid: 27611 + - uid: 20856 components: - type: Transform - pos: 23.53032,-7.4718466 + rot: 1.5707963267948966 rad + pos: -8.5,64.5 parent: 2 - - uid: 33549 + - uid: 20861 components: - type: Transform - pos: 1.5749079,-12.352028 - parent: 33049 - - uid: 37313 + pos: -5.5,33.5 + parent: 2 + - uid: 21077 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.4070816,14.653305 - parent: 36861 - - uid: 37314 + pos: 7.5,59.5 + parent: 2 + - uid: 21440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.499329,-3.4421844 - parent: 36861 - - uid: 41269 + pos: 4.5,33.5 + parent: 2 + - uid: 21445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5385562,68.52046 + pos: 1.5,42.5 parent: 2 -- proto: ChurchOrganInstrument - entities: - - uid: 11527 + - uid: 21515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,14.5 + pos: 10.5,34.5 parent: 2 - - uid: 20944 + - uid: 21517 components: - type: Transform - pos: -49.5,51.5 + pos: 6.5,34.5 parent: 2 -- proto: Cigar - entities: - - uid: 11528 + - uid: 21518 components: - type: Transform - pos: -87.64427,17.676527 + pos: 5.5,33.5 parent: 2 - - uid: 11529 + - uid: 21539 components: - type: Transform - pos: -42.61094,33.52837 + pos: 5.5,34.5 parent: 2 - - uid: 45343 - components: - - type: Transform - parent: 1778 - - type: Physics - canCollide: False - - uid: 45344 + - uid: 21540 components: - type: Transform - parent: 1778 - - type: Physics - canCollide: False -- proto: CigarCase - entities: - - uid: 43258 + pos: 4.5,34.5 + parent: 2 + - uid: 21776 components: - type: Transform - pos: -64.64223,-0.36387715 + rot: 3.141592653589793 rad + pos: 6.5,-73.5 parent: 2 -- proto: Cigarette - entities: - - uid: 53104 + - uid: 21886 components: - type: Transform - pos: 3.8372192,74.664 - parent: 45711 - - uid: 53105 + rot: 1.5707963267948966 rad + pos: -2.5,42.5 + parent: 2 + - uid: 21906 components: - type: Transform - pos: 3.9778442,74.80463 - parent: 45711 - - uid: 53108 + rot: 1.5707963267948966 rad + pos: -2.5,40.5 + parent: 2 + - uid: 22528 components: - type: Transform - pos: 4.040283,74.71088 - parent: 45711 -- proto: CigaretteSpent - entities: - - uid: 11530 + pos: 66.5,-43.5 + parent: 2 + - uid: 22538 components: - type: Transform - pos: -13.127119,50.209507 + pos: 65.5,-43.5 parent: 2 - - uid: 22063 + - uid: 23369 components: - type: Transform - pos: 6.0923905,43.316257 + rot: 3.141592653589793 rad + pos: -6.5,30.5 parent: 2 - - uid: 22170 + - uid: 23704 components: - type: Transform - pos: 5.983016,43.785007 + rot: 3.141592653589793 rad + pos: -5.5,30.5 parent: 2 - - uid: 22242 + - uid: 23746 components: - type: Transform - pos: 6.4986405,43.878757 + rot: 3.141592653589793 rad + pos: 29.5,-34.5 parent: 2 - - uid: 51259 + - uid: 24305 components: - type: Transform - pos: 22.919392,-55.62912 + rot: 1.5707963267948966 rad + pos: 5.5,52.5 parent: 2 - - uid: 51260 + - uid: 25560 components: - type: Transform - pos: 22.935017,-63.00412 + rot: 3.141592653589793 rad + pos: -37.5,6.5 parent: 2 - - uid: 51261 + - uid: 26073 components: - type: Transform - pos: 26.477486,-57.10799 + rot: 3.141592653589793 rad + pos: -4.5,49.5 parent: 2 -- proto: CigaretteSyndicate - entities: - - uid: 11531 + - uid: 26857 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.824432,-64.72057 + pos: 1.5,40.5 parent: 2 - - uid: 53110 + - uid: 27503 components: - type: Transform - pos: 3.8840942,74.7265 - parent: 45711 - - uid: 53111 + pos: 45.5,1.5 + parent: 2 + - uid: 27509 components: - type: Transform - pos: 4.118454,74.64838 - parent: 45711 -- proto: CigarGold - entities: - - uid: 37315 + pos: 47.5,1.5 + parent: 2 + - uid: 28243 components: - type: Transform - pos: 30.286804,9.392014 - parent: 36861 -- proto: CigarGoldCase - entities: - - uid: 720 + pos: -6.5,33.5 + parent: 2 + - uid: 28782 components: - type: Transform - pos: 4.521619,-7.445432 + pos: -47.5,-33.5 parent: 2 - - uid: 11532 + - uid: 28811 components: - type: Transform - parent: 1899 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CigarGoldSpent - entities: - - uid: 44077 + pos: -45.5,-33.5 + parent: 2 + - uid: 28914 components: - type: Transform - pos: 59.631622,-14.511962 + rot: 3.141592653589793 rad + pos: 2.5,49.5 parent: 2 -- proto: CigCartonBlack - entities: - - uid: 882 + - uid: 30145 components: - type: Transform - pos: -74.486,-8.413053 + rot: 3.141592653589793 rad + pos: -70.5,-8.5 parent: 2 -- proto: CigCartonRed - entities: - - uid: 11537 + - uid: 30176 components: - type: Transform - pos: 6.446739,-34.561832 + rot: 3.141592653589793 rad + pos: -69.5,-8.5 parent: 2 -- proto: CigPackBlue - entities: - - uid: 9948 + - uid: 30197 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.577492,32.760345 + pos: 40.5,69.5 parent: 2 -- proto: CigPackSyndicate - entities: - - uid: 29755 + - uid: 30205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.541714,-49.594395 + rot: 1.5707963267948966 rad + pos: 38.5,69.5 parent: 2 -- proto: CircuitImprinter - entities: - - uid: 18070 + - uid: 30207 components: - type: Transform - pos: 11.5,-15.5 + rot: 3.141592653589793 rad + pos: 39.5,68.5 parent: 2 -- proto: ClarinetInstrument - entities: - - uid: 11540 + - uid: 30781 components: - type: Transform - pos: 25.77102,-39.29504 + pos: -29.5,-31.5 parent: 2 -- proto: CleanerDispenser - entities: - - uid: 43483 + - uid: 31017 components: - type: Transform - pos: -48.5,31.5 + pos: -28.5,-31.5 parent: 2 -- proto: ClearPDA - entities: - - uid: 45402 + - uid: 31917 components: - type: Transform - pos: -1.746522,-1.3002565 - parent: 43176 -- proto: ClockworkGrille - entities: - - uid: 56180 + rot: 3.141592653589793 rad + pos: 12.5,53.5 + parent: 2 + - uid: 32888 components: - type: Transform - pos: -0.5,6.5 - parent: 56108 - - uid: 56181 + rot: 3.141592653589793 rad + pos: 1.5,49.5 + parent: 2 + - uid: 33544 components: - type: Transform - pos: 0.5,6.5 - parent: 56108 - - uid: 56182 + rot: 1.5707963267948966 rad + pos: -2.5,22.5 + parent: 33049 + - uid: 33545 components: - type: Transform - pos: 1.5,6.5 - parent: 56108 - - uid: 56183 + rot: 1.5707963267948966 rad + pos: -2.5,23.5 + parent: 33049 + - uid: 33546 components: - type: Transform - pos: -1.5,5.5 - parent: 56108 - - uid: 56184 + rot: -1.5707963267948966 rad + pos: -0.5,22.5 + parent: 33049 + - uid: 33547 components: - type: Transform - pos: 2.5,5.5 - parent: 56108 - - uid: 56185 + pos: -1.5,24.5 + parent: 33049 + - uid: 35038 components: - type: Transform - pos: -3.5,-1.5 - parent: 56108 - - uid: 56186 + rot: -1.5707963267948966 rad + pos: -23.5,11.5 + parent: 34641 + - uid: 35039 components: - type: Transform - pos: 4.5,-1.5 - parent: 56108 - - uid: 56187 + rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 34641 + - uid: 35131 components: - type: Transform - pos: -3.5,0.5 - parent: 56108 - - uid: 56188 + pos: 8.5,-70.5 + parent: 2 + - uid: 35443 components: - type: Transform - pos: 4.5,0.5 - parent: 56108 -- proto: ClockworkGrilleDiagonal - entities: - - uid: 56189 + rot: 1.5707963267948966 rad + pos: -55.5,34.5 + parent: 2 + - uid: 35445 components: - type: Transform - pos: -1.5,6.5 - parent: 56108 - - uid: 56190 + rot: 1.5707963267948966 rad + pos: -55.5,37.5 + parent: 2 + - uid: 35468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,6.5 - parent: 56108 -- proto: CloningConsoleComputerCircuitboard - entities: - - uid: 35040 + pos: -11.5,30.5 + parent: 2 + - uid: 35474 components: - type: Transform - pos: -17.579132,4.0208464 - parent: 34641 -- proto: CloningPod - entities: - - uid: 31897 + rot: 3.141592653589793 rad + pos: -11.5,28.5 + parent: 2 + - uid: 35664 components: - type: Transform - pos: 10.5,-54.5 + pos: -33.5,-33.5 parent: 2 -- proto: ClosetBombFilled - entities: - - uid: 11557 + - uid: 35670 components: - type: Transform - pos: -39.5,-25.5 + pos: -34.5,-33.5 parent: 2 - - uid: 11558 + - uid: 35673 components: - type: Transform - pos: -40.5,-25.5 + rot: 3.141592653589793 rad + pos: -34.5,-35.5 parent: 2 - - uid: 15318 + - uid: 35675 components: - type: Transform - pos: 78.5,-47.5 + rot: 3.141592653589793 rad + pos: -33.5,-35.5 parent: 2 - - uid: 15319 + - uid: 37304 components: - type: Transform - pos: 80.5,-41.5 - parent: 2 - - uid: 21258 + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 36861 + - uid: 37305 components: - type: Transform - pos: 50.5,-24.5 + rot: -1.5707963267948966 rad + pos: 2.5,18.5 + parent: 36861 + - uid: 37306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 36861 + - uid: 37307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 36861 + - uid: 37308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 36861 + - uid: 41242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,65.5 parent: 2 - - uid: 47702 + - uid: 41604 components: - type: Transform - pos: 48.5,-24.5 + rot: 3.141592653589793 rad + pos: 99.5,42.5 parent: 2 -- proto: ClosetChefFilled - entities: - - uid: 11090 + - uid: 43352 components: - type: Transform - pos: -31.5,30.5 + rot: 1.5707963267948966 rad + pos: 48.5,73.5 parent: 2 -- proto: ClosetEmergency - entities: - - uid: 11562 + - uid: 43541 components: - type: Transform - pos: -19.5,-56.5 + rot: 1.5707963267948966 rad + pos: -59.5,13.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 20.73429 - - 78.00041 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 33570 + - uid: 44557 components: - type: Transform - pos: -0.5,-19.5 - parent: 33049 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 6247 + pos: 65.5,-52.5 + parent: 2 + - uid: 44622 components: - type: Transform - pos: 51.5,11.5 + rot: -1.5707963267948966 rad + pos: 72.5,-34.5 parent: 2 - - uid: 8126 + - uid: 44623 components: - type: Transform - pos: -44.5,-30.5 + rot: 3.141592653589793 rad + pos: 65.5,-23.5 parent: 2 - - uid: 8741 + - uid: 45136 components: - type: Transform - pos: 36.5,7.5 + rot: -1.5707963267948966 rad + pos: 29.5,45.5 + parent: 45711 + - uid: 45401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 43176 + - uid: 47580 + components: + - type: Transform + pos: 25.5,-24.5 parent: 2 - - uid: 11544 + - uid: 48030 components: - type: Transform - pos: -2.5,3.5 + rot: -1.5707963267948966 rad + pos: -8.5,29.5 + parent: 45711 + - uid: 51088 + components: + - type: Transform + pos: 6.5,-70.5 parent: 2 - - uid: 11545 + - uid: 51103 components: - type: Transform - pos: 1.5,3.5 + rot: -1.5707963267948966 rad + pos: 1.5,-65.5 parent: 2 - - uid: 11547 + - uid: 51104 components: - type: Transform - pos: -2.5,37.5 + rot: -1.5707963267948966 rad + pos: 1.5,-66.5 parent: 2 - - uid: 11554 + - uid: 52890 components: - type: Transform - pos: -24.5,-39.5 + pos: -5.5,71.5 + parent: 45711 + - uid: 53037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,72.5 + parent: 45711 + - uid: 53042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,70.5 + parent: 45711 + - uid: 53043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,71.5 + parent: 45711 + - uid: 53044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,69.5 + parent: 45711 + - uid: 53050 + components: + - type: Transform + pos: 2.5,70.5 + parent: 45711 + - uid: 53408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,43.5 + parent: 45711 + - uid: 53537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,53.5 + parent: 45711 + - uid: 54117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,42.5 + parent: 45711 + - uid: 54118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 45711 + - uid: 54119 + components: + - type: Transform + pos: 26.5,44.5 + parent: 45711 + - uid: 56058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,56.5 + parent: 45711 + - uid: 56059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,55.5 + parent: 45711 +- proto: ChairCarp + entities: + - uid: 7045 + components: + - type: Transform + pos: -25.5,19.5 parent: 2 - - uid: 11556 + - uid: 11269 components: - type: Transform - pos: -51.5,16.5 + pos: 37.5,-54.5 parent: 2 - - uid: 11559 + - uid: 40964 components: - type: Transform - pos: 10.5,-31.5 + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 40952 + - uid: 40965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 40952 + - uid: 41680 + components: + - type: Transform + pos: 104.5,53.5 parent: 2 - - uid: 11560 + - uid: 44547 components: - type: Transform - pos: -54.5,-14.5 + rot: -1.5707963267948966 rad + pos: 68.5,-31.5 parent: 2 - - uid: 11564 + - uid: 48031 components: - type: Transform - pos: -42.5,16.5 + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 45711 + - uid: 53289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,62.5 + parent: 45711 + - uid: 53290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,61.5 + parent: 45711 +- proto: ChairFolding + entities: + - uid: 5569 + components: + - type: Transform + pos: -42.519722,-8.539805 parent: 2 - - uid: 11565 + - uid: 11270 components: - type: Transform - anchored: True - pos: 25.5,21.5 + rot: 1.5707963267948966 rad + pos: -18.5,-66.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 11566 + - uid: 11271 components: - type: Transform - pos: -22.5,-39.5 + rot: 3.141592653589793 rad + pos: -17.5,-67.5 parent: 2 - - uid: 11569 + - uid: 11272 components: - type: Transform - pos: -33.5,32.5 + rot: 1.5707963267948966 rad + pos: -44.5,33.5 parent: 2 - - uid: 11571 + - uid: 11273 components: - type: Transform - pos: 19.5,-38.5 + rot: 3.141592653589793 rad + pos: -43.5,32.5 parent: 2 - - uid: 11572 + - uid: 11274 components: - type: Transform - pos: -46.5,-57.5 + pos: -43.5,34.5 parent: 2 - - uid: 11573 + - uid: 11275 components: - type: Transform - pos: -26.5,-52.5 + rot: 3.141592653589793 rad + pos: -42.5,12.5 parent: 2 - - uid: 11574 + - uid: 11276 components: - type: Transform - pos: -44.5,20.5 + rot: 3.141592653589793 rad + pos: -41.5,32.5 parent: 2 - - uid: 11575 + - uid: 11278 components: - type: Transform - pos: -31.559963,13.663682 + pos: 42.5,10.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 25.826561 - - 97.15705 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11578 + - uid: 11279 components: - type: Transform - pos: -65.5,13.5 + rot: -1.5707963267948966 rad + pos: -94.8649,-7.9212456 parent: 2 - - uid: 11581 + - uid: 11726 components: - type: Transform - pos: -83.5,23.5 + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 parent: 2 - - uid: 11582 + - uid: 20562 components: - type: Transform - pos: -76.5,8.5 + rot: 1.5707963267948966 rad + pos: 19.809464,35.64511 parent: 2 - - uid: 11583 + - uid: 22231 components: - type: Transform - pos: -76.5,1.5 + rot: 1.5707963267948966 rad + pos: -14.528583,-13.079637 parent: 2 - - uid: 11584 + - uid: 31206 components: - type: Transform - pos: -90.5,-20.5 + rot: -1.5707963267948966 rad + pos: -4.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 - - uid: 11587 + - uid: 32262 components: - type: Transform - pos: -40.5,26.5 + rot: -1.5707963267948966 rad + pos: -10.5,53.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 20.73429 - - 78.00041 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11589 + - uid: 32267 components: - type: Transform - pos: 34.5,-59.5 + rot: 1.5707963267948966 rad + pos: -12.5,53.5 parent: 2 - - uid: 11596 + - uid: 47615 components: - type: Transform - pos: -95.5,45.5 + pos: 23.645405,-2.6885324 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1498 - moles: - - 5.8990684 - - 22.191732 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11599 + - uid: 47800 components: - type: Transform - pos: -75.5,45.5 + rot: 1.5707963267948966 rad + pos: -19.157816,-29.97679 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1498 - moles: - - 2.2179158 - - 8.343588 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11600 + - uid: 48032 components: - type: Transform - pos: -59.5,45.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1498 - moles: - - 2.2179158 - - 8.343588 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11601 + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 45711 + - uid: 48033 components: - type: Transform - pos: -77.5,43.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1498 - moles: - - 2.2179158 - - 8.343588 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11602 + pos: 11.5,15.5 + parent: 45711 + - uid: 48034 components: - type: Transform - pos: -93.5,43.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1498 - moles: - - 5.8990684 - - 22.191732 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11603 + rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 45711 + - uid: 51505 components: - type: Transform - pos: -57.5,43.5 + rot: 1.5707963267948966 rad + pos: 17.5,-68.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1498 - moles: - - 2.2179158 - - 8.343588 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11604 + - uid: 51506 components: - type: Transform - pos: 36.5,58.5 + rot: 1.5707963267948966 rad + pos: 17.5,-67.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 23.269733 - - 87.53851 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11605 + - uid: 51621 components: - type: Transform - pos: 42.5,58.5 + rot: 1.5707963267948966 rad + pos: 38.5,9.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 292.86633 - moles: - - 14.490321 - - 54.511215 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11695 + - uid: 53047 components: - type: Transform - pos: 40.5,-47.5 - parent: 2 - - uid: 19809 + rot: -1.5707963267948966 rad + pos: -0.808197,72.04266 + parent: 45711 + - uid: 53048 components: - type: Transform - pos: 54.5,39.5 - parent: 2 - - uid: 20359 + rot: 3.141592653589793 rad + pos: 4.4105377,69.48016 + parent: 45711 + - uid: 53049 components: - type: Transform - pos: -46.5,32.5 - parent: 2 - - uid: 20993 + pos: 6.676193,71.93329 + parent: 45711 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 2631 components: - type: Transform - pos: 16.5,42.5 + pos: 20.414936,-35.27168 parent: 2 - - uid: 22107 + - uid: 11281 components: - type: Transform - pos: -10.5,-71.5 + pos: 24.410307,-29.27056 parent: 2 - - uid: 27390 + - uid: 18064 components: - type: Transform - pos: -14.5,63.5 + pos: -29.13488,-36.453384 parent: 2 - - uid: 28506 + - uid: 19019 components: - type: Transform - pos: -17.5,-72.5 + pos: -30.541134,-36.85963 parent: 2 - - uid: 36143 + - uid: 20513 components: - type: Transform - pos: -37.5,-74.5 + pos: 21.028214,34.660732 parent: 2 - - uid: 37316 + - uid: 22689 components: - type: Transform - pos: 13.5,15.5 - parent: 36861 - - uid: 41659 + rot: -1.5707963267948966 rad + pos: -52.624104,34.251617 + parent: 2 + - uid: 25810 components: - type: Transform - pos: 31.5,-43.5 + rot: -1.5707963267948966 rad + pos: -53.38973,35.032867 parent: 2 - - uid: 43723 + - uid: 36634 components: - type: Transform - pos: -36.5,49.5 + pos: 20.715714,34.129482 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 - - uid: 43724 + - uid: 43839 components: - type: Transform - pos: -53.5,39.5 + pos: -34.92811,62.13869 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 - - uid: 43744 + - uid: 43840 components: - type: Transform - pos: -10.5,51.5 + pos: -31.068733,58.373066 parent: 2 - - uid: 44558 + - uid: 47801 components: - type: Transform - pos: 53.5,-48.5 + pos: -20.14219,-30.367414 parent: 2 - - uid: 44563 + - uid: 53045 components: - type: Transform - pos: 72.5,-41.5 - parent: 2 - - uid: 44568 + pos: 0.09803772,69.16766 + parent: 45711 + - uid: 53046 components: - type: Transform - pos: 69.5,-25.5 - parent: 2 - - uid: 44619 + pos: 4.5980377,72.33954 + parent: 45711 +- proto: ChairGreyscale + entities: + - uid: 988 components: - type: Transform - pos: 73.5,-27.5 + rot: 1.5707963267948966 rad + pos: 14.5,-61.5 parent: 2 - - uid: 44694 + - uid: 11045 components: - type: Transform - pos: 47.5,-18.5 + pos: 5.5,-33.5 parent: 2 - - uid: 46560 + - uid: 11053 components: - type: Transform - pos: -16.5,-8.5 - parent: 45711 - - uid: 47606 + rot: 1.5707963267948966 rad + pos: 13.5,-45.5 + parent: 2 + - uid: 11056 components: - type: Transform - pos: 28.5,-2.5 + pos: -9.5,-47.5 parent: 2 - - uid: 48052 + - uid: 11114 components: - type: Transform - pos: -15.5,14.5 - parent: 45711 - - uid: 48053 + rot: -1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 2 + - uid: 11115 components: - type: Transform - pos: -13.5,16.5 - parent: 45711 - - uid: 48054 + rot: -1.5707963267948966 rad + pos: -9.5,-42.5 + parent: 2 + - uid: 11116 components: - type: Transform - pos: 22.5,6.5 - parent: 45711 - - uid: 51620 + pos: -17.5,-39.5 + parent: 2 + - uid: 11120 components: - type: Transform - pos: 38.5,11.5 + pos: -8.5,-47.5 parent: 2 - - uid: 53551 + - uid: 11133 components: - type: Transform - pos: -7.5,52.5 - parent: 45711 - - uid: 53552 + pos: -7.5,-47.5 + parent: 2 + - uid: 11134 components: - type: Transform - pos: -14.5,46.5 - parent: 45711 - - uid: 54070 + rot: 3.141592653589793 rad + pos: -6.5,-43.5 + parent: 2 + - uid: 11137 components: - type: Transform - pos: 12.5,47.5 - parent: 45711 - - uid: 56042 + rot: 3.141592653589793 rad + pos: -7.5,-43.5 + parent: 2 + - uid: 11138 components: - type: Transform - pos: 19.5,46.5 - parent: 45711 -- proto: ClosetFire - entities: - - uid: 11613 + pos: -10.5,-47.5 + parent: 2 + - uid: 11882 components: - type: Transform - pos: -39.5,-52.5 + rot: -1.5707963267948966 rad + pos: 6.5,-49.5 parent: 2 -- proto: ClosetFireFilled - entities: - - uid: 360 + - uid: 15293 components: - type: Transform - pos: 15.5,42.5 + pos: -15.5,-39.5 parent: 2 - - uid: 4193 + - uid: 23274 components: - type: Transform - pos: 48.5,8.5 + rot: 1.5707963267948966 rad + pos: 4.5,-46.5 parent: 2 - - uid: 11455 + - uid: 23523 components: - type: Transform - pos: 9.5,-13.5 + rot: -1.5707963267948966 rad + pos: -65.5,-6.5 parent: 2 - - uid: 11594 + - uid: 23527 components: - type: Transform - pos: -18.5,-56.5 + rot: -1.5707963267948966 rad + pos: -65.5,-7.5 parent: 2 - - uid: 11598 + - uid: 25028 components: - type: Transform - pos: 39.5,-47.5 + rot: 1.5707963267948966 rad + pos: 4.5,-44.5 parent: 2 - - uid: 11606 + - uid: 26638 components: - type: Transform - pos: 11.5,-31.5 + rot: -1.5707963267948966 rad + pos: 6.5,-50.5 parent: 2 - - uid: 11609 + - uid: 33025 components: - type: Transform - pos: -44.5,16.5 + pos: -13.5,-44.5 parent: 2 - - uid: 11612 + - uid: 41603 components: - type: Transform - pos: -51.5,20.5 + pos: 99.5,44.5 parent: 2 - - uid: 11614 +- proto: ChairOfficeDark + entities: + - uid: 173 components: - type: Transform - pos: -42.5,15.5 + rot: 1.5707963267948966 rad + pos: -48.5,-51.5 parent: 2 - - uid: 11615 + - uid: 701 components: - type: Transform - pos: 20.5,-38.5 + rot: 1.5707963267948966 rad + pos: -27.41905,-10.891795 parent: 2 - - uid: 11616 + - uid: 722 components: - type: Transform - pos: 46.5,5.5 + pos: 2.7950473,-2.309985 parent: 2 - - uid: 11617 + - uid: 825 components: - type: Transform - pos: -34.5,32.5 + rot: -1.5707963267948966 rad + pos: -33.318207,-5.1766915 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 20.73429 - - 78.00041 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11618 + - uid: 4059 components: - type: Transform - pos: 1.5,37.5 + rot: -1.5707963267948966 rad + pos: -41.5,-19.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 20.73429 - - 78.00041 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11619 + - uid: 7949 components: - type: Transform - pos: -26.5,-49.5 + rot: 1.5707963267948966 rad + pos: -36.62803,-20.307697 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 23.269733 - - 87.53851 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11620 + - uid: 8534 components: - type: Transform - pos: -69.5,23.5 + rot: -1.5707963267948966 rad + pos: 27.5,11.5 parent: 2 - - uid: 11621 + - uid: 9621 components: - type: Transform - pos: -39.5,12.5 + rot: -1.5707963267948966 rad + pos: 11.5,29.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 20.73429 - - 78.00041 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11622 + - uid: 9963 components: - type: Transform - pos: -90.5,13.5 + rot: 1.5707963267948966 rad + pos: -14.5,18.5 parent: 2 - - uid: 11623 + - uid: 11141 components: - type: Transform - pos: -83.5,8.5 + pos: 12.5,-14.5 parent: 2 - - uid: 11627 + - uid: 11143 components: - type: Transform - pos: -83.5,1.5 + rot: 1.5707963267948966 rad + pos: 3.5,30.5 parent: 2 - - uid: 11630 + - uid: 11282 components: - type: Transform - pos: -91.5,-19.5 + rot: 3.141592653589793 rad + pos: 57.5,5.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 - - uid: 11637 + - uid: 11288 components: - type: Transform - pos: -47.5,-6.5 + rot: 1.5707963267948966 rad + pos: -26.5,-19.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 20.73429 - - 78.00041 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11641 + - uid: 11289 components: - type: Transform - pos: -59.5,43.5 + rot: -1.5707963267948966 rad + pos: -4.5,-16.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1498 - moles: - - 2.2179158 - - 8.343588 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11642 + - uid: 11290 components: - type: Transform - pos: -75.5,43.5 + rot: 1.5707963267948966 rad + pos: -12.5,-38.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1498 - moles: - - 2.2179158 - - 8.343588 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11643 + - uid: 11294 components: - type: Transform - pos: -95.5,43.5 + rot: 3.141592653589793 rad + pos: -3.5,-23.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1498 - moles: - - 5.8990684 - - 22.191732 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11644 + - uid: 11295 components: - type: Transform - pos: 30.5,-62.5 + rot: 1.5707963267948966 rad + pos: -24.5,-2.5 parent: 2 - - uid: 18796 + - uid: 11296 components: - type: Transform - pos: 56.5,39.5 + pos: 50.5,3.5 parent: 2 - - uid: 22103 + - uid: 11298 components: - type: Transform - pos: -9.5,-72.5 + rot: -1.5707963267948966 rad + pos: 68.5,6.5 parent: 2 - - uid: 23291 + - uid: 11299 components: - type: Transform - pos: -47.5,32.5 + pos: -8.5,-38.5 parent: 2 - - uid: 29915 + - uid: 11302 components: - type: Transform - pos: 23.5,-11.5 + pos: 59.5,-41.5 parent: 2 - - uid: 37317 + - uid: 11308 components: - type: Transform - pos: 8.5,15.5 - parent: 36861 - - uid: 41662 + rot: -1.5707963267948966 rad + pos: -26.5,-3.5 + parent: 2 + - uid: 11312 components: - type: Transform - pos: 31.5,-50.5 + pos: 24.5,4.5 parent: 2 - - uid: 43720 + - uid: 11317 components: - type: Transform - pos: -42.5,43.5 + pos: -4.5,-25.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 - - uid: 43721 + - uid: 11319 components: - type: Transform - pos: -36.5,50.5 + rot: -1.5707963267948966 rad + pos: 8.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 - - uid: 43722 + - uid: 11321 components: - type: Transform - pos: -14.5,62.5 + rot: 3.141592653589793 rad + pos: -1.46825,0.7222955 parent: 2 - - uid: 43743 + - uid: 11325 components: - type: Transform - pos: -11.5,51.5 + pos: 37.5,68.5 parent: 2 - - uid: 44561 + - uid: 11327 components: - type: Transform - pos: 55.5,-49.5 + rot: -1.5707963267948966 rad + pos: 41.5,69.5 parent: 2 - - uid: 44562 + - uid: 11330 components: - type: Transform - pos: 70.5,-41.5 + rot: -1.5707963267948966 rad + pos: -6.5,-16.5 parent: 2 - - uid: 44569 + - uid: 11331 components: - type: Transform - pos: 69.5,-26.5 + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 parent: 2 - - uid: 44695 + - uid: 11332 components: - type: Transform - pos: 48.5,-18.5 + rot: 1.5707963267948966 rad + pos: -9.5,-16.5 parent: 2 - - uid: 47607 + - uid: 11334 components: - type: Transform - pos: 30.5,-9.5 + rot: 3.141592653589793 rad + pos: -8.5,-17.5 parent: 2 - - uid: 48055 + - uid: 11337 components: - type: Transform - pos: -16.5,14.5 - parent: 45711 - - uid: 51094 + rot: 1.5707963267948966 rad + pos: -26.5,-27.5 + parent: 2 + - uid: 11338 components: - type: Transform - pos: -0.5,-63.5 + rot: 1.5707963267948966 rad + pos: 36.5,-55.5 parent: 2 -- proto: ClosetJanitorFilled - entities: - - uid: 19625 + - uid: 11427 components: - type: Transform - pos: -51.5,30.5 + rot: 1.5707963267948966 rad + pos: 11.5,-40.5 parent: 2 - - uid: 48056 + - uid: 11864 components: - type: Transform - pos: 20.5,13.5 - parent: 45711 -- proto: ClosetL3 - entities: - - uid: 3861 + rot: 1.5707963267948966 rad + pos: -1.53075,2.6129205 + parent: 2 + - uid: 15440 components: - type: Transform - pos: 26.5,-59.5 + rot: 3.141592653589793 rad + pos: -13.5,-46.5 parent: 2 - - uid: 9675 + - uid: 15755 components: - type: Transform - pos: 28.5,-59.5 + rot: -1.5707963267948966 rad + pos: 11.5,30.5 parent: 2 -- proto: ClosetL3Filled - entities: - - uid: 3981 + - uid: 19126 components: - type: Transform - pos: 27.5,-59.5 + rot: 1.5707963267948966 rad + pos: -1.53075,3.64417 parent: 2 - - uid: 41327 + - uid: 19226 components: - type: Transform - pos: -30.5,41.5 + pos: -5.5,46.5 parent: 2 -- proto: ClosetL3JanitorFilled - entities: - - uid: 10653 + - uid: 21278 components: - type: Transform - pos: -45.5,30.5 + rot: 3.141592653589793 rad + pos: 0.46924973,0.7535455 parent: 2 -- proto: ClosetL3ScienceFilled - entities: - - uid: 15321 + - uid: 21959 components: - type: Transform - pos: 80.5,-47.5 + pos: 4.5,41.5 parent: 2 - - uid: 15327 + - uid: 22691 components: - type: Transform - pos: 78.5,-41.5 + rot: 3.141592653589793 rad + pos: -0.53075004,0.7222955 parent: 2 - - uid: 24474 + - uid: 24470 components: - type: Transform - pos: 16.5,-12.5 + rot: 3.141592653589793 rad + pos: 20.5,-13.5 parent: 2 - - uid: 47685 + - uid: 25016 components: - type: Transform - pos: 36.5,-22.5 + rot: -1.5707963267948966 rad + pos: -16.5,15.5 parent: 2 - - uid: 47687 + - uid: 25018 components: - type: Transform - pos: 62.5,-27.5 + rot: 1.5707963267948966 rad + pos: -18.5,16.5 parent: 2 - - uid: 47698 + - uid: 27527 components: - type: Transform - pos: 36.5,-21.5 + rot: -1.5707963267948966 rad + pos: 4.5,39.5 parent: 2 -- proto: ClosetL3SecurityFilled - entities: - - uid: 11649 + - uid: 28105 components: - type: Transform - pos: -10.5,-36.5 + rot: -1.5707963267948966 rad + pos: 8.5,45.5 parent: 2 - - uid: 11650 + - uid: 28226 components: - type: Transform - pos: -26.5,-29.5 + pos: -5.5,42.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 - - uid: 11651 + - uid: 28304 components: - type: Transform - pos: -27.5,-29.5 + rot: -1.5707963267948966 rad + pos: -41.5,-18.5 parent: 2 - - uid: 11652 + - uid: 28318 components: - type: Transform - pos: -28.5,-29.5 + rot: -1.5707963267948966 rad + pos: -41.5,-20.5 parent: 2 - - uid: 11653 + - uid: 31195 components: - type: Transform - pos: -29.5,-29.5 + rot: -1.5707963267948966 rad + pos: -9.5,29.5 parent: 2 -- proto: ClosetL3VirologyFilled - entities: - - uid: 11654 + - uid: 31324 components: - type: Transform - pos: -23.5,-39.5 + rot: -1.5707963267948966 rad + pos: 55.5,-35.5 parent: 2 - - uid: 11655 + - uid: 32019 components: - type: Transform - pos: -37.5,-52.5 + rot: -1.5707963267948966 rad + pos: 3.5,46.5 parent: 2 -- proto: ClosetMaintenance - entities: - - uid: 19270 + - uid: 32592 components: - type: Transform - pos: -3.5,-17.5 + pos: -10.5,34.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19271 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 1589 + - uid: 35473 components: - type: Transform - pos: 50.5,-12.5 + rot: 1.5707963267948966 rad + pos: 7.5,50.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1305 - - 11633 - - 1241 - - 1239 - - 624 - - 11645 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 1828 + - uid: 44368 components: - type: Transform - pos: -47.5,-12.5 + pos: 60.486862,-30.294237 parent: 2 - - uid: 2146 + - uid: 45996 components: - type: Transform - pos: 46.5,-18.5 - parent: 2 - - uid: 8248 + rot: 1.5707963267948966 rad + pos: 7.5,42.5 + parent: 45711 + - uid: 47708 components: - type: Transform - pos: -39.5,-41.5 + rot: 1.5707963267948966 rad + pos: -26.581781,-25.306364 parent: 2 - - uid: 11656 + - uid: 47737 components: - type: Transform - pos: -48.5,-6.5 + pos: 25.604233,-7.9559507 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11662 + - uid: 48035 components: - type: Transform - pos: 23.5,40.5 - parent: 2 - - uid: 11663 + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 45711 + - uid: 48036 components: - type: Transform - pos: -20.5,-56.5 - parent: 2 - - uid: 11664 + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 45711 + - uid: 48037 components: - type: Transform - pos: -9.5,19.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 2.018369 - - 7.5929117 - - 0 - - 0 - - 0 - - 0 - - 0 + pos: -10.5,3.5 + parent: 45711 + - uid: 48038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 45711 + - uid: 48039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 45711 + - uid: 48040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,3.5 + parent: 45711 + - uid: 48041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 45711 + - uid: 48042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 45711 + - uid: 48043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 45711 + - uid: 48044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 45711 + - uid: 48045 + components: + - type: Transform + pos: 29.5,19.5 + parent: 45711 + - uid: 48046 + components: + - type: Transform + pos: 31.5,18.5 + parent: 45711 + - uid: 48047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,18.5 + parent: 45711 + - uid: 48048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 45711 + - uid: 48049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 45711 + - uid: 51903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.540283,-5.324137 + parent: 2 + - uid: 51993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,15.5 + parent: 2 + - uid: 52154 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 52162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-4.5 + parent: 2 + - uid: 52379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,56.5 + parent: 45711 + - uid: 52889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,69.5 + parent: 45711 + - uid: 53040 + components: + - type: Transform + pos: 2.469513,75.75311 + parent: 45711 + - uid: 53059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.43799973,3.6285455 + parent: 2 + - uid: 53068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.40674984,2.5816705 + parent: 2 + - uid: 53311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.585724,70.65082 + parent: 45711 + - uid: 53520 + components: + - type: Transform + pos: -20.781036,55.536804 + parent: 45711 + - uid: 53688 + components: + - type: Transform + pos: -33.510345,39.60193 + parent: 45711 + - uid: 53990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.460327,39.644592 + parent: 45711 + - uid: 53991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.413452,40.67578 + parent: 45711 + - uid: 53992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.569702,41.816406 + parent: 45711 + - uid: 54125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.436798,42.627136 + parent: 45711 + - uid: 54126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.40013,41.705505 + parent: 45711 + - uid: 54220 + components: + - type: Transform + pos: 32.459187,2.6111164 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 1670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.555946,-26.262169 + parent: 2 + - uid: 5525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-35.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 11339 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-39.5 + parent: 2 + - uid: 11341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 11345 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 11347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-55.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-55.5 + parent: 2 + - uid: 11350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-39.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-39.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-0.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: 10.5,36.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-62.5 + parent: 2 + - uid: 11430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-58.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 2 + - uid: 23023 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 31104 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 36233 + components: + - type: Transform + pos: 54.579315,-26.415165 + parent: 2 + - uid: 37309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 36861 + - uid: 37310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 36861 + - uid: 37311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 36861 + - uid: 37312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 36861 + - uid: 42876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,58.5 + parent: 2 + - uid: 43149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.484867,-4.352496 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 11361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,4.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,5.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,5.5 + parent: 2 + - uid: 11367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,4.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,3.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,6.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,3.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,6.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,6.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,3.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,1.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,1.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,1.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,1.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,7.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,7.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,7.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,7.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,7.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,7.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,3.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,6.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,3.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,6.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,3.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,5.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,4.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,5.5 + parent: 2 + - uid: 11392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,4.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,6.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + pos: -88.5,2.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: -87.5,2.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + pos: -86.5,2.5 + parent: 2 + - uid: 11397 + components: + - type: Transform + pos: -80.5,2.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: -79.5,2.5 + parent: 2 + - uid: 11399 + components: + - type: Transform + pos: -78.5,2.5 + parent: 2 + - uid: 11400 + components: + - type: Transform + pos: -91.5,8.5 + parent: 2 + - uid: 11401 + components: + - type: Transform + pos: -90.5,8.5 + parent: 2 + - uid: 11402 + components: + - type: Transform + pos: -84.5,8.5 + parent: 2 + - uid: 11403 + components: + - type: Transform + pos: -82.5,8.5 + parent: 2 + - uid: 32805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 32764 + - uid: 32806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 32764 + - uid: 32807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 32764 + - uid: 32808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 32764 + - uid: 35837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 35803 + - uid: 35838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 35803 + - uid: 35839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 35803 + - uid: 35840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 35803 + - uid: 44952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 44868 + - uid: 44953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 44868 + - uid: 44954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 44868 + - uid: 44955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 44868 + - uid: 44956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 44868 + - uid: 44957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 44868 + - uid: 44958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 44868 + - uid: 44959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 44868 + - uid: 44960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 44868 + - uid: 48050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,31.5 + parent: 45711 + - uid: 48051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,31.5 + parent: 45711 + - uid: 56177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 56108 + - uid: 56178 + components: + - type: Transform + pos: -0.5,2.5 + parent: 56108 + - uid: 56179 + components: + - type: Transform + pos: 1.5,2.5 + parent: 56108 +- proto: ChairRitual + entities: + - uid: 11404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,13.5 + parent: 2 + - uid: 11405 + components: + - type: Transform + pos: -29.5,15.5 + parent: 2 + - uid: 11406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-78.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + pos: -30.5,-74.5 + parent: 2 + - uid: 41384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,59.5 + parent: 2 + - uid: 41390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,59.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 1517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,48.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-64.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: -23.48965,69.58936 + parent: 2 + - uid: 8072 + components: + - type: Transform + pos: -24.505276,69.62061 + parent: 2 + - uid: 8438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-66.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-66.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-66.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-62.5 + parent: 2 + - uid: 9829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-63.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-37.5 + parent: 2 + - uid: 11139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-14.5 + parent: 2 + - uid: 11433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 2 + - uid: 11434 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 11436 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 11437 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 11438 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 + - uid: 11439 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - uid: 11440 + components: + - type: Transform + pos: -37.5,19.5 + parent: 2 + - uid: 11441 + components: + - type: Transform + pos: -38.5,19.5 + parent: 2 + - uid: 11442 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - uid: 11443 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 + - uid: 11444 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 11445 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 11446 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 11447 + components: + - type: Transform + pos: -32.5,17.5 + parent: 2 + - uid: 11448 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 11449 + components: + - type: Transform + pos: -33.5,16.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-52.5 + parent: 2 + - uid: 11492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-59.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-59.5 + parent: 2 + - uid: 11494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-62.5 + parent: 2 + - uid: 11495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-62.5 + parent: 2 + - uid: 11496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-62.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-62.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-67.5 + parent: 2 + - uid: 11499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-67.5 + parent: 2 + - uid: 11500 + components: + - type: Transform + pos: 46.5,-66.5 + parent: 2 + - uid: 11501 + components: + - type: Transform + pos: 47.5,-66.5 + parent: 2 + - uid: 11576 + components: + - type: Transform + pos: -19.52329,69.54664 + parent: 2 + - uid: 11585 + components: + - type: Transform + pos: -17.52329,69.51539 + parent: 2 + - uid: 11843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-37.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,55.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,56.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,54.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.355263,-5.2689137 + parent: 2 + - uid: 18292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-66.5 + parent: 2 + - uid: 18447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-14.5 + parent: 2 + - uid: 20750 + components: + - type: Transform + pos: 23.528881,-6.5385823 + parent: 2 + - uid: 20757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.513254,-8.101083 + parent: 2 + - uid: 20811 + components: + - type: Transform + pos: -49.5,52.5 + parent: 2 + - uid: 20848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,68.5 + parent: 2 + - uid: 23125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.466978,27.615171 + parent: 2 + - uid: 23311 + components: + - type: Transform + pos: -21.513851,29.599545 + parent: 2 + - uid: 23731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-59.5 + parent: 2 + - uid: 28786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,68.5 + parent: 2 + - uid: 30118 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 36252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-82.5 + parent: 2 + - uid: 36253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-82.5 + parent: 2 + - uid: 41355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,47.5 + parent: 2 + - uid: 41358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,50.5 + parent: 2 + - uid: 41550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,46.5 + parent: 2 + - uid: 43294 + components: + - type: Transform + pos: -55.5,45.5 + parent: 2 + - uid: 43302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,43.5 + parent: 2 + - uid: 43303 + components: + - type: Transform + pos: -55.5,48.5 + parent: 2 + - uid: 43304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,46.5 + parent: 2 + - uid: 43494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,29.5 + parent: 2 + - uid: 43495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,29.5 + parent: 2 + - uid: 43496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,28.5 + parent: 2 + - uid: 51354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.338127,-0.3545657 + parent: 2 + - uid: 51355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.431877,1.7079341 + parent: 2 + - uid: 51368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.650627,1.6766841 + parent: 2 + - uid: 51371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.666252,-0.3701907 + parent: 2 + - uid: 51499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.386513,-4.4095387 + parent: 2 + - uid: 51522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.559563,28.646114 + parent: 2 + - uid: 51604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.614716,30.678383 + parent: 2 + - uid: 51605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.505342,30.678383 + parent: 2 + - uid: 51612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.465813,28.661741 + parent: 2 + - uid: 53463 + components: + - type: Transform + pos: -13.130432,58.65155 + parent: 45711 + - uid: 53464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.739807,55.760925 + parent: 45711 + - uid: 53465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.536682,55.292175 + parent: 45711 + - uid: 53466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.208588,57.40155 + parent: 45711 +- proto: ChaplainPDA + entities: + - uid: 35978 + components: + - type: Transform + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 29190 + - type: UnpoweredFlashlight + toggleActionEntity: 29190 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: InsideEntityStorage + - uid: 35981 + components: + - type: Transform + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27689 + - type: UnpoweredFlashlight + toggleActionEntity: 27689 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: InsideEntityStorage + - uid: 43290 + components: + - type: Transform + parent: 43286 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 43291 + - type: UnpoweredFlashlight + toggleActionEntity: 43291 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: InsideEntityStorage +- proto: CheapLighter + entities: + - uid: 11502 + components: + - type: Transform + pos: 6.00209,-34.436802 + parent: 2 + - uid: 43261 + components: + - type: Transform + pos: -64.23598,-0.4107522 + parent: 2 +- proto: CheapRollerBed + entities: + - uid: 11503 + components: + - type: Transform + pos: 10.396281,-52.22435 + parent: 2 + - uid: 24368 + components: + - type: Transform + pos: -5.4519567,-43.42959 + parent: 2 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 13427 + components: + - type: Transform + pos: 3.45709,-41.276978 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 3123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.487907,36.533287 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: -61.451828,0.58980817 + parent: 2 + - uid: 11507 + components: + - type: Transform + pos: -73.45303,21.616426 + parent: 2 + - uid: 51606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.50924,28.644312 + parent: 2 +- proto: chem_master + entities: + - uid: 1322 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 2 + - uid: 11508 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - uid: 11517 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 +- proto: ChemBag + entities: + - uid: 43985 + components: + - type: Transform + parent: 129 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 43986 + components: + - type: Transform + parent: 129 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ChemDispenser + entities: + - uid: 11511 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 2 +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 43330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.495434,52.323933 + parent: 2 +- proto: ChemicalPayload + entities: + - uid: 142 + components: + - type: Transform + pos: 55.35402,-24.41992 + parent: 2 + - uid: 15348 + components: + - type: Transform + pos: 80.766815,-45.586338 + parent: 2 + - uid: 15349 + components: + - type: Transform + pos: 80.766815,-45.586338 + parent: 2 + - uid: 22632 + components: + - type: Transform + pos: 55.588394,-24.279295 + parent: 2 + - uid: 52232 + components: + - type: Transform + parent: 52231 + - type: ContainerContainer + containers: + BeakerSlotA: !type:ContainerSlot + showEnts: False + occludes: True + ent: 52233 + BeakerSlotB: !type:ContainerSlot + showEnts: False + occludes: True + ent: 52235 + - type: Physics + canCollide: False + - uid: 52337 + components: + - type: Transform + parent: 52336 + - type: ContainerContainer + containers: + BeakerSlotA: !type:ContainerSlot + showEnts: False + occludes: True + ent: 52338 + BeakerSlotB: !type:ContainerSlot + showEnts: False + occludes: True + ent: 52340 + - type: Physics + canCollide: False +- proto: ChemistryHotplate + entities: + - uid: 33548 + components: + - type: Transform + pos: 1.5,23.5 + parent: 33049 + - uid: 42705 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 11521 + components: + - type: Transform + pos: -80.519226,23.553926 + parent: 2 + - uid: 11522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.506212,33.573555 + parent: 2 + - uid: 11523 + components: + - type: Transform + pos: -62.56171,-22.43355 + parent: 2 + - uid: 11525 + components: + - type: Transform + pos: -40.480328,-46.39786 + parent: 2 + - uid: 19632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.445745,54.7132 + parent: 2 + - uid: 21787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.49514,-30.353746 + parent: 2 + - uid: 27611 + components: + - type: Transform + pos: 23.53032,-7.4718466 + parent: 2 + - uid: 33549 + components: + - type: Transform + pos: 1.5749079,-12.352028 + parent: 33049 + - uid: 37313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.4070816,14.653305 + parent: 36861 + - uid: 37314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.499329,-3.4421844 + parent: 36861 + - uid: 41269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5385562,68.52046 + parent: 2 + - uid: 51360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.488106,1.5409384 + parent: 2 + - uid: 51361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.50373,-0.4746865 + parent: 2 +- proto: ChurchBell + entities: + - uid: 51322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,12.5 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 11527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,14.5 + parent: 2 + - uid: 20944 + components: + - type: Transform + pos: -49.5,51.5 + parent: 2 +- proto: Cigar + entities: + - uid: 11528 + components: + - type: Transform + pos: -87.64427,17.676527 + parent: 2 + - uid: 11529 + components: + - type: Transform + pos: -42.61094,33.52837 + parent: 2 + - uid: 45343 + components: + - type: Transform + parent: 1778 + - type: Physics + canCollide: False + - uid: 45344 + components: + - type: Transform + parent: 1778 + - type: Physics + canCollide: False +- proto: CigarCase + entities: + - uid: 43258 + components: + - type: Transform + pos: -64.64223,-0.36387715 + parent: 2 +- proto: Cigarette + entities: + - uid: 53104 + components: + - type: Transform + pos: 3.8372192,74.664 + parent: 45711 + - uid: 53105 + components: + - type: Transform + pos: 3.9778442,74.80463 + parent: 45711 + - uid: 53108 + components: + - type: Transform + pos: 4.040283,74.71088 + parent: 45711 +- proto: CigaretteSpent + entities: + - uid: 11530 + components: + - type: Transform + pos: -13.127119,50.209507 + parent: 2 + - uid: 22063 + components: + - type: Transform + pos: 6.0923905,43.316257 + parent: 2 + - uid: 22170 + components: + - type: Transform + pos: 5.983016,43.785007 + parent: 2 + - uid: 22242 + components: + - type: Transform + pos: 6.4986405,43.878757 + parent: 2 + - uid: 51259 + components: + - type: Transform + pos: 22.919392,-55.62912 + parent: 2 + - uid: 51260 + components: + - type: Transform + pos: 22.935017,-63.00412 + parent: 2 + - uid: 51261 + components: + - type: Transform + pos: 26.477486,-57.10799 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 11531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.824432,-64.72057 + parent: 2 + - uid: 53110 + components: + - type: Transform + pos: 3.8840942,74.7265 + parent: 45711 + - uid: 53111 + components: + - type: Transform + pos: 4.118454,74.64838 + parent: 45711 +- proto: CigarGold + entities: + - uid: 37315 + components: + - type: Transform + pos: 30.286804,9.392014 + parent: 36861 + - uid: 54211 + components: + - type: Transform + pos: -65.293846,19.69235 + parent: 2 + - uid: 54213 + components: + - type: Transform + pos: -65.24697,19.582973 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 720 + components: + - type: Transform + pos: 4.521619,-7.445432 + parent: 2 + - uid: 11532 + components: + - type: Transform + parent: 1899 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CigarGoldSpent + entities: + - uid: 44077 + components: + - type: Transform + pos: 59.631622,-14.511962 + parent: 2 +- proto: CigCartonBlack + entities: + - uid: 53348 + components: + - type: Transform + pos: -74.4915,-9.394855 + parent: 2 +- proto: CigCartonGreen + entities: + - uid: 53995 + components: + - type: Transform + pos: -8.507547,-28.335949 + parent: 2 +- proto: CigCartonRed + entities: + - uid: 11537 + components: + - type: Transform + pos: 6.446739,-34.561832 + parent: 2 +- proto: CigPackSyndicate + entities: + - uid: 29755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.541714,-49.594395 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 18070 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 43483 + components: + - type: Transform + pos: -48.5,31.5 + parent: 2 +- proto: ClearPDA + entities: + - uid: 45402 + components: + - type: Transform + pos: -1.746522,-1.3002565 + parent: 43176 +- proto: ClockworkGrille + entities: + - uid: 51865 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 51866 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 51867 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 51868 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 56180 + components: + - type: Transform + pos: -0.5,6.5 + parent: 56108 + - uid: 56181 + components: + - type: Transform + pos: 0.5,6.5 + parent: 56108 + - uid: 56182 + components: + - type: Transform + pos: 1.5,6.5 + parent: 56108 + - uid: 56183 + components: + - type: Transform + pos: -1.5,5.5 + parent: 56108 + - uid: 56184 + components: + - type: Transform + pos: 2.5,5.5 + parent: 56108 + - uid: 56185 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 56108 + - uid: 56186 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 56108 + - uid: 56187 + components: + - type: Transform + pos: -3.5,0.5 + parent: 56108 + - uid: 56188 + components: + - type: Transform + pos: 4.5,0.5 + parent: 56108 +- proto: ClockworkGrilleDiagonal + entities: + - uid: 56189 + components: + - type: Transform + pos: -1.5,6.5 + parent: 56108 + - uid: 56190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 56108 +- proto: CloningConsoleComputerCircuitboard + entities: + - uid: 35040 + components: + - type: Transform + pos: -17.579132,4.0208464 + parent: 34641 +- proto: CloningPod + entities: + - uid: 31897 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 11557 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 15318 + components: + - type: Transform + pos: 78.5,-47.5 + parent: 2 + - uid: 15319 + components: + - type: Transform + pos: 80.5,-41.5 + parent: 2 + - uid: 21258 + components: + - type: Transform + pos: 50.5,-24.5 + parent: 2 + - uid: 47702 + components: + - type: Transform + pos: 48.5,-24.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 9994 + components: + - type: Transform + pos: -35.5,30.5 + parent: 2 +- proto: ClosetEmergency + entities: + - uid: 11562 + components: + - type: Transform + pos: -19.5,-56.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14926 + moles: + - 20.73429 + - 78.00041 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 33570 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 33049 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 6247 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 8741 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 11556 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 + - uid: 11559 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + anchored: True + pos: 25.5,21.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 11566 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 + - uid: 11569 + components: + - type: Transform + pos: -33.5,32.5 + parent: 2 + - uid: 11571 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 11572 + components: + - type: Transform + pos: -46.5,-57.5 + parent: 2 + - uid: 11573 + components: + - type: Transform + pos: -26.5,-52.5 + parent: 2 + - uid: 11574 + components: + - type: Transform + pos: -44.5,20.5 + parent: 2 + - uid: 11575 + components: + - type: Transform + pos: -31.559963,13.663682 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 25.826561 + - 97.15705 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11578 + components: + - type: Transform + pos: -65.5,13.5 + parent: 2 + - uid: 11581 + components: + - type: Transform + pos: -83.5,23.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + pos: -76.5,8.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + pos: -76.5,1.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + pos: -90.5,-20.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 + - uid: 11587 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14926 + moles: + - 20.73429 + - 78.00041 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11589 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 2 + - uid: 11596 + components: + - type: Transform + pos: -95.5,45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1498 + moles: + - 5.8990684 + - 22.191732 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11599 + components: + - type: Transform + pos: -75.5,45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1498 + moles: + - 2.2179158 + - 8.343588 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11600 + components: + - type: Transform + pos: -59.5,45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1498 + moles: + - 2.2179158 + - 8.343588 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11601 + components: + - type: Transform + pos: -77.5,43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1498 + moles: + - 2.2179158 + - 8.343588 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11602 + components: + - type: Transform + pos: -93.5,43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1498 + moles: + - 5.8990684 + - 22.191732 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11603 + components: + - type: Transform + pos: -57.5,43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1498 + moles: + - 2.2179158 + - 8.343588 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11604 + components: + - type: Transform + pos: 36.5,58.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14948 + moles: + - 23.269733 + - 87.53851 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11605 + components: + - type: Transform + pos: 42.5,58.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 292.86633 + moles: + - 14.490321 + - 54.511215 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11695 + components: + - type: Transform + pos: 40.5,-47.5 + parent: 2 + - uid: 19809 + components: + - type: Transform + pos: 54.5,39.5 + parent: 2 + - uid: 20359 + components: + - type: Transform + pos: -46.5,32.5 + parent: 2 + - uid: 20993 + components: + - type: Transform + pos: 16.5,42.5 + parent: 2 + - uid: 22107 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 2 + - uid: 27390 + components: + - type: Transform + pos: -14.5,63.5 + parent: 2 + - uid: 28506 + components: + - type: Transform + pos: -17.5,-72.5 + parent: 2 + - uid: 36143 + components: + - type: Transform + pos: -37.5,-74.5 + parent: 2 + - uid: 37316 + components: + - type: Transform + pos: 13.5,15.5 + parent: 36861 + - uid: 41659 + components: + - type: Transform + pos: 31.5,-43.5 + parent: 2 + - uid: 43724 + components: + - type: Transform + pos: -53.5,39.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 + - uid: 43744 + components: + - type: Transform + pos: -10.5,51.5 + parent: 2 + - uid: 44558 + components: + - type: Transform + pos: 53.5,-48.5 + parent: 2 + - uid: 44563 + components: + - type: Transform + pos: 72.5,-41.5 + parent: 2 + - uid: 44568 + components: + - type: Transform + pos: 69.5,-25.5 + parent: 2 + - uid: 44619 + components: + - type: Transform + pos: 73.5,-27.5 + parent: 2 + - uid: 44694 + components: + - type: Transform + pos: 47.5,-18.5 + parent: 2 + - uid: 46560 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 45711 + - uid: 47606 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 48052 + components: + - type: Transform + pos: -15.5,14.5 + parent: 45711 + - uid: 48053 + components: + - type: Transform + pos: -13.5,16.5 + parent: 45711 + - uid: 48054 + components: + - type: Transform + pos: 22.5,6.5 + parent: 45711 + - uid: 51620 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 53551 + components: + - type: Transform + pos: -7.5,52.5 + parent: 45711 + - uid: 53552 + components: + - type: Transform + pos: -14.5,46.5 + parent: 45711 + - uid: 54070 + components: + - type: Transform + pos: 12.5,47.5 + parent: 45711 + - uid: 56042 + components: + - type: Transform + pos: 19.5,46.5 + parent: 45711 +- proto: ClosetFire + entities: + - uid: 11613 + components: + - type: Transform + pos: -39.5,-52.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 360 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: 48.5,8.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 11594 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 11598 + components: + - type: Transform + pos: 39.5,-47.5 + parent: 2 + - uid: 11606 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 11612 + components: + - type: Transform + pos: -51.5,20.5 + parent: 2 + - uid: 11614 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 11615 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 11616 + components: + - type: Transform + pos: 46.5,5.5 + parent: 2 + - uid: 11617 + components: + - type: Transform + pos: -34.5,32.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14926 + moles: + - 20.73429 + - 78.00041 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11618 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14926 + moles: + - 20.73429 + - 78.00041 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11619 + components: + - type: Transform + pos: -26.5,-49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14948 + moles: + - 23.269733 + - 87.53851 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11620 + components: + - type: Transform + pos: -69.5,23.5 + parent: 2 + - uid: 11621 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14926 + moles: + - 20.73429 + - 78.00041 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11622 + components: + - type: Transform + pos: -90.5,13.5 + parent: 2 + - uid: 11623 + components: + - type: Transform + pos: -83.5,8.5 + parent: 2 + - uid: 11627 + components: + - type: Transform + pos: -83.5,1.5 + parent: 2 + - uid: 11630 + components: + - type: Transform + pos: -91.5,-19.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 + - uid: 11637 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14926 + moles: + - 20.73429 + - 78.00041 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11641 + components: + - type: Transform + pos: -59.5,43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1498 + moles: + - 2.2179158 + - 8.343588 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11642 + components: + - type: Transform + pos: -75.5,43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1498 + moles: + - 2.2179158 + - 8.343588 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11643 + components: + - type: Transform + pos: -95.5,43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1498 + moles: + - 5.8990684 + - 22.191732 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11644 + components: + - type: Transform + pos: 30.5,-62.5 + parent: 2 + - uid: 18796 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 22103 + components: + - type: Transform + pos: -9.5,-72.5 + parent: 2 + - uid: 23291 + components: + - type: Transform + pos: -47.5,32.5 + parent: 2 + - uid: 29915 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 37317 + components: + - type: Transform + pos: 8.5,15.5 + parent: 36861 + - uid: 41662 + components: + - type: Transform + pos: 31.5,-50.5 + parent: 2 + - uid: 43720 + components: + - type: Transform + pos: -42.5,43.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 + - uid: 43722 + components: + - type: Transform + pos: -14.5,62.5 + parent: 2 + - uid: 43743 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - uid: 44561 + components: + - type: Transform + pos: 55.5,-49.5 + parent: 2 + - uid: 44562 + components: + - type: Transform + pos: 70.5,-41.5 + parent: 2 + - uid: 44569 + components: + - type: Transform + pos: 69.5,-26.5 + parent: 2 + - uid: 44695 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 2 + - uid: 47607 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 48055 + components: + - type: Transform + pos: -16.5,14.5 + parent: 45711 + - uid: 51094 + components: + - type: Transform + pos: -0.5,-63.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 19625 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - uid: 48056 + components: + - type: Transform + pos: 20.5,13.5 + parent: 45711 +- proto: ClosetL3 + entities: + - uid: 3861 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 2 +- proto: ClosetL3Filled + entities: + - uid: 3981 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 2 + - uid: 41327 + components: + - type: Transform + pos: -30.5,41.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 10653 + components: + - type: Transform + pos: -45.5,30.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 15321 + components: + - type: Transform + pos: 80.5,-47.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + pos: 78.5,-41.5 + parent: 2 + - uid: 24474 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 47685 + components: + - type: Transform + pos: 36.5,-22.5 + parent: 2 + - uid: 47687 + components: + - type: Transform + pos: 62.5,-27.5 + parent: 2 + - uid: 47698 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 +- proto: ClosetL3SecurityFilled + entities: + - uid: 11649 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 11650 + components: + - type: Transform + pos: -26.5,-29.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 + - uid: 11651 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 11652 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 11653 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 11654 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 2 + - uid: 11655 + components: + - type: Transform + pos: -37.5,-52.5 + parent: 2 +- proto: ClosetMaintenance + entities: + - uid: 19270 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19271 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1589 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1305 + - 11633 + - 1241 + - 1239 + - 624 + - 11645 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1828 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 11656 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11662 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: -20.5,-56.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14926 + moles: + - 2.018369 + - 7.5929117 + - 0 + - 0 + - 0 + - 0 + - 0 - 0 - 0 - 0 @@ -132274,11 +136737,6 @@ entities: - type: Transform pos: -42.5,11.5 parent: 2 - - uid: 11711 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 2 - uid: 11714 components: - type: Transform @@ -132325,11 +136783,6 @@ entities: - 0 - 0 - 0 - - uid: 11725 - components: - - type: Transform - pos: -45.5,-31.5 - parent: 2 - uid: 21653 components: - type: Transform @@ -132345,6 +136798,11 @@ entities: - type: Transform pos: 61.5,40.5 parent: 2 + - uid: 42072 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 - uid: 43339 components: - type: Transform @@ -132360,6 +136818,11 @@ entities: - type: Transform pos: 36.5,-37.5 parent: 2 + - uid: 51901 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 - uid: 52138 components: - type: Transform @@ -132381,8 +136844,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -132399,15 +136862,20 @@ entities: showEnts: False occludes: True ents: - - 11955 - - 11956 - 32037 - - 1900 - - 5672 - - 11532 - - 25550 + - 11956 - 25729 + - 24892 + - 11532 + - 14362 - 5680 + - 25550 + - 25563 + - 1900 + - 14364 + - 11284 + - 11955 + - 5672 - uid: 5723 components: - type: MetaData @@ -132423,8 +136891,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -132441,18 +136909,20 @@ entities: showEnts: False occludes: True ents: - - 19285 - - 5726 - - 1163 - - 5727 + - 1593 + - 1472 - 1414 - 5658 - - 1472 - - 1593 + - 5726 + - 5727 + - 899 + - 1163 + - 19285 - uid: 44961 components: - type: MetaData - desc: Личные вещи пилота СБ. + desc: Шкаф, набитый личными вещами пилота СБ. + name: настенный шкаф пилота - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 @@ -132800,6 +137270,22 @@ entities: - type: Transform pos: -61.39588,11.573511 parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null - proto: ClothingBackpackCluwne entities: - uid: 53915 @@ -133178,6 +137664,38 @@ entities: - type: Transform pos: -27.519794,48.512844 parent: 2 +- proto: ClothingBeltSecurityWebbing + entities: + - uid: 48485 + components: + - type: Transform + pos: -31.715677,-25.604856 + parent: 2 + - uid: 48486 + components: + - type: Transform + pos: -31.731302,-25.401731 + parent: 2 + - uid: 48487 + components: + - type: Transform + pos: -31.512552,-25.604856 + parent: 2 + - uid: 48488 + components: + - type: Transform + pos: -31.512554,-25.417356 + parent: 2 + - uid: 48489 + components: + - type: Transform + pos: -31.246927,-25.604856 + parent: 2 + - uid: 48490 + components: + - type: Transform + pos: -31.24693,-25.417356 + parent: 2 - proto: ClothingBeltStorageWaistbag entities: - uid: 37323 @@ -133519,12 +138037,12 @@ entities: - uid: 11807 components: - type: Transform - pos: -9.086742,-19.284197 + pos: -9.975109,-19.23242 parent: 2 - uid: 11808 components: - type: Transform - pos: -9.03828,-19.577997 + pos: -9.990734,-19.45117 parent: 2 - uid: 26532 components: @@ -133631,13 +138149,6 @@ entities: - type: Transform pos: -30.602581,57.65116 parent: 2 - - uid: 11816 - components: - - type: Transform - parent: 11815 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHandsGlovesColorBlack entities: - uid: 19659 @@ -133645,15 +138156,6 @@ entities: - type: Transform pos: -41.507217,-50.623436 parent: 2 -- proto: ClothingHandsGlovesColorBrown - entities: - - uid: 11823 - components: - - type: Transform - parent: 11822 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHandsGlovesColorGreen entities: - uid: 24703 @@ -133847,6 +138349,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 51328 + components: + - type: Transform + pos: -36.457172,-27.30386 + parent: 2 + - uid: 51336 + components: + - type: Transform + pos: -36.457172,-27.30386 + parent: 2 - uid: 52305 components: - type: Transform @@ -134097,12 +138609,22 @@ entities: - type: Transform pos: -79.487495,4.9388747 parent: 2 +- proto: ClothingHeadHatCapHoS + entities: + - uid: 14362 + components: + - type: Transform + parent: 1899 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHatCasa entities: - uid: 45351 components: - type: Transform - pos: -33.53111,52.541767 + rot: 0.000553772842977196 rad + pos: -34.14856,53.70288 parent: 2 - proto: ClothingHeadHatCatEars entities: @@ -134118,14 +138640,6 @@ entities: - type: Transform pos: -15.525692,11.424662 parent: 2 - - uid: 11863 - components: - - type: MetaData - name: ушки DsRase - - type: Transform - parent: 11862 - - type: Physics - canCollide: False - uid: 54389 components: - type: Transform @@ -134133,19 +138647,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadHatChef - entities: - - uid: 11864 - components: - - type: Transform - pos: -27.54638,34.50228 - parent: 2 - proto: ClothingHeadHatCone entities: - uid: 344 components: - type: Transform - pos: -93.95317,23.286678 + rot: 0.000553772842977196 rad + pos: -93.57009,22.795708 parent: 2 - uid: 1730 components: @@ -134157,17 +138665,20 @@ entities: - uid: 15231 components: - type: Transform - pos: -94.906296,23.271055 + rot: 0.000553772842977196 rad + pos: -96.46073,23.061335 parent: 2 - uid: 22855 components: - type: Transform - pos: -95.73442,23.614803 + rot: 0.000553772842977196 rad + pos: -95.41385,22.780083 parent: 2 - uid: 23205 components: - type: Transform - pos: -93.17192,23.833553 + rot: 0.000553772842977196 rad + pos: -92.55448,23.092585 parent: 2 - uid: 35598 components: @@ -134252,6 +138763,11 @@ entities: - type: Transform pos: -4.509605,32.775726 parent: 45711 + - uid: 54193 + components: + - type: Transform + pos: -94.42948,22.639458 + parent: 2 - proto: ClothingHeadHatCowboyBlack entities: - uid: 48087 @@ -134323,13 +138839,6 @@ entities: - type: Transform pos: -9.237083,17.751236 parent: 2 -- proto: ClothingHeadHatGreysoft - entities: - - uid: 11866 - components: - - type: Transform - pos: 30.50822,2.7767382 - parent: 2 - proto: ClothingHeadHatHairflower entities: - uid: 3058 @@ -134634,10 +139143,12 @@ entities: parent: 2 - proto: ClothingHeadHatSyndie entities: - - uid: 22147 + - uid: 475 components: + - type: MetaData + name: кепка Синдиката - type: Transform - pos: -13.521209,30.43769 + pos: -13.53017,29.715229 parent: 2 - uid: 35677 components: @@ -134673,15 +139184,6 @@ entities: - type: Transform pos: 12.293056,27.600903 parent: 45711 -- proto: ClothingHeadHatTrucker - entities: - - uid: 11817 - components: - - type: Transform - parent: 11815 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHeadHatUshanka entities: - uid: 11880 @@ -134729,13 +139231,6 @@ entities: parent: 2 - proto: ClothingHeadHatWeldingMaskPainted entities: - - uid: 11818 - components: - - type: Transform - parent: 11815 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 45583 components: - type: Transform @@ -134749,13 +139244,6 @@ entities: - type: Transform pos: -4.703785,-56.806458 parent: 2 -- proto: ClothingHeadHatXmasCrown - entities: - - uid: 11757 - components: - - type: Transform - pos: -57.428528,2.7341864 - parent: 2 - proto: ClothingHeadHatYellowsoft entities: - uid: 22426 @@ -134765,35 +139253,35 @@ entities: parent: 2 - proto: ClothingHeadHelmetBasic entities: - - uid: 19540 + - uid: 48491 components: - type: Transform - pos: -26.473293,-23.387976 + pos: -30.53343,-25.323574 parent: 2 - - uid: 19542 + - uid: 48492 components: - type: Transform - pos: -26.754543,-23.6536 + pos: -30.799055,-25.323574 parent: 2 - - uid: 20118 + - uid: 48494 components: - type: Transform - pos: -26.223293,-23.387974 + pos: -30.799053,-25.573574 parent: 2 - - uid: 21410 + - uid: 48495 components: - type: Transform - pos: -26.20767,-23.637976 + pos: -30.56468,-25.55795 parent: 2 - - uid: 21637 + - uid: 48497 components: - type: Transform - pos: -26.473295,-23.637976 + pos: -30.361555,-25.323574 parent: 2 - - uid: 26662 + - uid: 48498 components: - type: Transform - pos: -26.754545,-23.37235 + pos: -30.361555,-25.55795 parent: 2 - proto: ClothingHeadHelmetBombSuit entities: @@ -134891,16 +139379,6 @@ entities: - type: Transform pos: -36.696323,-25.290514 parent: 2 - - uid: 14336 - components: - - type: Transform - pos: -35.727573,-27.212389 - parent: 2 - - uid: 14337 - components: - - type: Transform - pos: -35.46195,-27.212389 - parent: 2 - uid: 37324 components: - type: Transform @@ -134935,6 +139413,18 @@ entities: - type: Transform pos: -14.5116,5.597862 parent: 34641 + - uid: 51333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.049076,-27.266197 + parent: 2 + - uid: 51334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.8772,-27.281822 + parent: 2 - proto: ClothingHeadHelmetTemplar entities: - uid: 713 @@ -135155,26 +139645,6 @@ entities: parent: 33049 - proto: ClothingMaskGasSecurity entities: - - uid: 11928 - components: - - type: Transform - pos: -36.221764,-27.654413 - parent: 2 - - uid: 11932 - components: - - type: Transform - pos: -36.628014,-27.623163 - parent: 2 - - uid: 11933 - components: - - type: Transform - pos: -37.17489,-27.623163 - parent: 2 - - uid: 11934 - components: - - type: Transform - pos: -37.596764,-27.60754 - parent: 2 - uid: 19737 components: - type: Transform @@ -135202,13 +139672,43 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 51339 + components: + - type: Transform + pos: -37.56812,-29.521465 + parent: 2 + - uid: 51340 + components: + - type: Transform + pos: -37.30249,-29.53709 + parent: 2 + - uid: 51341 + components: + - type: Transform + pos: -36.708744,-29.552717 + parent: 2 + - uid: 51342 + components: + - type: Transform + pos: -36.28687,-29.552715 + parent: 2 - proto: ClothingMaskGasSwat entities: + - uid: 11933 + components: + - type: Transform + pos: -35.52439,-27.118032 + parent: 2 - uid: 48096 components: - type: Transform pos: 17.439287,23.77244 parent: 45711 + - uid: 51331 + components: + - type: Transform + pos: -37.446823,-27.103178 + parent: 2 - proto: ClothingMaskGasSyndicate entities: - uid: 16642 @@ -135249,6 +139749,12 @@ entities: - type: Transform pos: -44.50419,-8.769328 parent: 2 + - uid: 11162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.379345,-76.024925 + parent: 2 - uid: 11935 components: - type: Transform @@ -135259,6 +139765,11 @@ entities: - type: Transform pos: -17.889914,-49.14863 parent: 2 + - uid: 22867 + components: + - type: Transform + pos: -33.008194,-78.605156 + parent: 2 - uid: 31250 components: - type: Transform @@ -135443,8 +139954,22 @@ entities: - type: Transform pos: -48.299446,-2.401756 parent: 2 +- proto: ClothingNeckClownmedal + entities: + - uid: 24892 + components: + - type: Transform + parent: 1899 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingNeckFlowerWreath entities: + - uid: 26159 + components: + - type: Transform + pos: -17.290184,1.466441 + parent: 2 - uid: 28104 components: - type: Transform @@ -135567,6 +140092,15 @@ entities: - type: Transform pos: -100.719246,-19.34301 parent: 2 +- proto: ClothingNeckSecuritymedal + entities: + - uid: 25563 + components: + - type: Transform + parent: 1899 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingNeckStethoscope entities: - uid: 11958 @@ -135651,15 +140185,6 @@ entities: - type: Transform pos: -17.575146,-56.58245 parent: 2 -- proto: ClothingNeckTieRed - entities: - - uid: 11819 - components: - - type: Transform - parent: 11815 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingNeckUSSPPin entities: - uid: 32203 @@ -135686,10 +140211,11 @@ entities: parent: 2 - proto: ClothingOuterApronChef entities: - - uid: 11966 + - uid: 53378 components: - type: Transform - pos: -25.437569,30.615757 + rot: 0.5247063212842533 rad + pos: -26.62391,26.516748 parent: 2 - proto: ClothingOuterArmorBasic entities: @@ -135703,6 +140229,11 @@ entities: - type: Transform pos: -37.636845,-23.684345 parent: 2 + - uid: 21592 + components: + - type: Transform + pos: -37.42883,-23.720932 + parent: 2 - uid: 24113 components: - type: Transform @@ -135739,20 +140270,30 @@ entities: - type: Transform pos: -37.50194,-23.416113 parent: 2 + - uid: 32036 + components: + - type: Transform + pos: -37.49133,-23.424057 + parent: 2 - proto: ClothingOuterArmorHeavy entities: - - uid: 24934 + - uid: 51329 components: - type: Transform - pos: -35.447742,-27.622868 + pos: -37.44682,-27.493803 parent: 2 - - uid: 24941 + - uid: 51330 components: - type: Transform - pos: -35.728992,-27.622866 + pos: -35.52439,-27.446157 parent: 2 - proto: ClothingOuterArmorReflective entities: + - uid: 21595 + components: + - type: Transform + pos: -36.492695,-23.521046 + parent: 2 - uid: 23376 components: - type: Transform @@ -136136,146 +140677,13 @@ entities: priority: 0 component: ClothingSpeedModifier title: null - - uid: 33585 - components: - - type: MetaData - name: скафандр шахтёра - - type: Transform - pos: -5.572682,-13.384911 - parent: 33049 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Blunt[/color] урон снижается на [color=lightblue]25%[/color]. - - - [color=yellow]Slash[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Piercing[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] урон снижается на [color=lightblue]15%[/color]. - - - [color=yellow]Radiation[/color] урон снижается на [color=lightblue]50%[/color]. - - - [color=yellow]Caustic[/color] урон снижается на [color=lightblue]25%[/color]. - priority: 0 - component: Armor - - message: >- - Понижает вашу скорость бега на [color=yellow]35%[/color]. - - Понижает вашу скорость ходьбы на [color=yellow]40%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null - - uid: 33586 - components: - - type: MetaData - name: скафандр шахтёра - - type: Transform - pos: -4.588307,-13.353661 - parent: 33049 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Blunt[/color] урон снижается на [color=lightblue]25%[/color]. - - - [color=yellow]Slash[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Piercing[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] урон снижается на [color=lightblue]15%[/color]. - - - [color=yellow]Radiation[/color] урон снижается на [color=lightblue]50%[/color]. - - - [color=yellow]Caustic[/color] урон снижается на [color=lightblue]25%[/color]. - priority: 0 - component: Armor - - message: >- - Понижает вашу скорость бега на [color=yellow]35%[/color]. - - Понижает вашу скорость ходьбы на [color=yellow]40%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null - - uid: 33587 - components: - - type: MetaData - name: скафандр шахтёра - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.6258073,6.4616065 - parent: 33049 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Blunt[/color] урон снижается на [color=lightblue]25%[/color]. - - - [color=yellow]Slash[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Piercing[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] урон снижается на [color=lightblue]15%[/color]. - - - [color=yellow]Radiation[/color] урон снижается на [color=lightblue]50%[/color]. - - - [color=yellow]Caustic[/color] урон снижается на [color=lightblue]25%[/color]. - priority: 0 - component: Armor - - message: >- - Понижает вашу скорость бега на [color=yellow]35%[/color]. - - Понижает вашу скорость ходьбы на [color=yellow]40%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 10010 - components: - - type: Transform - pos: -47.645576,-38.558796 - parent: 2 - - uid: 11986 - components: - - type: Transform - pos: -37.64364,-27.326288 - parent: 2 - - uid: 11987 - components: - - type: Transform - pos: -37.23739,-27.326288 - parent: 2 - - uid: 11988 + - uid: 33585 components: + - type: MetaData + name: скафандр шахтёра - type: Transform - pos: -36.284264,-27.341915 - parent: 2 + pos: -5.572682,-13.384911 + parent: 33049 - type: GroupExamine group: - hoverMessage: "" @@ -136285,29 +140693,36 @@ entities: - Armor - ClothingSpeedModifier entries: - - message: Понижает вашу скорость на [color=yellow]25%[/color]. - priority: 0 - component: ClothingSpeedModifier - message: >- Обеспечивает следующую защиту: - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]40%[/color]. + - [color=yellow]Blunt[/color] урон снижается на [color=lightblue]25%[/color]. - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]40%[/color]. + - [color=yellow]Slash[/color] урон снижается на [color=lightblue]30%[/color]. - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]40%[/color]. + - [color=yellow]Piercing[/color] урон снижается на [color=lightblue]30%[/color]. - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]30%[/color]. + - [color=yellow]Heat[/color] урон снижается на [color=lightblue]15%[/color]. - - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]60%[/color]. + - [color=yellow]Radiation[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Caustic[/color] урон снижается на [color=lightblue]25%[/color]. priority: 0 component: Armor + - message: >- + Понижает вашу скорость бега на [color=yellow]35%[/color]. + + Понижает вашу скорость ходьбы на [color=yellow]40%[/color]. + priority: 0 + component: ClothingSpeedModifier title: null - - uid: 11993 + - uid: 33586 components: + - type: MetaData + name: скафандр шахтёра - type: Transform - pos: -36.690514,-27.326288 - parent: 2 + pos: -4.588307,-13.353661 + parent: 33049 - type: GroupExamine group: - hoverMessage: "" @@ -136317,24 +140732,81 @@ entities: - Armor - ClothingSpeedModifier entries: - - message: Понижает вашу скорость на [color=yellow]25%[/color]. + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Blunt[/color] урон снижается на [color=lightblue]25%[/color]. + + - [color=yellow]Slash[/color] урон снижается на [color=lightblue]30%[/color]. + + - [color=yellow]Piercing[/color] урон снижается на [color=lightblue]30%[/color]. + + - [color=yellow]Heat[/color] урон снижается на [color=lightblue]15%[/color]. + + - [color=yellow]Radiation[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Caustic[/color] урон снижается на [color=lightblue]25%[/color]. + priority: 0 + component: Armor + - message: >- + Понижает вашу скорость бега на [color=yellow]35%[/color]. + + Понижает вашу скорость ходьбы на [color=yellow]40%[/color]. priority: 0 component: ClothingSpeedModifier + title: null + - uid: 33587 + components: + - type: MetaData + name: скафандр шахтёра + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.6258073,6.4616065 + parent: 33049 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: - message: >- Обеспечивает следующую защиту: - - [color=yellow]Blunt[/color] урон снижается на [color=lightblue]40%[/color]. + - [color=yellow]Blunt[/color] урон снижается на [color=lightblue]25%[/color]. + + - [color=yellow]Slash[/color] урон снижается на [color=lightblue]30%[/color]. - - [color=yellow]Slash[/color] урон снижается на [color=lightblue]40%[/color]. + - [color=yellow]Piercing[/color] урон снижается на [color=lightblue]30%[/color]. - - [color=yellow]Piercing[/color] урон снижается на [color=lightblue]40%[/color]. + - [color=yellow]Heat[/color] урон снижается на [color=lightblue]15%[/color]. - - [color=yellow]Caustic[/color] урон снижается на [color=lightblue]30%[/color]. + - [color=yellow]Radiation[/color] урон снижается на [color=lightblue]50%[/color]. - - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]60%[/color]. + - [color=yellow]Caustic[/color] урон снижается на [color=lightblue]25%[/color]. priority: 0 component: Armor + - message: >- + Понижает вашу скорость бега на [color=yellow]35%[/color]. + + Понижает вашу скорость ходьбы на [color=yellow]40%[/color]. + priority: 0 + component: ClothingSpeedModifier title: null +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 10010 + components: + - type: Transform + pos: -47.645576,-38.558796 + parent: 2 + - uid: 11932 + components: + - type: Transform + pos: -36.7244,-29.4892 + parent: 2 - uid: 22265 components: - type: Transform @@ -136350,6 +140822,16 @@ entities: - type: Transform pos: -47.208076,-43.543175 parent: 2 + - uid: 32157 + components: + - type: Transform + pos: -37.333775,-29.473576 + parent: 2 + - uid: 32158 + components: + - type: Transform + pos: -37.58377,-29.489202 + parent: 2 - uid: 44966 components: - type: Transform @@ -136384,6 +140866,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 51332 + components: + - type: Transform + pos: -36.3494,-29.4892 + parent: 2 - proto: ClothingOuterHospitalGown entities: - uid: 764 @@ -136491,6 +140978,12 @@ entities: rot: -1.5707963267948966 rad pos: -31.240711,-75.65763 parent: 2 + - uid: 22868 + components: + - type: Transform + rot: 3.6826447217080354 rad + pos: -31.260656,-78.20102 + parent: 2 - proto: ClothingOuterStraightjacket entities: - uid: 1840 @@ -136659,6 +141152,13 @@ entities: - type: Transform pos: 3.5246887,75.58588 parent: 45711 +- proto: ClothingOuterWinterWeb + entities: + - uid: 14179 + components: + - type: Transform + pos: -34.565834,28.717829 + parent: 2 - proto: ClothingOuterWizard entities: - uid: 12002 @@ -136934,7 +141434,7 @@ entities: - uid: 51302 components: - type: Transform - pos: -43.531513,30.59467 + pos: -46.86225,30.33034 parent: 2 - proto: ClothingShoesGreenLizardskin entities: @@ -137007,12 +141507,49 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 37471 + components: + - type: Transform + pos: -44.66791,-2.637774 + parent: 2 + - uid: 51515 + components: + - type: Transform + pos: -44.27729,-2.653399 + parent: 2 + - uid: 51516 + components: + - type: Transform + pos: -44.66791,-2.340899 + parent: 2 + - uid: 51886 + components: + - type: Transform + pos: -44.277287,-2.387774 + parent: 2 +- proto: ClothingShoesSwat + entities: + - uid: 11993 + components: + - type: Transform + pos: -37.45544,-27.535442 + parent: 2 + - uid: 14336 + components: + - type: Transform + pos: -35.51794,-27.51982 + parent: 2 - proto: ClothingShoesTourist entities: - - uid: 45352 + - uid: 56123 + components: + - type: Transform + pos: -34.584263,51.414684 + parent: 2 + - uid: 56124 components: - type: Transform - pos: -33.421734,51.682392 + pos: -34.584263,51.56665 parent: 2 - proto: ClothingUnderSocksBee entities: @@ -137222,15 +141759,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitColorRed - entities: - - uid: 11820 - components: - - type: Transform - parent: 11815 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingUniformJumpsuitColorYellow entities: - uid: 36002 @@ -137311,12 +141839,14 @@ entities: - uid: 43537 components: - type: Transform - pos: -33.436718,52.885536 + rot: 0.000553772842977196 rad + pos: -33.88428,53.716095 parent: 2 - uid: 43538 components: - type: Transform - pos: -33.624218,53.658974 + rot: 0.000553772842977196 rad + pos: -33.590584,53.623825 parent: 2 - proto: ClothingUniformJumpsuitLoungewear entities: @@ -137680,6 +142210,12 @@ entities: canCollide: False - proto: ComfyChair entities: + - uid: 1630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,25.5 + parent: 2 - uid: 3979 components: - type: Transform @@ -137815,16 +142351,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,33.5 parent: 2 - - uid: 12066 - components: - - type: Transform - pos: -63.5,5.5 - parent: 2 - - uid: 12067 - components: - - type: Transform - pos: -61.5,5.5 - parent: 2 - uid: 12070 components: - type: Transform @@ -137847,17 +142373,11 @@ entities: - type: Transform pos: -20.5,-46.5 parent: 2 - - uid: 12251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,32.5 - parent: 2 - - uid: 12284 + - uid: 13000 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,32.5 + pos: -13.5,30.5 parent: 2 - uid: 14002 components: @@ -137876,11 +142396,34 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,36.5 parent: 2 + - uid: 21118 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 23899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,25.5 + parent: 2 - uid: 24642 components: - type: Transform pos: -47.5,-29.5 parent: 2 + - uid: 26628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,29.5 + parent: 2 + - uid: 26629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 - uid: 27971 components: - type: Transform @@ -137899,6 +142442,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,14.5 parent: 2 + - uid: 32526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,30.5 + parent: 2 - uid: 32892 components: - type: Transform @@ -137916,6 +142465,18 @@ entities: - type: Transform pos: -11.5,42.5 parent: 2 + - uid: 33422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 33424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 - uid: 33594 components: - type: Transform @@ -138060,12 +142621,6 @@ entities: - type: Transform pos: -61.5,1.5 parent: 2 - - uid: 44522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 2 - uid: 47579 components: - type: Transform @@ -138096,6 +142651,18 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,16.5 parent: 45711 + - uid: 54206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,16.5 + parent: 2 + - uid: 54208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,20.5 + parent: 2 - proto: CommsComputerCircuitboard entities: - uid: 52102 @@ -138450,6 +143017,11 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-6.5 parent: 2 + - uid: 11475 + components: + - type: Transform + pos: 7.5,60.5 + parent: 2 - uid: 12109 components: - type: Transform @@ -138476,6 +143048,11 @@ entities: - type: Transform pos: 27.5,12.5 parent: 2 + - uid: 26714 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 - uid: 32810 components: - type: Transform @@ -138683,12 +143260,6 @@ entities: - type: Transform pos: 0.5,7.5 parent: 2 - - uid: 12127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 2 - proto: ComputerIFF entities: - uid: 32811 @@ -139066,11 +143637,6 @@ entities: parent: 2 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - - uid: 13967 - components: - - type: Transform - pos: 7.5,60.5 - parent: 2 - uid: 21533 components: - type: Transform @@ -139092,26 +143658,11 @@ entities: - type: Transform pos: -35.5,-19.5 parent: 2 - - uid: 11284 - components: - - type: Transform - pos: -16.5,42.5 - parent: 2 - uid: 12165 components: - type: Transform pos: -40.5,7.5 parent: 2 - - uid: 12166 - components: - - type: Transform - pos: 25.5,-36.5 - parent: 2 - - uid: 12167 - components: - - type: Transform - pos: 25.5,-36.5 - parent: 2 - uid: 12169 components: - type: Transform @@ -139138,6 +143689,11 @@ entities: - type: Transform pos: -6.5,29.5 parent: 2 + - uid: 47799 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 - proto: ComputerTelevisionCircuitboard entities: - uid: 52106 @@ -139171,6 +143727,11 @@ entities: parent: 2 - proto: ContrabassInstrument entities: + - uid: 32398 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 - uid: 53884 components: - type: Transform @@ -139486,6 +144047,24 @@ entities: - type: DeviceLinkSink links: - 26867 + - uid: 12788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12406 + - uid: 14690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12406 - uid: 19476 components: - type: Transform @@ -140146,6 +144725,18 @@ entities: - type: Transform pos: -42.5,36.5 parent: 2 + - uid: 26798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-39.5 + parent: 2 + - uid: 26896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-39.5 + parent: 2 - proto: CowToolboxFilled entities: - uid: 12212 @@ -140514,11 +145105,6 @@ entities: - type: Transform pos: -5.5,-74.5 parent: 2 - - uid: 27226 - components: - - type: Transform - pos: 58.5,40.5 - parent: 2 - uid: 43131 components: - type: Transform @@ -140552,6 +145138,29 @@ entities: - type: Transform pos: 3.5,-0.5 parent: 43176 + - uid: 48403 + components: + - type: Transform + pos: 58.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 - proto: CrateEngineeringGear entities: - uid: 19837 @@ -140710,10 +145319,10 @@ entities: parent: 56108 - proto: CrateFoodCooking entities: - - uid: 12239 + - uid: 53375 components: - type: Transform - pos: -29.5,29.5 + pos: -27.5,30.5 parent: 2 - proto: CrateFoodMRE entities: @@ -140724,6 +145333,42 @@ entities: parent: 2 - proto: CrateFreezer entities: + - uid: 22694 + components: + - type: Transform + pos: 28.5,3.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 22773 + - 22703 + - 22700 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 36957 components: - type: Transform @@ -140846,8 +145491,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -140864,15 +145509,15 @@ entities: showEnts: False occludes: True ents: - - 51589 - - 51590 - - 51591 - - 51592 - - 51593 - - 51594 - - 51595 - - 11300 - 51596 + - 11300 + - 51595 + - 51594 + - 51593 + - 51592 + - 51591 + - 51590 + - 51589 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -140914,55 +145559,6 @@ entities: parent: 2 - proto: CrateGenericSteel entities: - - uid: 776 - components: - - type: MetaData - desc: Контейнер, полный вещами для нужд смотрителя. - name: ящик запасов смотрителя - - type: Transform - pos: -27.5,-23.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1304 - - 1243 - - 1234 - - 1078 - - 1020 - - 964 - - 949 - - 857 - - 847 - - 844 - - 788 - - 785 - - 784 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 1569 components: - type: Transform @@ -140999,79 +145595,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 11815 - components: - - type: Transform - pos: 36.5,4.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 3.0183246 - - 11.3546505 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11818 - - 11817 - - 11819 - - 11816 - - 11820 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11822 - components: - - type: Transform - pos: 28.5,4.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 3.0183246 - - 11.3546505 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11823 - - 11824 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 12023 components: - type: Transform @@ -141135,19 +145658,19 @@ entities: - 0 - 0 - 0 - - uid: 12247 + - uid: 24694 components: - type: Transform - pos: 40.5,4.5 + pos: 11.5,58.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14926 + temperature: 293.14673 moles: - - 3.0183246 - - 11.3546505 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -141158,24 +145681,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12249 - - 12250 - - 12248 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 24694 - components: - - type: Transform - pos: 11.5,58.5 - parent: 2 - uid: 25249 components: - type: Transform @@ -141242,19 +145747,19 @@ entities: showEnts: False occludes: True ent: null - - uid: 35653 + - uid: 27671 components: - type: Transform - pos: -41.5,-22.5 + pos: -17.5,-9.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1496 + temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -141271,23 +145776,49 @@ entities: showEnts: False occludes: True ents: - - 35656 - - 35655 - - 35654 + - 24719 + - 35990 + - 35979 + - 35984 + - 25578 + - 24566 + - 28632 + - 35980 + - 35985 + - 35976 + - 35995 + - 35996 + - 35991 + - 35978 + - 35987 + - 35992 + - 35983 + - 35999 + - 35988 + - 35998 + - 35981 + - 35994 + - 35989 + - 35975 + - 35986 + - 35997 + - 35993 + - 35977 + - 35982 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 35974 + - uid: 35653 components: - type: Transform - pos: -17.5,-8.5 + pos: -41.5,-22.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14673 + temperature: 293.1496 moles: - 1.8856695 - 7.0937095 @@ -141307,35 +145838,9 @@ entities: showEnts: False occludes: True ents: - - 35999 - - 35998 - - 35997 - - 35996 - - 35995 - - 35994 - - 35993 - - 35992 - - 35991 - - 35990 - - 35989 - - 35988 - - 35987 - - 35986 - - 35985 - - 35984 - - 35983 - - 35982 - - 35981 - - 35980 - - 35979 - - 35978 - - 24719 - - 35975 - - 24566 - - 35977 - - 35976 - - 25578 - - 28632 + - 35656 + - 35655 + - 35654 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -141362,6 +145867,52 @@ entities: showEnts: False occludes: True ent: null + - uid: 47705 + components: + - type: Transform + pos: -26.5,-23.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 784 + - 847 + - 1234 + - 788 + - 785 + - 1243 + - 1020 + - 1078 + - 949 + - 964 + - 844 + - 857 + - 1304 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 51012 components: - type: Transform @@ -141476,29 +146027,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 12257 - components: - - type: Transform - pos: 24.5,-51.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 20.73429 - - 78.00041 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 32101 components: - type: Transform @@ -141989,15 +146517,6 @@ entities: - type: Transform pos: -24.40778,14.507276 parent: 2 -- proto: CrayonRainbow - entities: - - uid: 12248 - components: - - type: Transform - parent: 12247 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Crematorium entities: - uid: 12279 @@ -142316,15 +146835,11 @@ entities: - type: Transform pos: -0.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11754 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: CryostasisBeaker entities: - uid: 36158 @@ -142438,6 +146953,16 @@ entities: - type: Transform pos: 26.5,56.5 parent: 45711 + - uid: 14956 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 2 + - uid: 26635 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 - proto: CurtainsBlackOpen entities: - uid: 7950 @@ -142452,10 +146977,10 @@ entities: - type: Transform pos: 3.5,-7.5 parent: 2 - - uid: 47564 + - uid: 16564 components: - type: Transform - pos: -16.5,-8.5 + pos: -16.5,-9.5 parent: 2 - uid: 47570 components: @@ -142471,6 +146996,18 @@ entities: parent: 2 - proto: CurtainsGreen entities: + - uid: 11464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 2 + - uid: 11484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-49.5 + parent: 2 - uid: 13080 components: - type: Transform @@ -142493,6 +147030,12 @@ entities: parent: 2 - proto: CurtainsGreenOpen entities: + - uid: 12284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-50.5 + parent: 2 - uid: 13404 components: - type: Transform @@ -142617,6 +147160,12 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 11285 + components: + - type: Transform + rot: -2.2689280275926285 rad + pos: -64.46417,4.438328 + parent: 2 - uid: 17952 components: - type: Transform @@ -142629,6 +147178,12 @@ entities: - type: Transform pos: -48.493664,38.451557 parent: 2 + - uid: 51541 + components: + - type: Transform + rot: 0.524152548441276 rad + pos: -15.722064,27.234192 + parent: 2 - proto: DartPurple entities: - uid: 17953 @@ -142636,6 +147191,12 @@ entities: - type: Transform pos: -48.274914,38.639057 parent: 2 + - uid: 51543 + components: + - type: Transform + rot: 0.524152548441276 rad + pos: -15.878314,27.109192 + parent: 2 - proto: DartYellow entities: - uid: 1414 @@ -142652,11 +147213,23 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 17492 + components: + - type: Transform + rot: -1.9198621771937625 rad + pos: -64.307915,4.5945783 + parent: 2 - uid: 17954 components: - type: Transform pos: -48.47804,38.748436 parent: 2 + - uid: 51542 + components: + - type: Transform + rot: 0.524152548441276 rad + pos: -15.92276,27.317926 + parent: 2 - proto: DawInstrument entities: - uid: 15240 @@ -142837,15 +147410,6 @@ entities: text: Бар "№1" - type: WarpPoint location: СЕР - Бар "1" - - uid: 22051 - components: - - type: Transform - pos: -55.5,4.5 - parent: 2 - - type: NavMapBeacon - text: Бар "№2" - - type: WarpPoint - location: СЕР - Бар "2" - proto: DefaultStationBeaconBotany entities: - uid: 10113 @@ -142956,17 +147520,6 @@ entities: text: Офис главного врача - type: WarpPoint location: МЕД - Офис главного врача -- proto: DefaultStationBeaconCommand - entities: - - uid: 11840 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 2 - - type: NavMapBeacon - text: Конференц-зал - - type: WarpPoint - location: КМД - Конференц-зал - proto: DefaultStationBeaconCourtroom entities: - uid: 11356 @@ -143742,26 +148295,23 @@ entities: - type: Transform pos: -24.646152,26.576656 parent: 2 - - uid: 12335 + - uid: 12336 components: - type: Transform - pos: -13.5,-2.5 + pos: 50.5,2.5 parent: 2 - type: Physics canCollide: False bodyType: Static - - uid: 12336 + - uid: 23906 components: - type: Transform - pos: 50.5,2.5 + pos: 33.30294,1.6267412 parent: 2 - - type: Physics - canCollide: False - bodyType: Static - - uid: 22656 + - uid: 24761 components: - type: Transform - pos: -15.691493,35.565296 + pos: -15.404673,35.60707 parent: 2 - uid: 25322 components: @@ -143773,6 +148323,11 @@ entities: - type: Transform pos: -5.8308654,41.561558 parent: 2 + - uid: 51948 + components: + - type: Transform + pos: -13.659131,-3.1474998 + parent: 2 - uid: 56060 components: - type: Transform @@ -143912,6 +148467,12 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-32.5 parent: 2 + - uid: 11487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,25.5 + parent: 2 - uid: 11773 components: - type: Transform @@ -144122,17 +148683,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-8.5 parent: 2 - - uid: 12386 - components: - - type: Transform - pos: 0.5,3.5 - parent: 2 - - uid: 12387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 2 - uid: 12389 components: - type: Transform @@ -144196,18 +148746,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,3.5 parent: 2 - - uid: 12400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 2 - - uid: 12401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 2 - uid: 12402 components: - type: Transform @@ -144636,11 +149174,6 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,-3.5 parent: 2 - - uid: 12492 - components: - - type: Transform - pos: -41.5,-0.5 - parent: 2 - uid: 12493 components: - type: Transform @@ -144830,6 +149363,17 @@ entities: - type: Transform pos: 56.5,-21.5 parent: 2 + - uid: 24081 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 24096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-6.5 + parent: 2 - uid: 24764 components: - type: Transform @@ -144857,6 +149401,29 @@ entities: - type: Transform pos: 65.5,-19.5 parent: 2 + - uid: 33389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 2 + - uid: 33394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-29.5 + parent: 2 + - uid: 33395 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 33421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 - uid: 33605 components: - type: Transform @@ -145148,6 +149715,17 @@ entities: rot: 3.141592653589793 rad pos: 1.5,45.5 parent: 45711 + - uid: 53070 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 53237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,33.5 + parent: 2 - proto: DisposalJunction entities: - uid: 6398 @@ -145162,10 +149740,11 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,0.5 parent: 2 - - uid: 12406 + - uid: 11065 components: - type: Transform - pos: 8.5,1.5 + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 parent: 2 - uid: 12511 components: @@ -145250,12 +149829,6 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,22.5 parent: 2 - - uid: 12529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,25.5 - parent: 2 - uid: 12530 components: - type: Transform @@ -145332,11 +149905,28 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,58.5 parent: 2 + - uid: 11159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 - uid: 11797 components: - type: Transform pos: -0.5,33.5 parent: 2 + - uid: 11855 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 - uid: 12385 components: - type: Transform @@ -145366,12 +149956,6 @@ entities: - type: Transform pos: 54.5,-1.5 parent: 2 - - uid: 12535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,0.5 - parent: 2 - uid: 12536 components: - type: Transform @@ -145407,12 +149991,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-0.5 parent: 2 - - uid: 12543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-1.5 - parent: 2 - uid: 12547 components: - type: Transform @@ -145459,6 +150037,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,22.5 parent: 2 + - uid: 33418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,22.5 + parent: 2 - uid: 33611 components: - type: Transform @@ -145619,6 +150203,11 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-16.5 parent: 2 + - uid: 1658 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 - uid: 1776 components: - type: Transform @@ -145669,6 +150258,16 @@ entities: - type: Transform pos: -0.5,45.5 parent: 2 + - uid: 3385 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 - uid: 3680 components: - type: Transform @@ -145893,6 +150492,11 @@ entities: - type: Transform pos: -46.5,27.5 parent: 2 + - uid: 10003 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 - uid: 10111 components: - type: Transform @@ -145932,12 +150536,54 @@ entities: rot: 3.141592653589793 rad pos: -26.5,36.5 parent: 2 + - uid: 11104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 - uid: 11410 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,21.5 parent: 2 + - uid: 11488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 - uid: 11636 components: - type: Transform @@ -146037,12 +150683,6 @@ entities: rot: 3.141592653589793 rad pos: 70.5,-4.5 parent: 2 - - uid: 12555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-29.5 - parent: 2 - uid: 12556 components: - type: Transform @@ -146055,12 +150695,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-48.5 parent: 2 - - uid: 12558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-29.5 - parent: 2 - uid: 12559 components: - type: Transform @@ -146091,30 +150725,12 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,-2.5 parent: 2 - - uid: 12564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-29.5 - parent: 2 - - uid: 12565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-29.5 - parent: 2 - uid: 12566 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,20.5 parent: 2 - - uid: 12567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-29.5 - parent: 2 - uid: 12569 components: - type: Transform @@ -146132,18 +150748,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 12572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-29.5 - parent: 2 - - uid: 12573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-29.5 - parent: 2 - uid: 12574 components: - type: Transform @@ -146168,18 +150772,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-33.5 parent: 2 - - uid: 12578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-29.5 - parent: 2 - - uid: 12579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-29.5 - parent: 2 - uid: 12580 components: - type: Transform @@ -146192,12 +150784,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,18.5 parent: 2 - - uid: 12582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-29.5 - parent: 2 - uid: 12583 components: - type: Transform @@ -146210,12 +150796,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-29.5 parent: 2 - - uid: 12585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-29.5 - parent: 2 - uid: 12586 components: - type: Transform @@ -146327,18 +150907,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-31.5 parent: 2 - - uid: 12606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-29.5 - parent: 2 - - uid: 12607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-29.5 - parent: 2 - uid: 12608 components: - type: Transform @@ -146394,12 +150962,6 @@ entities: - type: Transform pos: -21.5,37.5 parent: 2 - - uid: 12619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,25.5 - parent: 2 - uid: 12621 components: - type: Transform @@ -146515,12 +151077,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,27.5 parent: 2 - - uid: 12649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,25.5 - parent: 2 - uid: 12650 components: - type: Transform @@ -146608,12 +151164,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-50.5 parent: 2 - - uid: 12668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 2 - uid: 12669 components: - type: Transform @@ -147276,53 +151826,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,0.5 parent: 2 - - uid: 12785 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - - uid: 12786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 2 - - uid: 12787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,1.5 - parent: 2 - - uid: 12788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 2 - - uid: 12789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,1.5 - parent: 2 - - uid: 12790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,1.5 - parent: 2 - - uid: 12791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 2 - - uid: 12792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 2 - uid: 12794 components: - type: Transform @@ -147395,12 +151898,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,0.5 parent: 2 - - uid: 12806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,0.5 - parent: 2 - uid: 12807 components: - type: Transform @@ -147825,12 +152322,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-0.5 parent: 2 - - uid: 12883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 2 - uid: 12884 components: - type: Transform @@ -147992,54 +152483,12 @@ entities: rot: 3.141592653589793 rad pos: -25.5,0.5 parent: 2 - - uid: 12911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 - parent: 2 - - uid: 12912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-1.5 - parent: 2 - - uid: 12913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-1.5 - parent: 2 - - uid: 12914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 2 - - uid: 12915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-1.5 - parent: 2 - - uid: 12916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 2 - uid: 12917 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,22.5 parent: 2 - - uid: 12918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-0.5 - parent: 2 - uid: 12919 components: - type: Transform @@ -148175,12 +152624,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,12.5 parent: 2 - - uid: 12947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,22.5 - parent: 2 - uid: 12948 components: - type: Transform @@ -148422,17 +152865,6 @@ entities: - type: Transform pos: -20.5,44.5 parent: 2 - - uid: 12996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,25.5 - parent: 2 - - uid: 12997 - components: - - type: Transform - pos: -20.5,32.5 - parent: 2 - uid: 12998 components: - type: Transform @@ -148445,18 +152877,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,10.5 parent: 2 - - uid: 13000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,25.5 - parent: 2 - - uid: 13001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,25.5 - parent: 2 - uid: 13003 components: - type: Transform @@ -152571,12 +156991,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-0.5 parent: 2 - - uid: 13779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-0.5 - parent: 2 - uid: 13780 components: - type: Transform @@ -153159,6 +157573,18 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,31.5 parent: 2 + - uid: 16441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 - uid: 17521 components: - type: Transform @@ -153170,6 +157596,16 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,51.5 parent: 2 + - uid: 19444 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 19562 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 - uid: 19567 components: - type: Transform @@ -153371,6 +157807,12 @@ entities: - type: Transform pos: 8.5,47.5 parent: 2 + - uid: 22607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 - uid: 22696 components: - type: Transform @@ -153404,6 +157846,12 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,48.5 parent: 2 + - uid: 23116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 - uid: 23158 components: - type: Transform @@ -153463,6 +157911,11 @@ entities: rot: 3.141592653589793 rad pos: 6.5,49.5 parent: 2 + - uid: 24089 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 - uid: 24269 components: - type: Transform @@ -153523,12 +157976,24 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-16.5 parent: 2 + - uid: 25565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-36.5 + parent: 2 - uid: 25722 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,37.5 parent: 2 + - uid: 26028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 2 - uid: 26085 components: - type: Transform @@ -153583,6 +158048,11 @@ entities: rot: 3.141592653589793 rad pos: -0.5,13.5 parent: 2 + - uid: 27188 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 2 - uid: 27339 components: - type: Transform @@ -153759,6 +158229,43 @@ entities: rot: -1.5707963267948966 rad pos: 68.5,-22.5 parent: 2 + - uid: 33385 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 33386 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 33387 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 33388 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 33390 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 33416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-36.5 + parent: 2 + - uid: 33417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-36.5 + parent: 2 - uid: 33614 components: - type: Transform @@ -154282,24 +158789,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,58.5 parent: 2 - - uid: 43148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 2 - - uid: 43149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 2 - - uid: 43150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 2 - uid: 43151 components: - type: Transform @@ -155072,6 +159561,93 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,45.5 parent: 45711 + - uid: 53071 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 53072 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 53073 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 53074 + components: + - type: Transform + pos: -25.5,42.5 + parent: 2 + - uid: 53075 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 53194 + components: + - type: Transform + pos: -25.5,40.5 + parent: 2 + - uid: 53231 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - uid: 53232 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - uid: 53233 + components: + - type: Transform + pos: -25.5,37.5 + parent: 2 + - uid: 53234 + components: + - type: Transform + pos: -25.5,36.5 + parent: 2 + - uid: 53235 + components: + - type: Transform + pos: -25.5,35.5 + parent: 2 + - uid: 53236 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - uid: 53366 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 53367 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 53368 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 54165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-36.5 + parent: 2 + - uid: 54166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-36.5 + parent: 2 - proto: DisposalPipeBroken entities: - uid: 13885 @@ -155280,6 +159856,12 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,30.5 parent: 2 + - uid: 8458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,32.5 + parent: 2 - uid: 8797 components: - type: Transform @@ -155297,6 +159879,11 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-16.5 parent: 2 + - uid: 11206 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 - uid: 11307 components: - type: Transform @@ -155330,12 +159917,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-29.5 parent: 2 - - uid: 13896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,25.5 - parent: 2 - uid: 13897 components: - type: Transform @@ -155410,41 +159991,18 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-21.5 parent: 2 - - uid: 13916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 2 - - uid: 13917 - components: - - type: Transform - pos: 29.5,1.5 - parent: 2 - uid: 13918 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-6.5 parent: 2 - - uid: 13919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-8.5 - parent: 2 - uid: 13920 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,3.5 parent: 2 - - uid: 13921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-1.5 - parent: 2 - uid: 13922 components: - type: Transform @@ -155602,6 +160160,12 @@ entities: - type: Transform pos: 38.5,-31.5 parent: 2 + - uid: 24173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 2 - uid: 24874 components: - type: Transform @@ -155659,6 +160223,18 @@ entities: - type: Transform pos: -13.5,41.5 parent: 2 + - uid: 32347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 33433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 - uid: 33659 components: - type: Transform @@ -155699,6 +160275,11 @@ entities: - type: Transform pos: -33.5,-31.5 parent: 2 + - uid: 37427 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 - uid: 42403 components: - type: Transform @@ -155711,12 +160292,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,55.5 parent: 2 - - uid: 43137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 2 - uid: 45592 components: - type: Transform @@ -155829,6 +160404,34 @@ entities: - type: Transform pos: 0.5,60.5 parent: 45711 + - uid: 53069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,46.5 + parent: 2 + - uid: 53238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,33.5 + parent: 2 + - uid: 53353 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 53997 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 + - uid: 54167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-36.5 + parent: 2 - proto: DisposalUnit entities: - uid: 191 @@ -155876,28 +160479,16 @@ entities: - type: Transform pos: 61.5,-36.5 parent: 2 - - uid: 10395 + - uid: 11458 components: - type: Transform - pos: -26.5,27.5 + pos: 28.5,1.5 parent: 2 - - uid: 11862 + - uid: 12579 components: - type: Transform - pos: 28.5,-42.5 + pos: -6.5,-6.5 parent: 2 - - type: ContainerContainer - containers: - DisposalUnit: !type:Container - showEnts: False - occludes: True - ents: - - 11863 - disposals: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Timer - uid: 13955 components: - type: Transform @@ -155913,12 +160504,6 @@ entities: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 13958 - components: - - type: Transform - pos: -0.5,3.5 - parent: 2 - - type: Timer - uid: 13959 components: - type: Transform @@ -155959,11 +160544,6 @@ entities: - type: Transform pos: -20.5,45.5 parent: 2 - - uid: 13971 - components: - - type: Transform - pos: -15.5,25.5 - parent: 2 - uid: 13972 components: - type: Transform @@ -155999,11 +160579,6 @@ entities: - type: Transform pos: 17.5,-21.5 parent: 2 - - uid: 13982 - components: - - type: Transform - pos: 29.5,1.5 - parent: 2 - uid: 13983 components: - type: Transform @@ -156019,16 +160594,6 @@ entities: - type: Transform pos: -35.5,4.5 parent: 2 - - uid: 13986 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 2 - - uid: 13987 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 2 - uid: 13992 components: - type: Transform @@ -156054,11 +160619,6 @@ entities: - type: Transform pos: -58.5,11.5 parent: 2 - - uid: 13999 - components: - - type: Transform - pos: -76.5,-3.5 - parent: 2 - uid: 14005 components: - type: Transform @@ -156079,6 +160639,21 @@ entities: - type: Transform pos: -47.5,30.5 parent: 2 + - uid: 21400 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 22066 + components: + - type: Transform + pos: -26.5,46.5 + parent: 2 + - uid: 23312 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 - uid: 24689 components: - type: Transform @@ -156149,6 +160724,11 @@ entities: - type: Transform pos: 55.5,-20.5 parent: 2 + - uid: 32791 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 - uid: 33663 components: - type: Transform @@ -156214,6 +160794,11 @@ entities: - type: Transform pos: -16.5,-41.5 parent: 2 + - uid: 51887 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 - uid: 52689 components: - type: Transform @@ -156239,6 +160824,11 @@ entities: showEnts: True occludes: True ents: [] + - uid: 53996 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 - proto: DisposalYJunction entities: - uid: 6904 @@ -156325,15 +160915,15 @@ entities: - type: Transform pos: 24.5,-26.5 parent: 2 - - uid: 14013 + - uid: 14017 components: - type: Transform - pos: -12.5,-7.5 + pos: 13.5,-50.5 parent: 2 - - uid: 14017 + - uid: 18650 components: - type: Transform - pos: 13.5,-50.5 + pos: -12.5,-8.5 parent: 2 - uid: 19965 components: @@ -156548,10 +161138,10 @@ entities: parent: 45711 - proto: DresserHeadOfPersonnelFilled entities: - - uid: 14038 + - uid: 1676 components: - type: Transform - pos: -18.5,-7.5 + pos: -18.5,-8.5 parent: 2 - proto: DresserHeadOfSecurityFilled entities: @@ -156609,13 +161199,6 @@ entities: - type: Transform pos: -93.58771,-4.4045258 parent: 2 -- proto: DrinkBadTouchGlass - entities: - - uid: 18850 - components: - - type: Transform - pos: -18.462708,29.48806 - parent: 2 - proto: DrinkBananaHonkGlass entities: - uid: 14042 @@ -156675,6 +161258,11 @@ entities: - type: Transform pos: -94.32263,5.1198206 parent: 2 + - uid: 13987 + components: + - type: Transform + pos: -16.300322,-11.202964 + parent: 2 - uid: 14045 components: - type: Transform @@ -156685,11 +161273,6 @@ entities: - type: Transform pos: -17.72894,-65.94841 parent: 2 - - uid: 14052 - components: - - type: Transform - pos: 37.517704,-36.26313 - parent: 2 - uid: 14057 components: - type: Transform @@ -156705,11 +161288,6 @@ entities: - type: Transform pos: -42.64974,13.723896 parent: 2 - - uid: 14060 - components: - - type: Transform - pos: -16.262947,-10.264133 - parent: 2 - uid: 17941 components: - type: Transform @@ -156904,12 +161482,25 @@ entities: parent: 2 - proto: DrinkBottlePatron entities: + - uid: 51607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.946741,32.33181 + parent: 2 - uid: 54134 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.48654,52.5636 parent: 45711 +- proto: DrinkBottleRum + entities: + - uid: 12251 + components: + - type: Transform + pos: 37.729885,-36.150627 + parent: 2 - proto: DrinkBottleVodka entities: - uid: 14065 @@ -156957,13 +161548,6 @@ entities: - type: Transform pos: -10.724438,-33.084232 parent: 2 -- proto: DrinkChampagneBottleFull - entities: - - uid: 12262 - components: - - type: Transform - pos: -5.4666038,-3.9946382 - parent: 2 - proto: DrinkChocolateGlass entities: - uid: 43410 @@ -156973,16 +161557,6 @@ entities: parent: 2 - proto: DrinkCoffee entities: - - uid: 11085 - components: - - type: Transform - pos: -43.680195,-0.27717775 - parent: 2 - - uid: 11098 - components: - - type: Transform - pos: -39.71145,1.5196972 - parent: 2 - uid: 14070 components: - type: Transform @@ -156998,6 +161572,13 @@ entities: - type: Transform pos: 3.8445816,14.934555 parent: 36861 +- proto: DrinkCoffeeJug + entities: + - uid: 32874 + components: + - type: Transform + pos: -42.69714,-2.443121 + parent: 2 - proto: DrinkCoffeeLiqueurBottleFull entities: - uid: 14071 @@ -157005,6 +161586,16 @@ entities: - type: Transform pos: -20.51789,-47.316505 parent: 2 + - uid: 36004 + components: + - type: Transform + pos: -42.382526,-2.443121 + parent: 2 + - uid: 36005 + components: + - type: Transform + pos: -42.146564,-2.4332883 + parent: 2 - proto: DrinkCognacBottleFull entities: - uid: 833 @@ -157049,6 +161640,15 @@ entities: rot: -1.5707963267948966 rad pos: 42.922615,-64.56492 parent: 2 +- proto: DrinkCreamCarton + entities: + - uid: 22773 + components: + - type: Transform + parent: 22694 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: DrinkFourteenLokoCan entities: - uid: 21158 @@ -157065,31 +161665,10 @@ entities: parent: 2 - proto: DrinkGlass entities: - - uid: 14081 - components: - - type: Transform - pos: -27.286774,27.671894 - parent: 2 - - uid: 14082 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.73069,-39.53575 - parent: 2 - - uid: 14083 - components: - - type: Transform - pos: 26.577913,-39.43853 - parent: 2 - - uid: 14084 - components: - - type: Transform - pos: 27.633467,-39.18853 - parent: 2 - - uid: 14088 + - uid: 12572 components: - type: Transform - pos: -27.69302,28.046894 + pos: -3.6754322,-4.684278 parent: 2 - uid: 14089 components: @@ -157137,6 +161716,16 @@ entities: - type: Transform pos: 19.507229,51.600918 parent: 2 + - uid: 36036 + components: + - type: Transform + pos: -41.791,-2.5807805 + parent: 2 + - uid: 36038 + components: + - type: Transform + pos: -41.368233,-2.5906136 + parent: 2 - uid: 42056 components: - type: Transform @@ -157152,6 +161741,27 @@ entities: - type: Transform pos: 35.39589,15.666204 parent: 45711 + - uid: 53340 + components: + - type: Transform + pos: -6.757686,-4.7780247 + parent: 2 + - uid: 53343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.4098072,-4.856153 + parent: 2 + - uid: 53351 + components: + - type: Transform + pos: -27.309425,27.04512 + parent: 2 + - uid: 53352 + components: + - type: Transform + pos: -27.621922,26.826372 + parent: 2 - uid: 54353 components: - type: Transform @@ -157188,6 +161798,13 @@ entities: - type: Transform pos: -27.706326,-3.3583038 parent: 2 +- proto: DrinkGreenTea + entities: + - uid: 56117 + components: + - type: Transform + pos: -85.40886,-6.761841 + parent: 2 - proto: DrinkHotCoco entities: - uid: 14095 @@ -157218,6 +161835,11 @@ entities: - type: Transform pos: -20.475674,-47.158455 parent: 2 + - uid: 36726 + components: + - type: Transform + pos: -41.407562,-2.1973 + parent: 2 - uid: 47758 components: - type: Transform @@ -157228,6 +161850,11 @@ entities: - type: Transform pos: 43.65272,-22.495699 parent: 2 + - uid: 53341 + components: + - type: Transform + pos: -4.351436,-7.4499 + parent: 2 - proto: DrinkIcedCoffeeGlass entities: - uid: 48294 @@ -157264,7 +161891,7 @@ entities: - uid: 51430 components: - type: Transform - pos: 23.599794,-71.4951 + pos: 23.614532,-71.46495 parent: 2 - proto: DrinkKiraSpecial entities: @@ -157280,13 +161907,6 @@ entities: - type: Transform pos: -4.638566,-26.19227 parent: 2 -- proto: DrinkMartiniGlass - entities: - - uid: 14113 - components: - - type: Transform - pos: -18.659184,29.653055 - parent: 2 - proto: DrinkMilkCarton entities: - uid: 14114 @@ -157296,10 +161916,17 @@ entities: - type: Transform pos: 13.381386,40.74678 parent: 2 - - uid: 24037 + - uid: 22703 components: - type: Transform - pos: -27.333603,28.737106 + parent: 22694 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 53350 + components: + - type: Transform + pos: -27.668798,27.279495 parent: 2 - proto: DrinkMoonshineGlass entities: @@ -157366,11 +161993,6 @@ entities: - type: Transform pos: -12.96573,-45.573284 parent: 2 - - uid: 51049 - components: - - type: Transform - pos: 1.6357081,5.5427713 - parent: 2 - proto: DrinkMugMetal entities: - uid: 14124 @@ -157417,10 +162039,21 @@ entities: - type: Transform pos: -34.461273,-38.485435 parent: 2 - - uid: 43123 + - uid: 32782 + components: + - type: Transform + rot: 0.000553772842977196 rad + pos: -18.52466,-6.250105 + parent: 2 + - uid: 36012 + components: + - type: Transform + pos: -41.85982,-2.1973 + parent: 2 + - uid: 53346 components: - type: Transform - pos: -18.477753,-5.26894 + pos: 1.7447098,-2.4447575 parent: 2 - proto: DrinkMugRainbow entities: @@ -157436,11 +162069,6 @@ entities: - type: Transform pos: -14.30012,-36.660137 parent: 2 - - uid: 14137 - components: - - type: Transform - pos: 35.463707,2.7114847 - parent: 2 - uid: 14138 components: - type: Transform @@ -157463,12 +162091,39 @@ entities: - type: Transform pos: -92.49218,-6.3306475 parent: 2 +- proto: DrinkNukieCan + entities: + - uid: 19445 + components: + - type: Transform + parent: 21119 + - type: Physics + canCollide: False - proto: DrinkPoisonWinebottleFull entities: - - uid: 8665 + - uid: 4875 + components: + - type: Transform + pos: -16.38546,39.833973 + parent: 2 +- proto: DrinkRumGlass + entities: + - uid: 23317 + components: + - type: Transform + pos: 37.30801,-36.4475 + parent: 2 +- proto: DrinkSakeGlass + entities: + - uid: 43006 components: - type: Transform - pos: -18.306389,39.455624 + pos: -34.53575,53.55879 + parent: 2 + - uid: 56129 + components: + - type: Transform + pos: -34.66459,53.707447 parent: 2 - proto: DrinkShotGlass entities: @@ -157504,6 +162159,24 @@ entities: - type: Transform pos: 44.38966,20.58044 parent: 2 + - uid: 11066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.536264,-3.6830716 + parent: 2 + - uid: 11131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.708139,-3.5580714 + parent: 2 + - uid: 12567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.723764,-3.7768216 + parent: 2 - uid: 14143 components: - type: Transform @@ -157528,11 +162201,13 @@ entities: parent: 2 - proto: DrinkSoyMilkCarton entities: - - uid: 14840 + - uid: 22700 components: - type: Transform - pos: -24.684967,33.628345 - parent: 2 + parent: 22694 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: DrinkStarkistCan entities: - uid: 14146 @@ -157554,31 +162229,18 @@ entities: parent: 2 - proto: DrinkTeacup entities: - - uid: 11125 - components: - - type: Transform - pos: -14.270099,31.79367 - parent: 2 - - uid: 12215 - components: - - type: Transform - pos: -43.305195,-0.07405278 - parent: 2 - - uid: 12942 - components: - - type: Transform - pos: -39.25832,0.9259471 - parent: 2 - - uid: 13030 - components: - - type: Transform - pos: -39.239323,1.3632114 - parent: 2 - uid: 33670 components: - type: Transform pos: 0.28275156,-12.230078 parent: 33049 +- proto: DrinkTeapot + entities: + - uid: 56116 + components: + - type: Transform + pos: -85.84636,-6.433716 + parent: 2 - proto: DrinkVodkaBottleFull entities: - uid: 14149 @@ -157622,35 +162284,30 @@ entities: parent: 2 - proto: DrinkWaterBottleFull entities: - - uid: 14172 - components: - - type: Transform - pos: -14.203141,-45.64087 - parent: 2 - - uid: 14173 + - uid: 506 components: - type: Transform - pos: -4.223978,-4.907226 + pos: -0.27628842,2.8929908 parent: 2 - - uid: 14176 + - uid: 9993 components: - type: Transform - pos: -5.536478,-3.1416016 + pos: -1.1669143,1.5262656 parent: 2 - - uid: 14179 + - uid: 12387 components: - type: Transform - pos: -5.333353,-5.422851 + pos: -0.7606635,2.3617413 parent: 2 - - uid: 14181 + - uid: 14088 components: - type: Transform - pos: -4.661478,-3.1259766 + pos: 0.59871066,1.5106409 parent: 2 - - uid: 14182 + - uid: 14172 components: - type: Transform - pos: -4.223978,-3.4072266 + pos: -14.203141,-45.64087 parent: 2 - uid: 14184 components: @@ -157687,6 +162344,16 @@ entities: - type: Transform pos: -17.655159,15.732133 parent: 2 + - uid: 22765 + components: + - type: Transform + pos: -0.3387892,1.5106409 + parent: 2 + - uid: 28439 + components: + - type: Transform + pos: -41.84552,1.8235631 + parent: 2 - uid: 32719 components: - type: Transform @@ -157915,11 +162582,36 @@ entities: rot: 1.5707963267948966 rad pos: 35.630264,16.634954 parent: 45711 + - uid: 51704 + components: + - type: Transform + pos: -41.876774,-0.1764364 + parent: 2 + - uid: 51710 + components: + - type: Transform + pos: -41.126774,-0.1608114 + parent: 2 + - uid: 51714 + components: + - type: Transform + pos: -41.142395,1.8391886 + parent: 2 - uid: 51996 components: - type: Transform pos: -17.73328,16.185257 parent: 2 + - uid: 53243 + components: + - type: Transform + pos: -0.76066333,3.346116 + parent: 2 + - uid: 53244 + components: + - type: Transform + pos: -0.22941339,3.9086158 + parent: 2 - uid: 53475 components: - type: Transform @@ -157937,6 +162629,11 @@ entities: - type: Transform pos: 12.102557,14.29726 parent: 45711 + - uid: 51364 + components: + - type: Transform + pos: -42.688354,-2.250755 + parent: 2 - proto: DrinkWhiskeyBottleFull entities: - uid: 806 @@ -157991,6 +162688,18 @@ entities: - type: Transform pos: -31.534424,43.241398 parent: 2 +- proto: Eggshells + entities: + - uid: 11090 + components: + - type: Transform + pos: -31.886059,29.731956 + parent: 2 + - uid: 11291 + components: + - type: Transform + pos: -31.417309,29.356956 + parent: 2 - proto: EggSpider entities: - uid: 46760 @@ -158170,6 +162879,12 @@ entities: parent: 2 - proto: EmergencyLight entities: + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 2 - uid: 1448 components: - type: Transform @@ -158191,6 +162906,12 @@ entities: - type: Transform pos: 32.5,29.5 parent: 2 + - uid: 2071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 - uid: 6078 components: - type: Transform @@ -158225,6 +162946,12 @@ entities: - type: Transform pos: -83.5,23.5 parent: 2 + - uid: 11966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 - uid: 13048 components: - type: Transform @@ -158536,15 +163263,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,15.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 14255 components: - type: Transform @@ -158938,15 +163656,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-10.5 parent: 2 - - uid: 14326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-6.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 14327 components: - type: Transform @@ -158997,12 +163706,6 @@ entities: rot: -1.5707963267948966 rad pos: 73.5,-12.5 parent: 2 - - uid: 21854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 2 - uid: 21957 components: - type: Transform @@ -159030,11 +163733,6 @@ entities: - type: Transform pos: -80.5,-13.5 parent: 2 - - uid: 24717 - components: - - type: Transform - pos: -4.5,1.5 - parent: 2 - uid: 26772 components: - type: Transform @@ -159354,10 +164052,11 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 2 - - uid: 51992 + - uid: 53061 components: - type: Transform - pos: 33.5,1.5 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 parent: 2 - proto: EmergencyMedipen entities: @@ -159484,6 +164183,16 @@ entities: rot: 3.141592653589793 rad pos: 83.5,30.5 parent: 2 + - uid: 48405 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - uid: 48406 + components: + - type: Transform + pos: 83.5,46.5 + parent: 2 - uid: 50861 components: - type: Transform @@ -159634,16 +164343,76 @@ entities: - uid: 35975 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27686 + - type: UnpoweredFlashlight + toggleActionEntity: 27686 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - uid: 35977 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27679 + - type: UnpoweredFlashlight + toggleActionEntity: 27679 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: EphedrineChemistryBottle entities: @@ -159666,6 +164435,11 @@ entities: parent: 2 - proto: EvidenceMarkerOne entities: + - uid: 8441 + components: + - type: Transform + pos: 26.729929,-41.07764 + parent: 2 - uid: 51064 components: - type: Transform @@ -159755,10 +164529,10 @@ entities: - type: Transform pos: -2.5,32.5 parent: 2 - - uid: 14375 + - uid: 14182 components: - type: Transform - pos: 1.5,2.5 + pos: 2.5,-1.5 parent: 2 - uid: 14376 components: @@ -159799,12 +164573,6 @@ entities: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 14384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-6.5 - parent: 2 - uid: 14385 components: - type: Transform @@ -159946,12 +164714,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 - - uid: 14418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-2.5 - parent: 2 - uid: 14420 components: - type: Transform @@ -160025,6 +164787,16 @@ entities: - type: Transform pos: 8.5,-56.5 parent: 2 + - uid: 51705 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 + - uid: 51909 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 - uid: 52092 components: - type: Transform @@ -160113,26 +164885,6 @@ entities: parent: 2 - type: FaxMachine name: Офис СИ - - uid: 14432 - components: - - type: MetaData - desc: Блюспейс-технологии в рабстве у бюрократа. - name: факс дальнего действия ГП - - type: Transform - pos: -17.5,-3.5 - parent: 2 - - type: FaxMachine - name: Офис ГП - - uid: 14436 - components: - - type: MetaData - desc: Блюспейс-технологии на мостике?! - name: факс дальнего действия мостика - - type: Transform - pos: -2.5,6.5 - parent: 2 - - type: FaxMachine - name: Мостик - uid: 14437 components: - type: MetaData @@ -160161,6 +164913,24 @@ entities: parent: 2 - type: FaxMachine name: Офис ГВ + - uid: 24843 + components: + - type: MetaData + name: факс дальнего действия ГП + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - type: FaxMachine + name: Офис ГП + - uid: 53241 + components: + - type: MetaData + name: факс дальнего действия мостика + - type: Transform + pos: 0.5,4.5 + parent: 2 + - type: FaxMachine + name: Мостик - proto: FaxMachineCaptain entities: - uid: 1215 @@ -160436,8 +165206,6 @@ entities: - 14765 - 14682 - 14766 - - type: AtmosDevice - joinedGrid: 2 - uid: 93 components: - type: Transform @@ -160455,8 +165223,6 @@ entities: - 24351 - 5410 - 5408 - - type: AtmosDevice - joinedGrid: 2 - uid: 114 components: - type: Transform @@ -160482,26 +165248,6 @@ entities: - 4006 - 3729 - 3730 - - type: AtmosDevice - joinedGrid: 2 - - uid: 123 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 2 - - type: DeviceList - devices: - - 15031 - - 14753 - - 14752 - - 14568 - - 14567 - - 15035 - - 4387 - - 4389 - - 4388 - - type: AtmosDevice - joinedGrid: 2 - uid: 869 components: - type: Transform @@ -160517,8 +165263,6 @@ entities: - 41113 - 2949 - 2941 - - type: AtmosDevice - joinedGrid: 2 - uid: 2128 components: - type: Transform @@ -160533,8 +165277,6 @@ entities: - 2049 - 2125 - 2184 - - type: AtmosDevice - joinedGrid: 2 - uid: 2518 components: - type: Transform @@ -160551,8 +165293,6 @@ entities: - 14504 - 2149 - 2216 - - type: AtmosDevice - joinedGrid: 2 - uid: 2589 components: - type: Transform @@ -160568,8 +165308,6 @@ entities: - 2584 - 2585 - 2588 - - type: AtmosDevice - joinedGrid: 2 - uid: 2661 components: - type: Transform @@ -160594,8 +165332,6 @@ entities: - 2658 - 15003 - 15002 - - type: AtmosDevice - joinedGrid: 2 - uid: 2719 components: - type: Transform @@ -160618,8 +165354,6 @@ entities: - 14610 - 2718 - 2715 - - type: AtmosDevice - joinedGrid: 2 - uid: 2743 components: - type: Transform @@ -160639,8 +165373,6 @@ entities: - 28319 - 2742 - 2740 - - type: AtmosDevice - joinedGrid: 2 - uid: 2746 components: - type: Transform @@ -160658,8 +165390,6 @@ entities: - 3104 - 3066 - 3067 - - type: AtmosDevice - joinedGrid: 2 - uid: 2884 components: - type: Transform @@ -160675,7 +165405,6 @@ entities: - 29938 - 20324 - 31446 - - 28854 - 2881 - 2875 - 2880 @@ -160691,8 +165420,7 @@ entities: - 2899 - 2900 - 2901 - - type: AtmosDevice - joinedGrid: 2 + - 23472 - uid: 2904 components: - type: Transform @@ -160709,8 +165437,6 @@ entities: - 32229 - 2897 - 2898 - - type: AtmosDevice - joinedGrid: 2 - uid: 2953 components: - type: Transform @@ -160727,8 +165453,6 @@ entities: - 2952 - 2944 - 1797 - - type: AtmosDevice - joinedGrid: 2 - uid: 4693 components: - type: Transform @@ -160737,13 +165461,9 @@ entities: parent: 2 - type: DeviceList devices: - - 14711 - - 14690 - 4686 - 4668 - 4679 - - type: AtmosDevice - joinedGrid: 2 - uid: 5273 components: - type: Transform @@ -160758,8 +165478,6 @@ entities: - 15106 - 5265 - 5223 - - type: AtmosDevice - joinedGrid: 2 - uid: 6818 components: - type: Transform @@ -160782,8 +165500,6 @@ entities: - 14694 - 5275 - 5274 - - type: AtmosDevice - joinedGrid: 2 - uid: 7898 components: - type: Transform @@ -160811,8 +165527,6 @@ entities: - 9499 - 9500 - 9501 - - type: AtmosDevice - joinedGrid: 2 - uid: 8220 components: - type: Transform @@ -160830,8 +165544,6 @@ entities: - 8202 - 8203 - 8212 - - type: AtmosDevice - joinedGrid: 2 - uid: 11610 components: - type: Transform @@ -160849,8 +165561,6 @@ entities: - 7826 - 8042 - 11990 - - type: AtmosDevice - joinedGrid: 2 - uid: 14451 components: - type: Transform @@ -160869,8 +165579,6 @@ entities: - 9545 - 9547 - 9546 - - type: AtmosDevice - joinedGrid: 2 - uid: 14452 components: - type: Transform @@ -160886,8 +165594,6 @@ entities: - 14458 - 14457 - 14513 - - type: AtmosDevice - joinedGrid: 2 - uid: 14455 components: - type: Transform @@ -160902,8 +165608,6 @@ entities: - 2587 - 2586 - 2583 - - type: AtmosDevice - joinedGrid: 2 - uid: 14456 components: - type: Transform @@ -160917,8 +165621,6 @@ entities: - 2211 - 2210 - 2212 - - type: AtmosDevice - joinedGrid: 2 - uid: 14461 components: - type: Transform @@ -160934,8 +165636,6 @@ entities: - 14780 - 14799 - 23168 - - type: AtmosDevice - joinedGrid: 2 - uid: 14462 components: - type: Transform @@ -160954,8 +165654,6 @@ entities: - 2187 - 2185 - 2186 - - type: AtmosDevice - joinedGrid: 2 - uid: 14468 components: - type: Transform @@ -160965,8 +165663,6 @@ entities: devices: - 15153 - 44455 - - type: AtmosDevice - joinedGrid: 2 - uid: 14472 components: - type: Transform @@ -160987,8 +165683,6 @@ entities: - 4458 - 4430 - 4457 - - type: AtmosDevice - joinedGrid: 2 - uid: 14474 components: - type: Transform @@ -161002,8 +165696,6 @@ entities: - 14817 - 14778 - 14777 - - type: AtmosDevice - joinedGrid: 2 - uid: 14475 components: - type: Transform @@ -161015,8 +165707,6 @@ entities: - 14989 - 5485 - 1964 - - type: AtmosDevice - joinedGrid: 2 - uid: 14476 components: - type: Transform @@ -161026,7 +165716,7 @@ entities: - type: DeviceList devices: - 14669 - - 14753 + - 325 - 4413 - 14955 - 14843 @@ -161038,8 +165728,6 @@ entities: - 4363 - 4418 - 4415 - - type: AtmosDevice - joinedGrid: 2 - uid: 14477 components: - type: Transform @@ -161071,8 +165759,6 @@ entities: - 3400 - 3401 - 3402 - - type: AtmosDevice - joinedGrid: 2 - uid: 14479 components: - type: Transform @@ -161094,8 +165780,6 @@ entities: - 14838 - 2603 - 2593 - - type: AtmosDevice - joinedGrid: 2 - uid: 14482 components: - type: Transform @@ -161114,8 +165798,6 @@ entities: - 2747 - 2745 - 878 - - type: AtmosDevice - joinedGrid: 2 - uid: 14483 components: - type: Transform @@ -161136,8 +165818,6 @@ entities: - 34936 - 8125 - 24351 - - type: AtmosDevice - joinedGrid: 2 - uid: 14486 components: - type: Transform @@ -161152,8 +165832,6 @@ entities: - 14453 - 5484 - 233 - - type: AtmosDevice - joinedGrid: 2 - uid: 14489 components: - type: Transform @@ -161167,8 +165845,6 @@ entities: - 5512 - 5515 - 5534 - - type: AtmosDevice - joinedGrid: 2 - uid: 14490 components: - type: Transform @@ -161190,8 +165866,6 @@ entities: - 4648 - 4650 - 4647 - - type: AtmosDevice - joinedGrid: 2 - uid: 14495 components: - type: Transform @@ -161206,8 +165880,6 @@ entities: - 5288 - 5287 - 577 - - type: AtmosDevice - joinedGrid: 2 - uid: 14496 components: - type: Transform @@ -161222,8 +165894,6 @@ entities: - 739 - 5445 - 5446 - - type: AtmosDevice - joinedGrid: 2 - uid: 14498 components: - type: Transform @@ -161242,8 +165912,6 @@ entities: - 14850 - 2649 - 2648 - - type: AtmosDevice - joinedGrid: 2 - uid: 14499 components: - type: Transform @@ -161256,8 +165924,6 @@ entities: - 15009 - 2480 - 2476 - - type: AtmosDevice - joinedGrid: 2 - uid: 14505 components: - type: Transform @@ -161272,8 +165938,6 @@ entities: - 2712 - 2714 - 2968 - - type: AtmosDevice - joinedGrid: 2 - uid: 14506 components: - type: Transform @@ -161288,8 +165952,6 @@ entities: - 4808 - 724 - 4836 - - type: AtmosDevice - joinedGrid: 2 - uid: 14509 components: - type: Transform @@ -161305,8 +165967,6 @@ entities: - 14581 - 2684 - 2671 - - type: AtmosDevice - joinedGrid: 2 - uid: 14512 components: - type: Transform @@ -161322,8 +165982,6 @@ entities: - 1400 - 1908 - 1437 - - type: AtmosDevice - joinedGrid: 2 - uid: 14514 components: - type: Transform @@ -161334,8 +165992,6 @@ entities: - 15103 - 15111 - 15110 - - type: AtmosDevice - joinedGrid: 2 - uid: 14515 components: - type: Transform @@ -161349,8 +166005,6 @@ entities: - 14632 - 14631 - 14630 - - type: AtmosDevice - joinedGrid: 2 - uid: 14516 components: - type: Transform @@ -161364,24 +166018,18 @@ entities: - 14639 - 14640 - 14641 - - type: AtmosDevice - joinedGrid: 2 - uid: 14517 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14518 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14520 components: - type: Transform @@ -161394,8 +166042,6 @@ entities: - 2464 - 2466 - 2465 - - type: AtmosDevice - joinedGrid: 2 - uid: 14521 components: - type: Transform @@ -161412,8 +166058,6 @@ entities: - 22 - 9469 - 9474 - - type: AtmosDevice - joinedGrid: 2 - uid: 14522 components: - type: Transform @@ -161425,18 +166069,6 @@ entities: - 14786 - 14784 - 14785 - - 14558 - - 14557 - - 14662 - - 14556 - - 14555 - - 14894 - - 14554 - - 14553 - - 14895 - - 14552 - - 14551 - - 14851 - 495 - 27458 - 26069 @@ -161449,8 +166081,6 @@ entities: - 9363 - 9364 - 34937 - - type: AtmosDevice - joinedGrid: 2 - uid: 14528 components: - type: Transform @@ -161464,8 +166094,6 @@ entities: - 15149 - 15142 - 15141 - - type: AtmosDevice - joinedGrid: 2 - uid: 14529 components: - type: Transform @@ -161480,8 +166108,6 @@ entities: - 15146 - 15147 - 15148 - - type: AtmosDevice - joinedGrid: 2 - uid: 14534 components: - type: Transform @@ -161495,8 +166121,6 @@ entities: - 2394 - 2396 - 2395 - - type: AtmosDevice - joinedGrid: 2 - uid: 14535 components: - type: Transform @@ -161514,8 +166138,6 @@ entities: - 9591 - 9593 - 2189 - - type: AtmosDevice - joinedGrid: 2 - uid: 19681 components: - type: Transform @@ -161529,8 +166151,6 @@ entities: - 5495 - 534 - 1420 - - type: AtmosDevice - joinedGrid: 2 - uid: 23804 components: - type: Transform @@ -161545,8 +166165,6 @@ entities: - 9431 - 9424 - 9430 - - type: AtmosDevice - joinedGrid: 2 - uid: 32951 components: - type: Transform @@ -161558,23 +166176,17 @@ entities: - 32850 - 32930 - 32813 - - type: AtmosDevice - joinedGrid: 32764 - uid: 33673 components: - type: Transform pos: 2.5,-5.5 parent: 33049 - - type: AtmosDevice - joinedGrid: 33049 - uid: 33674 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,14.5 parent: 33049 - - type: AtmosDevice - joinedGrid: 33049 - uid: 35493 components: - type: Transform @@ -161591,8 +166203,6 @@ entities: - 37254 - 47768 - 47767 - - type: AtmosDevice - joinedGrid: 2 - uid: 35494 components: - type: Transform @@ -161608,8 +166218,6 @@ entities: - 42069 - 43978 - 41675 - - type: AtmosDevice - joinedGrid: 2 - uid: 36239 components: - type: Transform @@ -161624,39 +166232,59 @@ entities: - 66 - 36628 - 22775 - - type: AtmosDevice - joinedGrid: 2 - uid: 37346 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,11.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 + - type: DeviceList + devices: + - 50833 + - 50885 + - 50884 + - 37365 + - 37369 + - 37371 + - 37366 - uid: 37347 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,5.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 + - type: DeviceList + devices: + - 50898 + - 50899 + - 50812 + - 37358 + - 37364 + - 37362 + - 37360 + - 37365 - uid: 37348 components: - type: Transform pos: 12.5,9.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 + - type: DeviceList + devices: + - 51313 + - 50811 + - 51314 + - 37358 + - 37357 + - 37356 + - 37355 + - 37354 + - 37353 - uid: 37349 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 - uid: 41243 components: - type: Transform @@ -161672,8 +166300,6 @@ entities: - 9407 - 9406 - 9408 - - type: AtmosDevice - joinedGrid: 2 - uid: 43638 components: - type: Transform @@ -161695,8 +166321,6 @@ entities: - 4690 - 4691 - 4549 - - type: AtmosDevice - joinedGrid: 2 - uid: 43639 components: - type: Transform @@ -161717,8 +166341,6 @@ entities: - 4547 - 4658 - 4660 - - type: AtmosDevice - joinedGrid: 2 - uid: 43686 components: - type: Transform @@ -161732,8 +166354,6 @@ entities: - 4649 - 4641 - 4645 - - type: AtmosDevice - joinedGrid: 2 - uid: 43739 components: - type: Transform @@ -161746,11 +166366,7 @@ entities: - 15029 - 14823 - 14801 - - 14690 - - 14711 - 14800 - - type: AtmosDevice - joinedGrid: 2 - uid: 43754 components: - type: Transform @@ -161762,13 +166378,14 @@ entities: - 14700 - 14725 - 14707 - - 14567 - - 14568 + - 51906 + - 51950 - 14868 - 14744 - 14745 - - type: AtmosDevice - joinedGrid: 2 + - 4019 + - 4010 + - 4011 - uid: 43770 components: - type: Transform @@ -161776,17 +166393,17 @@ entities: parent: 2 - type: DeviceList devices: - - 1252 - - 1251 - - 1259 + - 11223 + - 11222 + - 4008 - 14698 - 14699 - 14685 - 14992 - 14995 - 14878 - - type: AtmosDevice - joinedGrid: 2 + - 4009 + - 4002 - uid: 44128 components: - type: Transform @@ -161811,8 +166428,6 @@ entities: - 3571 - 3568 - 3570 - - type: AtmosDevice - joinedGrid: 2 - uid: 44829 components: - type: Transform @@ -161828,8 +166443,6 @@ entities: - 14856 - 3529 - 3527 - - type: AtmosDevice - joinedGrid: 2 - uid: 44853 components: - type: Transform @@ -161863,8 +166476,6 @@ entities: - 3747 - 3746 - 3745 - - type: AtmosDevice - joinedGrid: 2 - uid: 44856 components: - type: Transform @@ -161873,8 +166484,6 @@ entities: parent: 2 - type: DeviceList devices: - - 14908 - - 14968 - 15051 - 15030 - 14947 @@ -161884,8 +166493,6 @@ entities: - 3251 - 3252 - 3250 - - type: AtmosDevice - joinedGrid: 2 - uid: 45290 components: - type: Transform @@ -161902,16 +166509,9 @@ entities: - 14909 - 14874 - 14948 - - 14956 - - 14913 - - 14946 - - 15136 - - 14916 - 3153 - 3215 - 3142 - - type: AtmosDevice - joinedGrid: 2 - uid: 45291 components: - type: Transform @@ -161920,17 +166520,10 @@ entities: parent: 2 - type: DeviceList devices: - - 14956 - - 14913 - - 14946 - - 15136 - - 14916 - 21067 - 3171 - 3218 - 3173 - - type: AtmosDevice - joinedGrid: 2 - uid: 45293 components: - type: Transform @@ -161955,8 +166548,23 @@ entities: - 3396 - 3398 - 3394 - - type: AtmosDevice - joinedGrid: 2 + - uid: 45308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 472 + - 473 + - 325 + - 43119 + - 4388 + - 4389 + - 4387 + - 51906 + - 51950 - uid: 45314 components: - type: Transform @@ -161978,16 +166586,12 @@ entities: - 41747 - 11941 - 11990 - - type: AtmosDevice - joinedGrid: 2 - uid: 48330 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,6.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 51042 components: - type: Transform @@ -162005,8 +166609,6 @@ entities: - 3418 - 3461 - 3460 - - type: AtmosDevice - joinedGrid: 2 - uid: 51695 components: - type: Transform @@ -162015,9 +166617,9 @@ entities: parent: 2 - type: DeviceList devices: - - 1252 - - 1251 - - 1259 + - 4968 + - 4971 + - 4972 - 14879 - 14880 - 14881 @@ -162025,14 +166627,15 @@ entities: - 14883 - 14884 - 15101 - - 15100 + - 4969 - 15099 - 11778 - 14888 - 14887 - 30578 - - type: AtmosDevice - joinedGrid: 2 + - 4970 + - 11223 + - 11222 - uid: 51697 components: - type: Transform @@ -162047,7 +166650,6 @@ entities: - 5140 - 15104 - 15101 - - 15100 - 15099 - 15102 - 15103 @@ -162062,8 +166664,6 @@ entities: - 5054 - 5053 - 5055 - - type: AtmosDevice - joinedGrid: 2 - uid: 51717 components: - type: Transform @@ -162083,8 +166683,6 @@ entities: - 8254 - 8253 - 8247 - - type: AtmosDevice - joinedGrid: 2 - uid: 51718 components: - type: Transform @@ -162109,8 +166707,6 @@ entities: - 4003 - 3972 - 3748 - - type: AtmosDevice - joinedGrid: 2 - uid: 51720 components: - type: Transform @@ -162127,8 +166723,6 @@ entities: - 8259 - 8258 - 14566 - - type: AtmosDevice - joinedGrid: 2 - uid: 51722 components: - type: Transform @@ -162142,8 +166736,6 @@ entities: - 8167 - 8168 - 8166 - - type: AtmosDevice - joinedGrid: 2 - uid: 51723 components: - type: Transform @@ -162159,8 +166751,6 @@ entities: - 8353 - 8360 - 8359 - - type: AtmosDevice - joinedGrid: 2 - uid: 51724 components: - type: Transform @@ -162174,8 +166764,6 @@ entities: - 8432 - 8434 - 8433 - - type: AtmosDevice - joinedGrid: 2 - uid: 51725 components: - type: Transform @@ -162189,8 +166777,6 @@ entities: - 8437 - 8436 - 8435 - - type: AtmosDevice - joinedGrid: 2 - uid: 51726 components: - type: Transform @@ -162206,8 +166792,6 @@ entities: - 8450 - 8451 - 8449 - - type: AtmosDevice - joinedGrid: 2 - uid: 51727 components: - type: Transform @@ -162221,8 +166805,6 @@ entities: - 8529 - 8530 - 8528 - - type: AtmosDevice - joinedGrid: 2 - uid: 51730 components: - type: Transform @@ -162236,8 +166818,6 @@ entities: - 8532 - 8533 - 8531 - - type: AtmosDevice - joinedGrid: 2 - uid: 51731 components: - type: Transform @@ -162252,18 +166832,30 @@ entities: - 15061 - 15062 - 15063 - - 14571 + - 51320 - 14735 - - 14572 - - 14573 - - 14574 + - 23337 + - 1784 + - 47720 - 14811 - 14754 - 14748 - 14864 - 24641 - - type: AtmosDevice - joinedGrid: 2 + - 8670 + - 8672 + - 8667 + - 8669 + - 8671 + - 8668 + - 8570 + - 8566 + - 8569 + - 8565 + - 8568 + - 8564 + - 8567 + - 8563 - uid: 51732 components: - type: Transform @@ -162280,8 +166872,6 @@ entities: - 14762 - 14764 - 14761 - - type: AtmosDevice - joinedGrid: 2 - uid: 51733 components: - type: Transform @@ -162307,8 +166897,6 @@ entities: - 8779 - 8780 - 8778 - - type: AtmosDevice - joinedGrid: 2 - uid: 51735 components: - type: Transform @@ -162325,8 +166913,6 @@ entities: - 8777 - 8774 - 8775 - - type: AtmosDevice - joinedGrid: 2 - uid: 51736 components: - type: Transform @@ -162348,8 +166934,6 @@ entities: - 51737 - 51749 - 8799 - - type: AtmosDevice - joinedGrid: 2 - uid: 51746 components: - type: Transform @@ -162364,8 +166948,6 @@ entities: - 15066 - 14683 - 14832 - - type: AtmosDevice - joinedGrid: 2 - uid: 51747 components: - type: Transform @@ -162380,8 +166962,6 @@ entities: - 14710 - 14695 - 8906 - - type: AtmosDevice - joinedGrid: 2 - uid: 51748 components: - type: Transform @@ -162409,8 +166989,6 @@ entities: - 14717 - 15065 - 32737 - - type: AtmosDevice - joinedGrid: 2 - uid: 51750 components: - type: Transform @@ -162434,8 +167012,6 @@ entities: - 9165 - 9167 - 9163 - - type: AtmosDevice - joinedGrid: 2 - uid: 51751 components: - type: Transform @@ -162454,8 +167030,6 @@ entities: - 9217 - 9227 - 9218 - - type: AtmosDevice - joinedGrid: 2 - uid: 51752 components: - type: Transform @@ -162473,8 +167047,6 @@ entities: - 9217 - 9218 - 9227 - - type: AtmosDevice - joinedGrid: 2 - proto: FireAlarmAssembly entities: - uid: 14536 @@ -162615,78 +167187,6 @@ entities: - type: Transform pos: -34.5,-66.5 parent: 2 - - uid: 14551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - - uid: 14552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - - uid: 14553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - - uid: 14554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - - uid: 14555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - - uid: 14556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - - uid: 14557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - - uid: 14558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - uid: 14559 components: - type: Transform @@ -162901,36 +167401,6 @@ entities: deviceLists: - 774 - 8220 - - uid: 1251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 43770 - - 51695 - - uid: 1252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 43770 - - 51695 - - uid: 1259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 43770 - - 51695 - uid: 2374 components: - type: Transform @@ -163013,28 +167483,6 @@ entities: - 51731 - 8260 - 51720 - - uid: 14567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - - 14 - - 43754 - - uid: 14568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - - 14 - - 43754 - uid: 14569 components: - type: Transform @@ -163053,42 +167501,6 @@ entities: - type: DeviceNetwork deviceLists: - 1314 - - uid: 14571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51731 - - uid: 14572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51731 - - uid: 14573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51731 - - uid: 14574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51731 - uid: 14575 components: - type: Transform @@ -163565,21 +167977,22 @@ entities: rot: -1.5707963267948966 rad pos: -89.5,5.5 parent: 2 - - uid: 24524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,5.5 - parent: 2 - - uid: 28854 + - uid: 23472 components: - type: Transform - pos: -3.5,66.5 + rot: 3.141592653589793 rad + pos: -0.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - 41856 - 2884 + - uid: 24524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,5.5 + parent: 2 - uid: 29504 components: - type: Transform @@ -163708,6 +168121,28 @@ entities: - 22436 - 50 - 51736 + - uid: 51906 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 45308 + - 14 + - 19 + - 43754 + - uid: 51950 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 45308 + - 14 + - 19 + - 43754 - uid: 56200 components: - type: Transform @@ -163824,6 +168259,17 @@ entities: - type: DeviceNetwork deviceLists: - 43546 + - uid: 325 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 45308 + - 69 + - 14476 - uid: 369 components: - type: Transform @@ -163855,6 +168301,24 @@ entities: - 41058 - 41059 - 2746 + - uid: 472 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 45308 + - uid: 473 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 45308 - uid: 495 components: - type: Transform @@ -163863,7 +168327,7 @@ entities: - type: DeviceNetwork deviceLists: - 14522 - - 25 + - 496 - uid: 534 components: - type: Transform @@ -164010,6 +168474,15 @@ entities: - 1601 - 21706 - 35493 + - uid: 1784 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - 51731 - uid: 1807 components: - type: Transform @@ -164248,6 +168721,28 @@ entities: deviceLists: - 14495 - 85 + - uid: 11222 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 51695 + - 7 + - 43770 + - uid: 11223 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 51695 + - 7 + - 43770 - uid: 11778 components: - type: Transform @@ -164431,14 +168926,6 @@ entities: - 51734 - 51733 - 51735 - - uid: 14662 - components: - - type: Transform - pos: 28.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - uid: 14663 components: - type: Transform @@ -164459,11 +168946,6 @@ entities: - 51734 - 51733 - 51735 - - uid: 14665 - components: - - type: Transform - pos: 39.5,5.5 - parent: 2 - uid: 14666 components: - type: Transform @@ -164588,16 +169070,6 @@ entities: deviceLists: - 14498 - 2661 - - uid: 14690 - components: - - type: Transform - pos: -1.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 43739 - - 4692 - - 4693 - uid: 14691 components: - type: Transform @@ -164644,6 +169116,7 @@ entities: - type: DeviceNetwork deviceLists: - 43739 + - 9995 - uid: 14697 components: - type: Transform @@ -164746,16 +169219,6 @@ entities: - type: DeviceNetwork deviceLists: - 51747 - - uid: 14711 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 43739 - - 4692 - - 4693 - uid: 14712 components: - type: Transform @@ -165071,27 +169534,6 @@ entities: - type: DeviceNetwork deviceLists: - 43638 - - uid: 14752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - - 14 - - uid: 14753 - components: - - type: Transform - pos: -11.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 - - 14476 - - 123 - - 14 - uid: 14754 components: - type: Transform @@ -165349,6 +169791,7 @@ entities: deviceLists: - 14522 - 5169 + - 496 - uid: 14785 components: - type: Transform @@ -165358,6 +169801,7 @@ entities: deviceLists: - 14522 - 5169 + - 496 - uid: 14786 components: - type: Transform @@ -165367,6 +169811,7 @@ entities: deviceLists: - 14522 - 5169 + - 496 - uid: 14787 components: - type: Transform @@ -165463,6 +169908,7 @@ entities: deviceLists: - 43686 - 43739 + - 9995 - uid: 14801 components: - type: Transform @@ -165472,6 +169918,7 @@ entities: deviceLists: - 43739 - 716 + - 9995 - uid: 14802 components: - type: Transform @@ -165629,6 +170076,7 @@ entities: - type: DeviceNetwork deviceLists: - 43739 + - 9995 - uid: 14823 components: - type: Transform @@ -165637,6 +170085,7 @@ entities: - type: DeviceNetwork deviceLists: - 43739 + - 9995 - uid: 14824 components: - type: Transform @@ -165783,14 +170232,6 @@ entities: deviceLists: - 14498 - 2661 - - uid: 14851 - components: - - type: Transform - pos: 40.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - uid: 14853 components: - type: Transform @@ -166066,22 +170507,6 @@ entities: deviceLists: - 14452 - 6071 - - uid: 14894 - components: - - type: Transform - pos: 32.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - - uid: 14895 - components: - - type: Transform - pos: 36.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14522 - uid: 14896 components: - type: Transform @@ -166139,17 +170564,6 @@ entities: - type: DeviceNetwork deviceLists: - 9193 - - uid: 14908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1326 - - 44856 - - 3253 - uid: 14909 components: - type: Transform @@ -166184,28 +170598,6 @@ entities: - type: Transform pos: -70.5,14.5 parent: 2 - - uid: 14913 - components: - - type: Transform - pos: -17.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3220 - - 45290 - - 45291 - - 3216 - - uid: 14916 - components: - - type: Transform - pos: -13.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3220 - - 45290 - - 45291 - - 3216 - uid: 14917 components: - type: Transform @@ -166383,22 +170775,6 @@ entities: - 44128 - 44853 - 3776 - - uid: 14944 - components: - - type: Transform - pos: 31.5,5.5 - parent: 2 - - uid: 14946 - components: - - type: Transform - pos: -16.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3220 - - 45290 - - 45291 - - 3216 - uid: 14947 components: - type: Transform @@ -166464,17 +170840,6 @@ entities: - 69 - 21 - 14476 - - uid: 14956 - components: - - type: Transform - pos: -18.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3220 - - 45290 - - 45291 - - 3216 - uid: 14957 components: - type: Transform @@ -166529,17 +170894,6 @@ entities: - 44128 - 44853 - 3776 - - uid: 14968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1326 - - 44856 - - 3253 - uid: 14969 components: - type: Transform @@ -166878,6 +171232,7 @@ entities: - type: DeviceNetwork deviceLists: - 43739 + - 9995 - uid: 15030 components: - type: Transform @@ -166890,15 +171245,6 @@ entities: - 44128 - 44856 - 3253 - - uid: 15031 - components: - - type: Transform - pos: -15.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - - 14 - uid: 15033 components: - type: Transform @@ -166909,15 +171255,6 @@ entities: - type: Transform pos: -18.5,-51.5 parent: 2 - - uid: 15035 - components: - - type: Transform - pos: -14.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - - 14 - uid: 15036 components: - type: Transform @@ -166941,12 +171278,6 @@ entities: - type: DeviceNetwork deviceLists: - 71 - - uid: 15043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 2 - uid: 15045 components: - type: Transform @@ -167264,15 +171595,6 @@ entities: deviceLists: - 51695 - 51697 - - uid: 15100 - components: - - type: Transform - pos: -53.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51695 - - 51697 - uid: 15101 components: - type: Transform @@ -167452,17 +171774,6 @@ entities: - type: Transform pos: -39.5,-70.5 parent: 2 - - uid: 15136 - components: - - type: Transform - pos: -15.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3220 - - 45290 - - 45291 - - 3216 - uid: 15137 components: - type: Transform @@ -167742,6 +172053,15 @@ entities: deviceLists: - 14461 - 35737 + - uid: 23337 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - 51731 - uid: 24351 components: - type: Transform @@ -167799,9 +172119,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 25 - 14522 - 35669 + - 496 - uid: 26586 components: - type: Transform @@ -167826,9 +172146,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 25 - 14522 - 52151 + - 496 - uid: 27463 components: - type: Transform @@ -167836,10 +172156,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 25 - 14522 - 39 - 41243 + - 496 - uid: 27470 components: - type: Transform @@ -167847,10 +172167,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 25 - 14522 - 39 - 41243 + - 496 - uid: 28319 components: - type: Transform @@ -168032,7 +172352,7 @@ entities: - type: DeviceNetwork deviceLists: - 14522 - - 25 + - 496 - uid: 35462 components: - type: Transform @@ -168131,36 +172451,55 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-4.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37348 - uid: 37354 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-1.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37348 - uid: 37355 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,1.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37348 - uid: 37356 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,4.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37348 - uid: 37357 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,7.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37348 - uid: 37358 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37347 + - 37348 - uid: 37359 components: - type: Transform @@ -168172,16 +172511,25 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37347 - uid: 37361 components: - type: Transform pos: 6.5,-3.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36863 - uid: 37362 components: - type: Transform pos: 3.5,3.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37347 - uid: 37363 components: - type: Transform @@ -168192,18 +172540,28 @@ entities: - type: Transform pos: 7.5,3.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37347 - uid: 37365 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,9.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37347 + - 37346 - uid: 37366 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37346 - uid: 37367 components: - type: Transform @@ -168222,6 +172580,10 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,14.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37346 + - 36871 - uid: 37370 components: - type: Transform @@ -168234,6 +172596,9 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,16.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37346 - uid: 37372 components: - type: Transform @@ -168246,6 +172611,9 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,16.5 parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36871 - uid: 41073 components: - type: Transform @@ -168345,6 +172713,15 @@ entities: deviceLists: - 25930 - 51042 + - uid: 43119 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 45308 - uid: 43416 components: - type: Transform @@ -168361,7 +172738,7 @@ entities: - type: DeviceNetwork deviceLists: - 43546 - - 3721 + - 47658 - uid: 43978 components: - type: Transform @@ -168469,6 +172846,33 @@ entities: - type: DeviceNetwork deviceLists: - 44870 + - uid: 47720 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - 51731 + - uid: 51320 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - 51731 + - uid: 51493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 496 - uid: 51719 components: - type: Transform @@ -168500,6 +172904,20 @@ entities: - 51728 - 51730 - 8522 + - uid: 51898 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 53246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1326 - uid: 56201 components: - type: Transform @@ -168701,6 +173119,17 @@ entities: rot: -1.5707963267948966 rad pos: 16.788906,27.49173 parent: 45711 + - uid: 51538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.931244,39.690327 + parent: 2 + - uid: 54210 + components: + - type: Transform + pos: -65.65322,19.582975 + parent: 2 - proto: Floodlight entities: - uid: 33692 @@ -169387,6 +173816,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 26098 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 26556 components: - type: Transform @@ -169510,10 +173946,71 @@ entities: parent: 2 - proto: FloorWaterEntity entities: - - uid: 1599 + - uid: 1220 components: - type: Transform - pos: -33.5,49.5 + rot: -1.5707963267948966 rad + pos: -35.5,50.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -98.5,-7.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: -98.5,-6.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -98.5,-5.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: -97.5,-7.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: -98.5,-3.5 + parent: 2 + - uid: 11818 + components: + - type: Transform + pos: -98.5,-4.5 + parent: 2 + - uid: 11819 + components: + - type: Transform + pos: -97.5,-8.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + pos: -98.5,-11.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + pos: -97.5,-4.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + pos: -98.5,-8.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + pos: -98.5,-10.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + pos: -98.5,-9.5 parent: 2 - uid: 15186 components: @@ -169740,11 +174237,62 @@ entities: - type: Transform pos: -96.5,-7.5 parent: 2 + - uid: 23708 + components: + - type: Transform + pos: -97.5,-10.5 + parent: 2 + - uid: 23935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,49.5 + parent: 2 + - uid: 26204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,49.5 + parent: 2 + - uid: 26220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,50.5 + parent: 2 - uid: 42693 components: - type: Transform pos: -21.5,54.5 parent: 2 +- proto: FloraGreyStalagmite1 + entities: + - uid: 6845 + components: + - type: Transform + pos: -76.81943,-10.647778 + parent: 2 +- proto: FloraGreyStalagmite4 + entities: + - uid: 22051 + components: + - type: Transform + pos: -77.89755,-8.069652 + parent: 2 +- proto: FloraGreyStalagmite5 + entities: + - uid: 11428 + components: + - type: Transform + pos: -78.50693,-8.679027 + parent: 2 +- proto: FloraGreyStalagmite6 + entities: + - uid: 13369 + components: + - type: Transform + pos: -77.88193,-10.210277 + parent: 2 - proto: FloraRockSolid01 entities: - uid: 33696 @@ -169853,28 +174401,36 @@ entities: parent: 2 - proto: FloraTree01 entities: - - uid: 19677 + - uid: 6896 components: - type: Transform - pos: -72.97975,17.929897 + rot: 3.141592653589793 rad + pos: -84.51347,-5.3313375 parent: 2 - - uid: 42610 + - uid: 13999 components: - type: Transform - pos: -77.85793,-5.612847 + rot: 3.141592653589793 rad + pos: -81.401596,-8.6044655 parent: 2 -- proto: FloraTree02 - entities: - - uid: 13748 + - uid: 19677 components: - type: Transform - pos: -85.08538,-5.3315873 + pos: -72.97975,17.929897 parent: 2 +- proto: FloraTree02 + entities: - uid: 15234 components: - type: Transform pos: -31.819296,-44.5882 parent: 2 + - uid: 15329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.68666,-6.25564 + parent: 2 - uid: 20247 components: - type: Transform @@ -169896,6 +174452,12 @@ entities: - type: Transform pos: 5.458312,-25.413788 parent: 2 + - uid: 22608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.61902,-3.9008675 + parent: 2 - uid: 45265 components: - type: Transform @@ -169953,10 +174515,11 @@ entities: rot: 3.141592653589793 rad pos: 19.27668,-17.413656 parent: 2 - - uid: 11428 + - uid: 13748 components: - type: Transform - pos: -86.28464,-9.107607 + rot: 3.141592653589793 rad + pos: -89.185265,-9.3270645 parent: 2 - uid: 41361 components: @@ -169968,11 +174531,6 @@ entities: - type: Transform pos: -41.018475,-61.680714 parent: 2 - - uid: 42728 - components: - - type: Transform - pos: -78.264175,-10.170407 - parent: 2 - proto: FloraTree05 entities: - uid: 12255 @@ -169980,10 +174538,34 @@ entities: - type: Transform pos: -76.167244,17.867397 parent: 2 - - uid: 43010 + - uid: 12915 + components: + - type: Transform + pos: -55.226425,3.896044 + parent: 2 + - uid: 14556 components: - type: Transform - pos: -88.788506,-10.03471 + rot: 3.141592653589793 rad + pos: -87.27993,-10.252044 + parent: 2 + - uid: 15330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.8618,-4.531142 + parent: 2 + - uid: 19472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.04612,-11.586695 + parent: 2 + - uid: 21256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.81088,-9.445977 parent: 2 - proto: FloraTree06 entities: @@ -169998,16 +174580,29 @@ entities: - type: Transform pos: -90.28708,17.804895 parent: 2 - - uid: 13369 + - uid: 15328 components: - type: Transform - pos: -88.57669,-5.487846 + rot: 3.141592653589793 rad + pos: -85.15269,-4.231239 parent: 2 - uid: 20253 components: - type: Transform pos: -62.449837,17.71587 parent: 2 + - uid: 21750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.513374,-11.631278 + parent: 2 + - uid: 22131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.38937,-4.495548 + parent: 2 - uid: 41514 components: - type: Transform @@ -170050,13 +174645,6 @@ entities: rot: 3.141592653589793 rad pos: -0.7763125,53.63435 parent: 2 -- proto: FloraTreeLarge06 - entities: - - uid: 43006 - components: - - type: Transform - pos: -81.95168,-5.425347 - parent: 2 - proto: FloraTreeSnow02 entities: - uid: 15374 @@ -170100,6 +174688,13 @@ entities: parent: 45711 - proto: FoodApple entities: + - uid: 10554 + components: + - type: MetaData + desc: Зелёные яблоки - Миф + - type: Transform + pos: -24.441652,33.74012 + parent: 2 - uid: 41558 components: - type: Transform @@ -170126,6 +174721,11 @@ entities: - type: Transform pos: 49.85332,73.55521 parent: 2 + - uid: 55874 + components: + - type: Transform + pos: -89.1663,-11.200781 + parent: 2 - proto: FoodBadRecipe entities: - uid: 48352 @@ -170138,6 +174738,23 @@ entities: - type: Transform pos: -23.543486,13.563924 parent: 45711 +- proto: FoodBakedBrownie + entities: + - uid: 45320 + components: + - type: Transform + pos: 31.138155,1.6127269 + parent: 2 + - uid: 45327 + components: + - type: Transform + pos: 31.341282,1.7221019 + parent: 2 + - uid: 51005 + components: + - type: Transform + pos: 31.481903,1.5814767 + parent: 2 - proto: FoodBakedBunHoney entities: - uid: 15267 @@ -170145,6 +174762,121 @@ entities: - type: Transform pos: -21.857986,-59.014317 parent: 2 + - uid: 51377 + components: + - type: Transform + pos: 33.862846,4.942895 + parent: 2 + - uid: 51379 + components: + - type: Transform + pos: 34.03472,4.911645 + parent: 2 +- proto: FoodBakedBunHotX + entities: + - uid: 51031 + components: + - type: Transform + pos: 35.169403,1.5033519 + parent: 2 + - uid: 51032 + components: + - type: Transform + pos: 35.356907,1.6596019 + parent: 2 + - uid: 51033 + components: + - type: Transform + pos: 35.466278,1.5033519 + parent: 2 + - uid: 51093 + components: + - type: Transform + pos: 35.653778,1.5814767 + parent: 2 +- proto: FoodBakedCannoli + entities: + - uid: 51375 + components: + - type: Transform + pos: 34.362846,4.7241454 + parent: 2 + - uid: 51376 + components: + - type: Transform + pos: 34.40972,4.61477 + parent: 2 +- proto: FoodBakedMuffinCherry + entities: + - uid: 51006 + components: + - type: Transform + pos: 34.794403,1.7064767 + parent: 2 + - uid: 51007 + components: + - type: Transform + pos: 34.356903,1.6283519 + parent: 2 + - uid: 51022 + components: + - type: Transform + pos: 34.419403,1.7377267 + parent: 2 + - uid: 51029 + components: + - type: Transform + pos: 34.65378,1.5502267 + parent: 2 +- proto: FoodBakedPancake + entities: + - uid: 51373 + components: + - type: Transform + pos: 33.206593,4.58352 + parent: 2 + - uid: 51374 + components: + - type: Transform + pos: 33.644093,4.692895 + parent: 2 +- proto: FoodBakedPancakeBb + entities: + - uid: 44169 + components: + - type: Transform + pos: 30.388157,1.6283519 + parent: 2 + - uid: 45294 + components: + - type: Transform + pos: 30.481905,1.6752267 + parent: 2 + - uid: 45304 + components: + - type: Transform + pos: 30.74753,1.6127267 + parent: 2 +- proto: FoodBanana + entities: + - uid: 10001 + components: + - type: Transform + rot: 0.3496196232418431 rad + pos: -27.692814,31.629839 + parent: 2 + - uid: 53373 + components: + - type: Transform + rot: 0.000553772842977196 rad + pos: -27.599066,31.614214 + parent: 2 + - uid: 53374 + components: + - type: Transform + rot: 0.524152548441276 rad + pos: -27.724066,31.582968 + parent: 2 - proto: FoodBlueTomato entities: - uid: 36410 @@ -170206,13 +174938,13 @@ entities: - type: Transform pos: 51.5202,-26.303524 parent: 2 -- proto: FoodBoxDonkpocketBerry - entities: - - uid: 15269 + - uid: 53342 components: - type: Transform - pos: 26.489027,-45.69231 + pos: -3.4254322,-4.3249035 parent: 2 +- proto: FoodBoxDonkpocketBerry + entities: - uid: 22568 components: - type: Transform @@ -170306,6 +175038,11 @@ entities: - type: Transform pos: -55.503666,47.743206 parent: 2 + - uid: 53252 + components: + - type: Transform + pos: -3.4893894,-5.089321 + parent: 2 - uid: 53474 components: - type: Transform @@ -170729,6 +175466,13 @@ entities: - type: Transform pos: -55.251568,11.692397 parent: 2 +- proto: FoodCakeBrainSlice + entities: + - uid: 11490 + components: + - type: Transform + pos: 20.324997,-45.319424 + parent: 2 - proto: FoodCakeCarrot entities: - uid: 12261 @@ -170757,6 +175501,11 @@ entities: parent: 2 - proto: FoodCarrot entities: + - uid: 11063 + components: + - type: Transform + pos: -25.301027,33.61512 + parent: 2 - uid: 11980 components: - type: Transform @@ -170774,13 +175523,19 @@ entities: - type: Transform pos: -12.505688,-32.95923 parent: 2 + - uid: 55875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.6906,-10.873725 + parent: 2 - proto: FoodCartCold entities: - - uid: 26994 + - uid: 53349 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,27.5 + pos: -93.5,-8.5 parent: 2 - uid: 56036 components: @@ -170790,11 +175545,11 @@ entities: parent: 45711 - proto: FoodCartHot entities: - - uid: 35594 + - uid: 53882 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,27.5 + pos: -88.5,-9.5 parent: 2 - proto: FoodCheese entities: @@ -170808,28 +175563,30 @@ entities: parent: 2 - proto: FoodCheeseSlice entities: - - uid: 15295 + - uid: 53379 components: - type: Transform - pos: -24.651323,32.96088 + rot: 0.000553772842977196 rad + pos: -27.686502,33.627506 parent: 2 - - uid: 15296 + - uid: 53380 components: - type: Transform - pos: -24.338823,32.554626 + rot: 0.000553772842977196 rad + pos: -27.608377,33.705635 parent: 2 - proto: FoodCondimentBottleEnzyme entities: - - uid: 15297 - components: - - type: Transform - pos: -24.229448,33.07025 - parent: 2 - uid: 33730 components: - type: Transform pos: 1.7531701,23.977348 parent: 33049 + - uid: 53390 + components: + - type: Transform + pos: -28.293243,25.84444 + parent: 2 - proto: FoodCondimentBottleKetchup entities: - uid: 15298 @@ -170903,39 +175660,29 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 36033 + - uid: 53370 components: - type: Transform - parent: 36032 + parent: 53369 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 36034 + - uid: 53371 components: - type: Transform - parent: 36032 + parent: 53369 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 36035 + - uid: 53372 components: - type: Transform - parent: 36032 + parent: 53369 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodEgg entities: - - uid: 3386 - components: - - type: Transform - pos: -25.783575,33.2445 - parent: 2 - - uid: 3387 - components: - - type: Transform - pos: -25.627325,33.228874 - parent: 2 - uid: 34616 components: - type: Transform @@ -170956,6 +175703,24 @@ entities: - type: Transform pos: 21.603958,55.621765 parent: 45711 + - uid: 53391 + components: + - type: Transform + rot: 0.000553772842977196 rad + pos: -27.436502,33.25251 + parent: 2 + - uid: 53392 + components: + - type: Transform + rot: 0.000553772842977196 rad + pos: -27.358377,33.361885 + parent: 2 + - uid: 53393 + components: + - type: Transform + rot: 0.000553772842977196 rad + pos: -27.249006,33.268135 + parent: 2 - proto: FoodFrozenPopsicleBerry entities: - uid: 7613 @@ -171006,13 +175771,17 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodKebabSkewer +- proto: FoodLemon entities: - - uid: 15304 + - uid: 22820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.894745,-47.48501 + pos: -18.32855,43.48023 + parent: 2 + - uid: 26694 + components: + - type: Transform + pos: -18.625425,43.48023 parent: 2 - proto: FoodMealCubancarp entities: @@ -171042,7 +175811,12 @@ entities: - uid: 10305 components: - type: Transform - pos: -27.076214,30.602222 + pos: -31.604807,30.388208 + parent: 2 + - uid: 10395 + components: + - type: Transform + pos: -31.729809,30.638208 parent: 2 - uid: 14861 components: @@ -171077,34 +175851,6 @@ entities: - type: Transform pos: 57.786472,-44.726974 parent: 2 - - uid: 15314 - components: - - type: MetaData - desc: When You Code Meat - - type: Transform - pos: -29.33963,26.459352 - parent: 2 - - uid: 35970 - components: - - type: Transform - parent: 35969 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 35971 - components: - - type: Transform - parent: 35969 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 35972 - components: - - type: Transform - parent: 35969 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 42697 components: - type: Transform @@ -171121,13 +175867,12 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 35973 + - uid: 53347 components: - type: Transform - parent: 35969 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: 0.000553772842977196 rad + pos: -33.183437,27.369534 + parent: 2 - proto: FoodMeatFish entities: - uid: 44551 @@ -171142,6 +175887,11 @@ entities: - type: Transform pos: -22.259975,-93.302734 parent: 2 + - uid: 55872 + components: + - type: Transform + pos: -80.52548,-10.225977 + parent: 2 - proto: FoodMeatLizardtailKebab entities: - uid: 11091 @@ -171212,10 +175962,20 @@ entities: parent: 45711 - proto: FoodMushroom entities: - - uid: 3385 + - uid: 49 components: - type: Transform - pos: -25.439825,33.603874 + pos: -25.84184,33.683376 + parent: 2 + - uid: 12287 + components: + - type: Transform + pos: -35.672276,27.222176 + parent: 2 + - uid: 26170 + components: + - type: Transform + pos: -35.96915,27.3628 parent: 2 - proto: FoodOnion entities: @@ -171252,20 +176012,25 @@ entities: - type: InsideEntityStorage - proto: FoodOrange entities: - - uid: 15328 + - uid: 882 components: - type: Transform - pos: -74.63776,-6.5012326 + pos: -74.507126,-5.3011045 parent: 2 - - uid: 15329 + - uid: 6788 components: - type: Transform - pos: -74.48151,-6.2199826 + pos: -74.35088,-5.3948545 parent: 2 - - uid: 15330 + - uid: 6790 components: - type: Transform - pos: -74.29401,-6.5012326 + pos: -74.46026,-5.4886045 + parent: 2 + - uid: 42610 + components: + - type: Transform + pos: -74.60088,-5.4886045 parent: 2 - proto: FoodPieBananaCream entities: @@ -171361,29 +176126,66 @@ entities: - type: Transform pos: 11.571307,14.000385 parent: 45711 -- proto: FoodPlate +- proto: FoodPizzaPineapple entities: - - uid: 11063 + - uid: 48543 components: - type: Transform - pos: -29.491283,30.828485 + pos: -40.493706,-9.302762 parent: 2 -- proto: FoodPlateSmall +- proto: FoodPlate entities: - - uid: 3923 + - uid: 1661 components: - type: Transform - pos: -14.335792,31.802593 + pos: -25.45859,30.886322 parent: 2 - - uid: 10306 + - uid: 41878 components: - type: Transform - pos: -29.52253,30.640985 + pos: 30.575655,1.7689767 parent: 2 - - uid: 11065 + - uid: 42798 + components: + - type: Transform + pos: 31.388153,1.7377269 + parent: 2 + - uid: 43918 components: - type: Transform - pos: -29.49128,30.84411 + pos: 34.575653,1.7377267 + parent: 2 + - uid: 44166 + components: + - type: Transform + pos: 35.372528,1.7377267 + parent: 2 + - uid: 51152 + components: + - type: Transform + pos: 33.513374,4.774931 + parent: 2 + - uid: 51173 + components: + - type: Transform + pos: 34.35712,4.774931 + parent: 2 + - uid: 51175 + components: + - type: Transform + pos: 33.9665,5.0561814 + parent: 2 +- proto: FoodPlateSmall + entities: + - uid: 3018 + components: + - type: Transform + pos: -25.48984,30.714447 + parent: 2 + - uid: 11545 + components: + - type: Transform + pos: -25.458591,30.558197 parent: 2 - uid: 15345 components: @@ -171444,26 +176246,23 @@ entities: parent: 2 - proto: FoodPlateSmallTrash entities: - - uid: 15358 + - uid: 3384 components: - type: Transform - pos: 26.516806,-46.67842 + pos: -26.317965,30.308197 parent: 2 - uid: 15359 components: - type: Transform pos: -36.648716,46.358532 parent: 2 -- proto: FoodPlateTrash +- proto: FoodPotato entities: - - uid: 15360 + - uid: 10236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.502304,-45.497868 + pos: -26.004152,33.818245 parent: 2 -- proto: FoodPotato - entities: - uid: 11729 components: - type: MetaData @@ -171553,6 +176352,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodSnackChips + entities: + - uid: 12257 + components: + - type: Transform + pos: -39.592945,-2.3436697 + parent: 2 + - uid: 51632 + components: + - type: Transform + pos: -39.499195,-2.484295 + parent: 2 - proto: FoodSnackChocolate entities: - uid: 15365 @@ -171572,6 +176383,18 @@ entities: - type: Transform pos: -18.526682,11.525402 parent: 2 +- proto: FoodSnackPistachios + entities: + - uid: 51679 + components: + - type: Transform + pos: -39.077316,-2.3280447 + parent: 2 + - uid: 51680 + components: + - type: Transform + pos: -38.999195,-2.4686697 + parent: 2 - proto: FoodSnackPopcorn entities: - uid: 15368 @@ -171593,6 +176416,11 @@ entities: - type: Transform pos: -11.433814,2.6240401 parent: 45711 + - uid: 51682 + components: + - type: Transform + pos: -38.467945,-2.3749197 + parent: 2 - proto: FoodSoupChiliHot entities: - uid: 43626 @@ -171600,13 +176428,15 @@ entities: - type: Transform pos: -49.43973,52.358463 parent: 2 -- proto: FoodSoupMeatball +- proto: FoodSoupEyeball entities: - - uid: 15369 + - uid: 32528 components: - type: Transform - pos: 27.111542,2.6271627 + pos: 20.419464,-46.37171 parent: 2 +- proto: FoodSoupMeatball + entities: - uid: 37392 components: - type: Transform @@ -171637,11 +176467,6 @@ entities: - type: InsideEntityStorage - proto: FoodSoupMushroom entities: - - uid: 15370 - components: - - type: Transform - pos: 34.905983,2.6009161 - parent: 2 - uid: 37042 components: - type: Transform @@ -171681,11 +176506,6 @@ entities: - type: InsideEntityStorage - proto: FoodSoupNettle entities: - - uid: 15371 - components: - - type: Transform - pos: 31.040022,2.561546 - parent: 2 - uid: 37046 components: - type: Transform @@ -171709,11 +176529,6 @@ entities: - type: InsideEntityStorage - proto: FoodSoupPea entities: - - uid: 15372 - components: - - type: Transform - pos: 39.1113,2.7190263 - parent: 2 - uid: 37049 components: - type: Transform @@ -171831,10 +176646,10 @@ entities: parent: 45711 - proto: FoodTomato entities: - - uid: 3384 + - uid: 10306 components: - type: Transform - pos: -25.70545,33.916374 + pos: -26.410404,33.70887 parent: 2 - uid: 11728 components: @@ -171922,6 +176737,16 @@ entities: parent: 2 - proto: Fork entities: + - uid: 11540 + components: + - type: Transform + pos: 24.677008,-43.3683 + parent: 2 + - uid: 11862 + components: + - type: Transform + pos: 24.44613,-43.37985 + parent: 2 - uid: 33733 components: - type: Transform @@ -172135,8 +176960,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerCarbonDioxide entities: - uid: 23892 @@ -172144,8 +176967,6 @@ entities: - type: Transform pos: 57.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerNitrogenStationLarge entities: - uid: 1369 @@ -172153,8 +176974,6 @@ entities: - type: Transform pos: 57.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerOxygen entities: - uid: 33736 @@ -172162,15 +176981,11 @@ entities: - type: Transform pos: 9.5,-13.5 parent: 33049 - - type: AtmosDevice - joinedGrid: 33049 - uid: 48361 components: - type: Transform pos: -18.5,38.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - proto: GasMinerOxygenStationLarge entities: - uid: 1540 @@ -172178,8 +176993,6 @@ entities: - type: Transform pos: 57.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerPlasma entities: - uid: 23894 @@ -172187,8 +177000,6 @@ entities: - type: Transform pos: 57.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerWaterVapor entities: - uid: 1565 @@ -172196,15 +177007,11 @@ entities: - type: Transform pos: 57.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 48362 components: - type: Transform pos: -6.5,1.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - proto: GasMixer entities: - uid: 5181 @@ -172212,23 +177019,17 @@ entities: - type: Transform pos: 68.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5704 components: - type: Transform pos: -40.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 33737 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-16.5 parent: 33049 - - type: AtmosDevice - joinedGrid: 33049 - proto: GasMixerFlipped entities: - uid: 15432 @@ -172237,87 +177038,82 @@ entities: rot: 1.5707963267948966 rad pos: -73.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 37393 components: - type: Transform pos: 7.5,0.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasOutletInjector entities: - - uid: 195 - components: - - type: Transform - pos: 58.5,16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#333333FF' - - uid: 5804 + - uid: 2122 components: - type: Transform - pos: 58.5,22.5 + rot: 3.141592653589793 rad + pos: 58.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5879 + color: '#03FCD3FF' + - uid: 2123 components: - type: Transform + rot: 3.141592653589793 rad pos: 58.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#FF6347FF' + color: '#FC2847FF' - uid: 12333 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 23152 + - uid: 15777 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-19.5 + pos: 58.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 28939 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 17491 components: - type: Transform - pos: 58.5,20.5 + rot: 3.141592653589793 rad + pos: 58.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 36079 + color: '#333333FF' + - uid: 23152 components: - type: Transform - pos: 58.5,14.5 + rot: 3.141592653589793 rad + pos: -43.5,-19.5 + parent: 2 + - uid: 24336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#333333FF' - uid: 47629 components: - type: Transform pos: 50.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 +- proto: GasPassiveGate + entities: + - uid: 3382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasPassiveVent entities: - uid: 1643 @@ -172326,8 +177122,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1645 @@ -172336,28 +177130,22 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' - uid: 1650 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' - uid: 2423 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3043 @@ -172366,8 +177154,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3044 @@ -172376,18 +177162,22 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,65.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 3721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5828 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#333333FF' - uid: 6560 @@ -172395,8 +177185,6 @@ entities: - type: Transform pos: 42.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 8040 @@ -172405,8 +177193,6 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#333333FF' - uid: 10372 @@ -172415,56 +177201,42 @@ entities: rot: -1.5707963267948966 rad pos: -71.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 15429 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 24550 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#FF6347FF' + color: '#FC2847FF' - uid: 24862 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 25169 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 25270 components: - type: Transform pos: 30.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 27324 components: - type: Transform pos: 61.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 32948 @@ -172473,8 +177245,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 32764 - - type: AtmosDevice - joinedGrid: 32764 - type: AtmosPipeColor color: '#FF0000FF' - uid: 33738 @@ -172482,23 +177252,17 @@ entities: - type: Transform pos: 9.5,-14.5 parent: 33049 - - type: AtmosDevice - joinedGrid: 33049 - uid: 33739 components: - type: Transform pos: 7.5,-14.5 parent: 33049 - - type: AtmosDevice - joinedGrid: 33049 - uid: 37394 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,17.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 - type: AtmosPipeColor color: '#FF0000FF' - uid: 45007 @@ -172507,8 +177271,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-2.5 parent: 44868 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47379 @@ -172517,8 +177279,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 44868 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47628 @@ -172526,16 +177286,12 @@ entities: - type: Transform pos: 48.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 48363 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 48364 @@ -172544,8 +177300,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#0000FFFF' - uid: 48365 @@ -172553,8 +177307,6 @@ entities: - type: Transform pos: -1.5,0.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#0000FFFF' - uid: 48366 @@ -172562,8 +177314,6 @@ entities: - type: Transform pos: 2.5,0.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#0000FFFF' - uid: 48367 @@ -172572,8 +177322,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,6.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#0000FFFF' - uid: 48368 @@ -172582,8 +177330,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,6.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#0000FFFF' - uid: 48369 @@ -172591,100 +177337,74 @@ entities: - type: Transform pos: -17.5,37.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 48370 components: - type: Transform pos: -15.5,37.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 48371 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,27.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 48372 components: - type: Transform pos: -6.5,42.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 48373 components: - type: Transform pos: 14.5,37.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 48374 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,16.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 48375 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,10.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 52625 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,41.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 52626 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,45.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 52653 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,40.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 53365 components: - type: Transform pos: 6.5,50.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 53389 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,37.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 56205 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-0.5 parent: 56108 - - type: AtmosDevice - joinedGrid: 56108 - type: AtmosPipeColor color: '#FF0000FF' - uid: 56206 @@ -172693,8 +177413,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 56108 - - type: AtmosDevice - joinedGrid: 56108 - type: AtmosPipeColor color: '#FF0000FF' - uid: 56326 @@ -172703,8 +177421,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,65.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasPipeBend @@ -172787,36 +177503,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,13.5 - parent: 2 - - uid: 2119 + - uid: 2102 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,15.5 parent: 2 - - uid: 2120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,17.5 - parent: 2 - - uid: 2122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,19.5 - parent: 2 - - uid: 2123 + - type: AtmosPipeColor + color: '#333333FF' + - uid: 2103 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,21.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2124 components: - type: Transform @@ -173216,21 +177916,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3381 - components: - - type: Transform - pos: -32.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 3413 components: - type: Transform @@ -174589,6 +179274,27 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-34.5 parent: 2 + - uid: 19273 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC2847FF' + - uid: 19355 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#333333FF' + - uid: 23808 + components: + - type: Transform + pos: 58.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 47350 components: - type: Transform @@ -174652,6 +179358,252 @@ entities: parent: 56108 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 47694 + components: + - type: Transform + pos: 71.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 47816 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 47818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 48517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48521 + components: + - type: Transform + pos: 65.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48525 + components: + - type: Transform + pos: 64.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48527 + components: + - type: Transform + pos: 63.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48533 + components: + - type: Transform + pos: 61.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50805 + components: + - type: Transform + pos: 5.5,10.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50807 + components: + - type: Transform + pos: 7.5,11.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50826 + components: + - type: Transform + pos: 6.5,18.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,14.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50848 + components: + - type: Transform + pos: 4.5,17.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,8.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeBroken entities: - uid: 6023 @@ -175167,6 +180119,34 @@ entities: parent: 56108 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 50704 + components: + - type: Transform + pos: 7.5,4.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50709 + components: + - type: Transform + pos: 11.5,4.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50856 + components: + - type: Transform + pos: 4.5,13.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51170 + components: + - type: Transform + pos: 12.5,5.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeHalf entities: - uid: 778 @@ -175316,6 +180296,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC2847FF' - uid: 381 components: - type: Transform @@ -175784,6 +180772,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 1217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 1292 components: - type: Transform @@ -175962,6 +180958,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 1644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#333333FF' + - uid: 1654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC2847FF' + - uid: 1660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC2847FF' - uid: 1668 components: - type: Transform @@ -176076,6 +181096,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 1819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC2847FF' - uid: 1826 components: - type: Transform @@ -176640,270 +181668,224 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,22.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2059 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,22.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2060 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,22.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2061 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,20.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2062 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,20.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2063 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,20.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2064 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,18.5 parent: 2 + - type: AtmosPipeColor + color: '#FC2847FF' - uid: 2065 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,18.5 parent: 2 + - type: AtmosPipeColor + color: '#FC2847FF' - uid: 2066 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,18.5 parent: 2 + - type: AtmosPipeColor + color: '#FC2847FF' - uid: 2067 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,16.5 parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2068 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,16.5 parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2069 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,16.5 parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2070 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,14.5 parent: 2 - - uid: 2071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,14.5 - parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2072 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,14.5 parent: 2 - - uid: 2073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,13.5 - parent: 2 - - uid: 2074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,13.5 - parent: 2 - - uid: 2076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,13.5 - parent: 2 - - uid: 2077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,13.5 - parent: 2 - - uid: 2079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,13.5 - parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2080 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,13.5 + pos: 56.5,21.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2081 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,15.5 - parent: 2 - - uid: 2082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,15.5 - parent: 2 - - uid: 2085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,15.5 - parent: 2 - - uid: 2086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,15.5 + pos: 55.5,21.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2087 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,15.5 + pos: 55.5,19.5 parent: 2 + - type: AtmosPipeColor + color: '#FC2847FF' - uid: 2088 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,15.5 + pos: 52.5,17.5 parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2090 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,17.5 + pos: 53.5,15.5 parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2091 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,17.5 - parent: 2 - - uid: 2092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,17.5 - parent: 2 - - uid: 2093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,17.5 + pos: 53.5,19.5 parent: 2 + - type: AtmosPipeColor + color: '#FC2847FF' - uid: 2094 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,17.5 + pos: 57.5,21.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2095 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,17.5 + pos: 54.5,21.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2096 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,19.5 + pos: 53.5,21.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2097 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,19.5 + pos: 52.5,21.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2098 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,19.5 + pos: 54.5,14.5 parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2099 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,19.5 + pos: 57.5,15.5 parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2101 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,19.5 - parent: 2 - - uid: 2102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,19.5 - parent: 2 - - uid: 2103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,21.5 + pos: 54.5,15.5 parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2104 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,21.5 - parent: 2 - - uid: 2106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,21.5 - parent: 2 - - uid: 2109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,21.5 - parent: 2 - - uid: 2110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,21.5 - parent: 2 - - uid: 2111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,21.5 + pos: 57.5,17.5 parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 2112 components: - type: Transform @@ -176928,14 +181910,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,25.5 parent: 2 - - uid: 2133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 2135 components: - type: Transform @@ -185272,13 +190246,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3864 - components: - - type: Transform - pos: -57.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 3865 components: - type: Transform @@ -193087,6 +198054,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 5804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5814 components: - type: Transform @@ -193263,6 +198238,14 @@ entities: parent: 45711 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 5879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#333333FF' - uid: 5880 components: - type: Transform @@ -193358,8107 +198341,9444 @@ entities: - uid: 5908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,22.5 - parent: 45711 - - uid: 5909 + rot: 3.141592653589793 rad + pos: 14.5,22.5 + parent: 45711 + - uid: 5909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 45711 + - uid: 5910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,20.5 + parent: 45711 + - uid: 5911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,19.5 + parent: 45711 + - uid: 5912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 45711 + - uid: 5913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 45711 + - uid: 5914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,16.5 + parent: 45711 + - uid: 5915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,16.5 + parent: 45711 + - uid: 5916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,16.5 + parent: 45711 + - uid: 5917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,16.5 + parent: 45711 + - uid: 5919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 45711 + - uid: 5920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,16.5 + parent: 45711 + - uid: 5921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 45711 + - uid: 5922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,16.5 + parent: 45711 + - uid: 5924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 45711 + - uid: 5925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 45711 + - uid: 5926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 45711 + - uid: 5927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 45711 + - uid: 5928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 45711 + - uid: 5929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 45711 + - uid: 5930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 45711 + - uid: 5931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 45711 + - uid: 5932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 45711 + - uid: 5933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 45711 + - uid: 5935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 45711 + - uid: 5936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 45711 + - uid: 5937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 45711 + - uid: 5938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 45711 + - uid: 5942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 45711 + - uid: 5943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 45711 + - uid: 5944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,16.5 + parent: 45711 + - uid: 5945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 45711 + - uid: 5946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 45711 + - uid: 5947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 45711 + - uid: 5948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,16.5 + parent: 45711 + - uid: 5949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,16.5 + parent: 45711 + - uid: 5950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,16.5 + parent: 45711 + - uid: 5951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 45711 + - uid: 5952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,16.5 + parent: 45711 + - uid: 5954 + components: + - type: Transform + pos: 8.5,17.5 + parent: 45711 + - uid: 5955 + components: + - type: Transform + pos: 8.5,18.5 + parent: 45711 + - uid: 5956 + components: + - type: Transform + pos: 8.5,19.5 + parent: 45711 + - uid: 5957 + components: + - type: Transform + pos: 8.5,20.5 + parent: 45711 + - uid: 5958 + components: + - type: Transform + pos: 8.5,21.5 + parent: 45711 + - uid: 5959 + components: + - type: Transform + pos: 8.5,22.5 + parent: 45711 + - uid: 5960 + components: + - type: Transform + pos: 8.5,23.5 + parent: 45711 + - uid: 5961 + components: + - type: Transform + pos: 8.5,24.5 + parent: 45711 + - uid: 5962 + components: + - type: Transform + pos: 8.5,25.5 + parent: 45711 + - uid: 5963 + components: + - type: Transform + pos: 8.5,26.5 + parent: 45711 + - uid: 5964 + components: + - type: Transform + pos: 8.5,27.5 + parent: 45711 + - uid: 5965 + components: + - type: Transform + pos: 8.5,28.5 + parent: 45711 + - uid: 5966 + components: + - type: Transform + pos: 8.5,29.5 + parent: 45711 + - uid: 5967 + components: + - type: Transform + pos: 8.5,30.5 + parent: 45711 + - uid: 5968 + components: + - type: Transform + pos: 8.5,31.5 + parent: 45711 + - uid: 5969 + components: + - type: Transform + pos: 8.5,32.5 + parent: 45711 + - uid: 5973 + components: + - type: Transform + pos: -6.5,39.5 + parent: 45711 + - uid: 5974 + components: + - type: Transform + pos: -6.5,38.5 + parent: 45711 + - uid: 5975 + components: + - type: Transform + pos: -6.5,37.5 + parent: 45711 + - uid: 5977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,36.5 + parent: 45711 + - uid: 5978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,36.5 + parent: 45711 + - uid: 5979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 45711 + - uid: 5981 + components: + - type: Transform + pos: -10.5,35.5 + parent: 45711 + - uid: 6006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,41.5 + parent: 45711 + - uid: 6007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,41.5 + parent: 45711 + - uid: 6008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,41.5 + parent: 45711 + - uid: 6010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,41.5 + parent: 45711 + - uid: 6011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,41.5 + parent: 45711 + - uid: 6014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,41.5 + parent: 45711 + - uid: 6015 + components: + - type: Transform + pos: 2.5,42.5 + parent: 45711 + - uid: 6016 + components: + - type: Transform + pos: 2.5,43.5 + parent: 45711 + - uid: 6024 + components: + - type: Transform + pos: -0.5,41.5 + parent: 45711 + - uid: 6026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,40.5 + parent: 45711 + - uid: 6027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,40.5 + parent: 45711 + - uid: 6028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,40.5 + parent: 45711 + - uid: 6029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,40.5 + parent: 45711 + - uid: 6030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,40.5 + parent: 45711 + - uid: 6031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,39.5 + parent: 45711 + - uid: 6032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,38.5 + parent: 45711 + - uid: 6033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 45711 + - uid: 6034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,36.5 + parent: 45711 + - uid: 6035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,35.5 + parent: 45711 + - uid: 6037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,34.5 + parent: 45711 + - uid: 6038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,34.5 + parent: 45711 + - uid: 6039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,34.5 + parent: 45711 + - uid: 6040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,34.5 + parent: 45711 + - uid: 6041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,34.5 + parent: 45711 + - uid: 6042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,34.5 + parent: 45711 + - uid: 6045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,33.5 + parent: 45711 + - uid: 6046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,33.5 + parent: 45711 + - uid: 6047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,33.5 + parent: 45711 + - uid: 6048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,33.5 + parent: 45711 + - uid: 6050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,33.5 + parent: 45711 + - uid: 6056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,33.5 + parent: 45711 + - uid: 6057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,33.5 + parent: 45711 + - uid: 6060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,30.5 + parent: 45711 + - uid: 6061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,31.5 + parent: 45711 + - uid: 6066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,33.5 + parent: 45711 + - uid: 6094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,33.5 + parent: 45711 + - uid: 6095 + components: + - type: Transform + pos: -11.5,35.5 + parent: 45711 + - uid: 6099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,35.5 + parent: 45711 + - uid: 6100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,36.5 + parent: 45711 + - uid: 6104 + components: + - type: Transform + pos: 6.5,49.5 + parent: 45711 + - uid: 6106 + components: + - type: Transform + pos: 6.5,48.5 + parent: 45711 + - uid: 6107 + components: + - type: Transform + pos: 6.5,47.5 + parent: 45711 + - uid: 6109 + components: + - type: Transform + pos: 6.5,46.5 + parent: 45711 + - uid: 6110 + components: + - type: Transform + pos: 6.5,45.5 + parent: 45711 + - uid: 6111 + components: + - type: Transform + pos: 6.5,44.5 + parent: 45711 + - uid: 6112 + components: + - type: Transform + pos: 6.5,43.5 + parent: 45711 + - uid: 6113 + components: + - type: Transform + pos: 6.5,42.5 + parent: 45711 + - uid: 6114 + components: + - type: Transform + pos: 6.5,41.5 + parent: 45711 + - uid: 6118 + components: + - type: Transform + pos: 6.5,40.5 + parent: 45711 + - uid: 6120 + components: + - type: Transform + pos: 6.5,39.5 + parent: 45711 + - uid: 6121 + components: + - type: Transform + pos: 6.5,38.5 + parent: 45711 + - uid: 6124 + components: + - type: Transform + pos: 6.5,37.5 + parent: 45711 + - uid: 6127 + components: + - type: Transform + pos: 6.5,36.5 + parent: 45711 + - uid: 6128 + components: + - type: Transform + pos: 6.5,35.5 + parent: 45711 + - uid: 6129 + components: + - type: Transform + pos: 6.5,34.5 + parent: 45711 + - uid: 6132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,46.5 + parent: 45711 + - uid: 6134 + components: + - type: Transform + pos: -0.5,45.5 + parent: 45711 + - uid: 6135 + components: + - type: Transform + pos: -0.5,44.5 + parent: 45711 + - uid: 6136 + components: + - type: Transform + pos: -0.5,43.5 + parent: 45711 + - uid: 6137 + components: + - type: Transform + pos: -0.5,42.5 + parent: 45711 + - uid: 6142 + components: + - type: Transform + pos: 0.5,38.5 + parent: 45711 + - uid: 6143 + components: + - type: Transform + pos: 0.5,39.5 + parent: 45711 + - uid: 6144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 45711 + - uid: 7827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7922 + components: + - type: Transform + pos: -19.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8028 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8073 + components: + - type: Transform + pos: -22.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8104 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8138 + components: + - type: Transform + pos: -9.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,21.5 - parent: 45711 - - uid: 5910 + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8181 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,20.5 - parent: 45711 - - uid: 5911 + rot: -1.5707963267948966 rad + pos: -30.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,19.5 - parent: 45711 - - uid: 5912 + rot: -1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,18.5 - parent: 45711 - - uid: 5913 + rot: -1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,17.5 - parent: 45711 - - uid: 5914 + rot: -1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,16.5 - parent: 45711 - - uid: 5915 + rot: -1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8189 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,16.5 - parent: 45711 - - uid: 5916 + pos: -35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8190 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,16.5 - parent: 45711 - - uid: 5917 + pos: -36.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8191 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,16.5 - parent: 45711 - - uid: 5919 + pos: -37.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8192 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,16.5 - parent: 45711 - - uid: 5920 + pos: -38.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8193 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,16.5 - parent: 45711 - - uid: 5921 + pos: -39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8195 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 45711 - - uid: 5922 + pos: -41.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8196 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,16.5 - parent: 45711 - - uid: 5924 + pos: -36.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8197 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 45711 - - uid: 5925 + pos: -37.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8198 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 45711 - - uid: 5926 + pos: -38.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8199 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 45711 - - uid: 5927 + pos: -39.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8200 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,10.5 - parent: 45711 - - uid: 5928 + pos: -40.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 45711 - - uid: 5929 + pos: -41.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 45711 - - uid: 5930 + pos: -41.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 45711 - - uid: 5931 + pos: -40.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,10.5 - parent: 45711 - - uid: 5932 + pos: -40.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 45711 - - uid: 5933 + pos: -40.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 - parent: 45711 - - uid: 5935 + pos: -22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,11.5 - parent: 45711 - - uid: 5936 + pos: -22.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8216 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 45711 - - uid: 5937 + pos: -22.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 45711 - - uid: 5938 + pos: -20.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 45711 - - uid: 5942 + pos: -20.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,16.5 - parent: 45711 - - uid: 5943 + rot: -1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,16.5 - parent: 45711 - - uid: 5944 + rot: -1.5707963267948966 rad + pos: -24.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,16.5 - parent: 45711 - - uid: 5945 + rot: -1.5707963267948966 rad + pos: -25.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,16.5 - parent: 45711 - - uid: 5946 + rot: -1.5707963267948966 rad + pos: -26.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,16.5 - parent: 45711 - - uid: 5947 + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,16.5 - parent: 45711 - - uid: 5948 + rot: -1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,16.5 - parent: 45711 - - uid: 5949 + rot: -1.5707963267948966 rad + pos: -30.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,16.5 - parent: 45711 - - uid: 5950 + rot: -1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,16.5 - parent: 45711 - - uid: 5951 + rot: -1.5707963267948966 rad + pos: -32.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,16.5 - parent: 45711 - - uid: 5952 + rot: -1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,16.5 - parent: 45711 - - uid: 5954 + rot: -1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8235 components: - type: Transform - pos: 8.5,17.5 - parent: 45711 - - uid: 5955 + rot: -1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8236 components: - type: Transform - pos: 8.5,18.5 - parent: 45711 - - uid: 5956 + rot: -1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8237 components: - type: Transform - pos: 8.5,19.5 - parent: 45711 - - uid: 5957 + rot: -1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8238 components: - type: Transform - pos: 8.5,20.5 - parent: 45711 - - uid: 5958 + pos: -27.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8239 components: - type: Transform - pos: 8.5,21.5 - parent: 45711 - - uid: 5959 + rot: -1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8241 components: - type: Transform - pos: 8.5,22.5 - parent: 45711 - - uid: 5960 + rot: -1.5707963267948966 rad + pos: -25.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8243 components: - type: Transform - pos: 8.5,23.5 - parent: 45711 - - uid: 5961 + rot: -1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8244 components: - type: Transform - pos: 8.5,24.5 - parent: 45711 - - uid: 5962 + rot: -1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8245 components: - type: Transform - pos: 8.5,25.5 - parent: 45711 - - uid: 5963 + rot: -1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8246 components: - type: Transform - pos: 8.5,26.5 - parent: 45711 - - uid: 5964 + pos: -20.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8268 components: - type: Transform - pos: 8.5,27.5 - parent: 45711 - - uid: 5965 + rot: -1.5707963267948966 rad + pos: -30.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8269 components: - type: Transform - pos: 8.5,28.5 - parent: 45711 - - uid: 5966 + rot: -1.5707963267948966 rad + pos: -31.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8270 components: - type: Transform - pos: 8.5,29.5 - parent: 45711 - - uid: 5967 + rot: -1.5707963267948966 rad + pos: -32.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8271 components: - type: Transform - pos: 8.5,30.5 - parent: 45711 - - uid: 5968 + rot: -1.5707963267948966 rad + pos: -33.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8273 components: - type: Transform - pos: 8.5,31.5 - parent: 45711 - - uid: 5969 + rot: -1.5707963267948966 rad + pos: -34.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8274 components: - type: Transform - pos: 8.5,32.5 - parent: 45711 - - uid: 5973 + rot: -1.5707963267948966 rad + pos: -35.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8276 components: - type: Transform - pos: -6.5,39.5 - parent: 45711 - - uid: 5974 + rot: -1.5707963267948966 rad + pos: -28.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8277 components: - type: Transform - pos: -6.5,38.5 - parent: 45711 - - uid: 5975 + rot: -1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8278 components: - type: Transform - pos: -6.5,37.5 - parent: 45711 - - uid: 5977 + rot: -1.5707963267948966 rad + pos: -30.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8279 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,36.5 - parent: 45711 - - uid: 5978 + pos: -31.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8280 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,36.5 - parent: 45711 - - uid: 5979 + pos: -32.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8281 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,36.5 - parent: 45711 - - uid: 5981 + pos: -33.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8282 components: - type: Transform - pos: -10.5,35.5 - parent: 45711 - - uid: 6006 + rot: -1.5707963267948966 rad + pos: -34.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8283 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,41.5 - parent: 45711 - - uid: 6007 + pos: -35.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,41.5 - parent: 45711 - - uid: 6008 + pos: -29.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,41.5 - parent: 45711 - - uid: 6010 + pos: -29.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,41.5 - parent: 45711 - - uid: 6011 + pos: -27.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,41.5 - parent: 45711 - - uid: 6014 + pos: -27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,41.5 - parent: 45711 - - uid: 6015 + pos: -27.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8291 components: - type: Transform - pos: 2.5,42.5 - parent: 45711 - - uid: 6016 + pos: -27.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8293 components: - type: Transform - pos: 2.5,43.5 - parent: 45711 - - uid: 6024 + pos: -29.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8294 components: - type: Transform - pos: -0.5,41.5 - parent: 45711 - - uid: 6026 + pos: -29.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,40.5 - parent: 45711 - - uid: 6027 + pos: -29.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,40.5 - parent: 45711 - - uid: 6028 + pos: -29.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,40.5 - parent: 45711 - - uid: 6029 + pos: -29.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8298 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8299 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8300 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8302 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8303 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8304 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,40.5 - parent: 45711 - - uid: 6030 + pos: -28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,40.5 - parent: 45711 - - uid: 6031 + rot: -1.5707963267948966 rad + pos: -29.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,39.5 - parent: 45711 - - uid: 6032 + rot: -1.5707963267948966 rad + pos: -30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,38.5 - parent: 45711 - - uid: 6033 + rot: -1.5707963267948966 rad + pos: -31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,37.5 - parent: 45711 - - uid: 6034 + rot: -1.5707963267948966 rad + pos: -32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,36.5 - parent: 45711 - - uid: 6035 + rot: -1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,35.5 - parent: 45711 - - uid: 6037 + rot: -1.5707963267948966 rad + pos: -34.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,34.5 - parent: 45711 - - uid: 6038 + rot: -1.5707963267948966 rad + pos: -35.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,34.5 - parent: 45711 - - uid: 6039 + rot: -1.5707963267948966 rad + pos: -30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,34.5 - parent: 45711 - - uid: 6040 + rot: -1.5707963267948966 rad + pos: -31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,34.5 - parent: 45711 - - uid: 6041 + rot: -1.5707963267948966 rad + pos: -32.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,34.5 - parent: 45711 - - uid: 6042 + rot: -1.5707963267948966 rad + pos: -33.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,34.5 - parent: 45711 - - uid: 6045 + rot: -1.5707963267948966 rad + pos: -34.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,33.5 - parent: 45711 - - uid: 6046 + rot: -1.5707963267948966 rad + pos: -35.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,33.5 - parent: 45711 - - uid: 6047 + pos: -24.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,33.5 - parent: 45711 - - uid: 6048 + pos: -24.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,33.5 - parent: 45711 - - uid: 6050 + pos: -24.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,33.5 - parent: 45711 - - uid: 6056 + pos: -24.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,33.5 - parent: 45711 - - uid: 6057 + pos: -24.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,33.5 - parent: 45711 - - uid: 6060 + pos: -24.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,30.5 - parent: 45711 - - uid: 6061 + pos: -22.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,31.5 - parent: 45711 - - uid: 6066 + pos: -22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,33.5 - parent: 45711 - - uid: 6094 + pos: -22.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,33.5 - parent: 45711 - - uid: 6095 + pos: -22.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8349 components: - type: Transform - pos: -11.5,35.5 - parent: 45711 - - uid: 6099 + pos: -22.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,35.5 - parent: 45711 - - uid: 6100 + pos: -22.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,36.5 - parent: 45711 - - uid: 6104 + pos: -22.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8352 components: - type: Transform - pos: 6.5,49.5 - parent: 45711 - - uid: 6106 + pos: -22.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8363 components: - type: Transform - pos: 6.5,48.5 - parent: 45711 - - uid: 6107 + pos: -24.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8364 components: - type: Transform - pos: 6.5,47.5 - parent: 45711 - - uid: 6109 + pos: -24.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8365 components: - type: Transform - pos: 6.5,46.5 - parent: 45711 - - uid: 6110 + pos: -24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8366 components: - type: Transform - pos: 6.5,45.5 - parent: 45711 - - uid: 6111 + pos: -22.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8367 components: - type: Transform - pos: 6.5,44.5 - parent: 45711 - - uid: 6112 + pos: -22.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8368 components: - type: Transform - pos: 6.5,43.5 - parent: 45711 - - uid: 6113 + pos: -22.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8369 components: - type: Transform - pos: 6.5,42.5 - parent: 45711 - - uid: 6114 + pos: -22.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8370 components: - type: Transform - pos: 6.5,41.5 - parent: 45711 - - uid: 6118 + pos: -22.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8371 components: - type: Transform - pos: 6.5,40.5 - parent: 45711 - - uid: 6120 + rot: -1.5707963267948966 rad + pos: -25.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8372 components: - type: Transform - pos: 6.5,39.5 - parent: 45711 - - uid: 6121 + rot: -1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8374 components: - type: Transform - pos: 6.5,38.5 - parent: 45711 - - uid: 6124 + rot: -1.5707963267948966 rad + pos: -28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8375 components: - type: Transform - pos: 6.5,37.5 - parent: 45711 - - uid: 6127 + rot: -1.5707963267948966 rad + pos: -29.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8376 components: - type: Transform - pos: 6.5,36.5 - parent: 45711 - - uid: 6128 + rot: -1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8377 components: - type: Transform - pos: 6.5,35.5 - parent: 45711 - - uid: 6129 + rot: -1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8378 components: - type: Transform - pos: 6.5,34.5 - parent: 45711 - - uid: 6132 + rot: -1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,46.5 - parent: 45711 - - uid: 6134 + rot: -1.5707963267948966 rad + pos: -33.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8380 components: - type: Transform - pos: -0.5,45.5 - parent: 45711 - - uid: 6135 + rot: -1.5707963267948966 rad + pos: -34.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8382 components: - type: Transform - pos: -0.5,44.5 - parent: 45711 - - uid: 6136 + rot: -1.5707963267948966 rad + pos: -23.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8383 components: - type: Transform - pos: -0.5,43.5 - parent: 45711 - - uid: 6137 + rot: -1.5707963267948966 rad + pos: -24.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8384 components: - type: Transform - pos: -0.5,42.5 - parent: 45711 - - uid: 6142 + rot: -1.5707963267948966 rad + pos: -25.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8386 components: - type: Transform - pos: 0.5,38.5 - parent: 45711 - - uid: 6143 + rot: -1.5707963267948966 rad + pos: -27.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8387 components: - type: Transform - pos: 0.5,39.5 - parent: 45711 - - uid: 6144 + rot: -1.5707963267948966 rad + pos: -28.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8388 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,40.5 - parent: 45711 - - uid: 7827 + pos: -29.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8389 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-15.5 + pos: -30.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7865 + - uid: 8390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-22.5 + rot: -1.5707963267948966 rad + pos: -31.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7867 + color: '#0000FFFF' + - uid: 8392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-22.5 + rot: -1.5707963267948966 rad + pos: -32.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7868 + color: '#0000FFFF' + - uid: 8393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-22.5 + rot: -1.5707963267948966 rad + pos: -33.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7885 + color: '#0000FFFF' + - uid: 8394 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-15.5 + pos: -34.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7888 + - uid: 8395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-22.5 + rot: -1.5707963267948966 rad + pos: -35.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7890 + color: '#0000FFFF' + - uid: 8400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-54.5 + pos: -36.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7891 + - uid: 8401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-52.5 + pos: -38.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7919 + - uid: 8402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-53.5 + rot: -1.5707963267948966 rad + pos: -37.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7920 + color: '#FF0000FF' + - uid: 8403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,21.5 + rot: -1.5707963267948966 rad + pos: -36.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7922 + color: '#FF0000FF' + - uid: 8404 components: - type: Transform - pos: -19.5,66.5 + rot: -1.5707963267948966 rad + pos: -37.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8028 + - uid: 8405 components: - type: Transform - pos: -22.5,-14.5 + rot: -1.5707963267948966 rad + pos: -38.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8073 + - uid: 8406 components: - type: Transform - pos: -22.5,65.5 + rot: -1.5707963267948966 rad + pos: -39.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8104 + color: '#0000FFFF' + - uid: 8407 components: - type: Transform - pos: -0.5,-56.5 + rot: -1.5707963267948966 rad + pos: -40.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8138 + color: '#0000FFFF' + - uid: 8408 components: - type: Transform - pos: -9.5,-42.5 + rot: -1.5707963267948966 rad + pos: -41.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8156 + color: '#0000FFFF' + - uid: 8409 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-15.5 + pos: -42.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8157 + - uid: 8410 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-15.5 + pos: -43.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8158 + - uid: 8411 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-15.5 + pos: -44.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8159 + - uid: 8412 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-17.5 + pos: -45.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8160 + color: '#0000FFFF' + - uid: 8413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-17.5 + pos: -39.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8161 + - uid: 8414 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-17.5 + pos: -40.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8162 + - uid: 8415 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-17.5 + pos: -41.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8163 + - uid: 8416 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-17.5 + pos: -42.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8164 + - uid: 8417 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-17.5 + pos: -43.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8172 + - uid: 8418 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-17.5 + pos: -44.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8173 + - uid: 8419 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-17.5 + pos: -45.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8174 + - uid: 8423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-17.5 + pos: -27.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8175 + - uid: 8424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 + pos: -27.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8176 + - uid: 8425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-16.5 + pos: -27.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8177 + - uid: 8426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-16.5 + pos: -27.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8178 + - uid: 8427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-16.5 + pos: -26.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8179 + color: '#0000FFFF' + - uid: 8428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-15.5 + pos: -26.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8181 + - uid: 8463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-15.5 + pos: -49.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8182 + - uid: 8464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-15.5 + pos: -49.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8183 + - uid: 8465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-15.5 + pos: -49.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8184 + - uid: 8466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-15.5 + pos: -49.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8185 + - uid: 8467 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-15.5 + pos: -46.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8189 + - uid: 8468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-15.5 + rot: -1.5707963267948966 rad + pos: -47.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8190 + - uid: 8471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-15.5 + rot: -1.5707963267948966 rad + pos: -48.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8191 + - uid: 8478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-15.5 + pos: -49.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8192 + - uid: 8479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-15.5 + pos: -49.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8193 + - uid: 8480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-15.5 + pos: -49.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8195 + - uid: 8481 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-15.5 + pos: -46.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8196 + color: '#FF0000FF' + - uid: 8482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-16.5 + pos: -47.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8197 + - uid: 8483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-16.5 + pos: -47.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8198 + - uid: 8484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-16.5 + pos: -47.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8199 + - uid: 8485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-16.5 + pos: -47.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8200 + - uid: 8486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-16.5 + pos: -47.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8204 + - uid: 8487 components: - type: Transform - pos: -41.5,-17.5 + pos: -47.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8205 + - uid: 8488 components: - type: Transform - pos: -41.5,-18.5 + pos: -47.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8206 + - uid: 8489 components: - type: Transform - pos: -40.5,-16.5 + pos: -47.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8207 + color: '#FF0000FF' + - uid: 8490 components: - type: Transform - pos: -40.5,-17.5 + pos: -47.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8208 + color: '#FF0000FF' + - uid: 8491 components: - type: Transform - pos: -40.5,-18.5 + pos: -49.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8214 + - uid: 8492 components: - type: Transform - pos: -22.5,-16.5 + pos: -49.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8215 + - uid: 8493 components: - type: Transform - pos: -22.5,-17.5 + pos: -49.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8216 + - uid: 8494 components: - type: Transform - pos: -22.5,-18.5 + pos: -49.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8218 + - uid: 8495 components: - type: Transform - pos: -20.5,-18.5 + pos: -49.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8219 + color: '#0000FFFF' + - uid: 8496 components: - type: Transform - pos: -20.5,-19.5 + pos: -49.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8222 + color: '#0000FFFF' + - uid: 8498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-19.5 + pos: -49.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8223 + - uid: 8500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-19.5 + pos: -49.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8224 + - uid: 8501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-19.5 + pos: -49.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8225 + - uid: 8504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-19.5 + pos: -49.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8226 + - uid: 8505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-19.5 + pos: -49.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8227 + - uid: 8506 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-19.5 + pos: -42.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8229 + - uid: 8507 + components: + - type: Transform + pos: -47.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8508 + components: + - type: Transform + pos: -47.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8510 + components: + - type: Transform + pos: -47.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8512 + components: + - type: Transform + pos: -47.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8514 + components: + - type: Transform + pos: -47.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8517 + components: + - type: Transform + pos: -47.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8518 + components: + - type: Transform + pos: -47.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8519 + components: + - type: Transform + pos: -47.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8520 + components: + - type: Transform + pos: -47.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8539 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-19.5 + pos: -43.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8230 + - uid: 8540 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-19.5 + pos: -44.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8231 + - uid: 8541 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-19.5 + pos: -45.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8233 + - uid: 8542 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-21.5 + pos: -42.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8234 + - uid: 8544 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-21.5 + pos: -43.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8235 + - uid: 8545 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-21.5 + pos: -44.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8236 + - uid: 8546 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-21.5 + pos: -45.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8237 + - uid: 8549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 + pos: -20.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8238 + - uid: 8550 components: - type: Transform - pos: -27.5,-20.5 + pos: -20.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8239 + - uid: 8552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-21.5 + pos: -20.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8241 + - uid: 8553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-21.5 + pos: -17.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8243 + - uid: 8554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-21.5 + pos: -17.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8244 + - uid: 8555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-21.5 + pos: -17.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8245 + - uid: 8556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-21.5 + pos: -14.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8246 + - uid: 8557 components: - type: Transform - pos: -20.5,-20.5 + pos: -14.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8268 + - uid: 8558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-29.5 + pos: -14.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8559 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8560 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8561 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8571 + components: + - type: Transform + pos: -19.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8269 + - uid: 8572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-29.5 + pos: -19.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8270 + - uid: 8573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-29.5 + pos: -19.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8271 + - uid: 8574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-29.5 + pos: -19.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8273 + - uid: 8575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-29.5 + pos: -19.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8274 + - uid: 8576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-29.5 + pos: -16.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8276 + - uid: 8577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-27.5 + pos: -16.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8277 + color: '#0000FFFF' + - uid: 8578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-27.5 + pos: -16.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8278 + color: '#0000FFFF' + - uid: 8579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-27.5 + pos: -16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8279 + color: '#0000FFFF' + - uid: 8580 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8581 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8582 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8583 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8585 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8587 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8588 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8589 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8590 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8591 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8592 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8596 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-27.5 + pos: -19.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8280 + - uid: 8597 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-27.5 + pos: -18.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8281 + - uid: 8598 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-27.5 + pos: -16.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8282 + - uid: 8599 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-27.5 + pos: -15.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8283 + - uid: 8600 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-27.5 + pos: -13.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8285 + - uid: 8601 components: - type: Transform - pos: -29.5,-27.5 + rot: -1.5707963267948966 rad + pos: -12.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8286 + color: '#FF0000FF' + - uid: 8603 components: - type: Transform - pos: -29.5,-26.5 + pos: -16.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8287 + - uid: 8605 components: - type: Transform - pos: -27.5,-26.5 + pos: -17.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8288 + - uid: 8606 components: - type: Transform - pos: -27.5,-25.5 + pos: -17.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8289 + - uid: 8607 components: - type: Transform - pos: -27.5,-24.5 + pos: -17.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8291 + - uid: 8608 components: - type: Transform - pos: -27.5,-22.5 + pos: -17.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8293 + - uid: 8611 components: - type: Transform - pos: -29.5,-24.5 + rot: -1.5707963267948966 rad + pos: -21.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8294 + - uid: 8612 components: - type: Transform - pos: -29.5,-23.5 + rot: -1.5707963267948966 rad + pos: -20.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8295 + - uid: 8614 components: - type: Transform - pos: -29.5,-22.5 + rot: -1.5707963267948966 rad + pos: -18.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8296 + - uid: 8615 components: - type: Transform - pos: -29.5,-21.5 + rot: -1.5707963267948966 rad + pos: -17.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8297 + - uid: 8618 components: - type: Transform - pos: -29.5,-20.5 + rot: -1.5707963267948966 rad + pos: -8.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8298 + - uid: 8619 components: - type: Transform - pos: -27.5,-19.5 + rot: -1.5707963267948966 rad + pos: -9.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8299 + color: '#0000FFFF' + - uid: 8620 components: - type: Transform - pos: -27.5,-18.5 + rot: -1.5707963267948966 rad + pos: -11.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8300 + color: '#0000FFFF' + - uid: 8621 components: - type: Transform - pos: -29.5,-18.5 + rot: -1.5707963267948966 rad + pos: -12.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8302 + - uid: 8622 components: - type: Transform - pos: -29.5,-17.5 + rot: -1.5707963267948966 rad + pos: -14.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8303 + - uid: 8623 components: - type: Transform - pos: -29.5,-16.5 + rot: -1.5707963267948966 rad + pos: -15.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8304 + - uid: 8624 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-23.5 + pos: -10.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8305 + - uid: 8630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-23.5 + pos: -17.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8306 + - uid: 8633 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-23.5 + pos: -16.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8307 + - uid: 8634 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-23.5 + pos: -15.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8309 + - uid: 8635 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-23.5 + pos: -14.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8310 + - uid: 8636 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-23.5 + pos: -13.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8311 + - uid: 8637 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-23.5 + pos: -13.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8312 + color: '#0000FFFF' + - uid: 8638 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-23.5 + pos: -14.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8313 + color: '#0000FFFF' + - uid: 8639 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-25.5 + pos: -15.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8314 + - uid: 8644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-25.5 + pos: -9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8645 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8646 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8647 + components: + - type: Transform + pos: -7.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8315 + - uid: 8656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-25.5 + pos: -7.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8316 + - uid: 8657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-25.5 + pos: -7.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8317 + - uid: 8658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-25.5 + pos: -7.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8319 + - uid: 8659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-25.5 + pos: -7.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8338 + - uid: 8661 components: - type: Transform - pos: -24.5,-22.5 + pos: -7.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8662 + components: + - type: Transform + pos: -8.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8339 + - uid: 8663 components: - type: Transform - pos: -24.5,-23.5 + pos: -8.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8666 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8683 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8684 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8685 + components: + - type: Transform + pos: 7.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8340 + color: '#0000FFFF' + - uid: 8686 components: - type: Transform - pos: -24.5,-24.5 + pos: 5.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8342 + - uid: 8689 components: - type: Transform - pos: -24.5,-25.5 + pos: 8.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8343 + - uid: 8690 components: - type: Transform - pos: -24.5,-26.5 + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8344 + - uid: 8691 components: - type: Transform - pos: -24.5,-27.5 + rot: -1.5707963267948966 rad + pos: 7.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8345 + - uid: 8692 components: - type: Transform - pos: -22.5,-20.5 + pos: 8.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8346 + color: '#FF0000FF' + - uid: 8693 components: - type: Transform - pos: -22.5,-21.5 + pos: 8.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8347 + color: '#FF0000FF' + - uid: 8694 components: - type: Transform - pos: -22.5,-22.5 + pos: 8.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8348 + color: '#FF0000FF' + - uid: 8695 components: - type: Transform - pos: -22.5,-23.5 + pos: 8.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8349 + color: '#FF0000FF' + - uid: 8696 components: - type: Transform - pos: -22.5,-24.5 + pos: 8.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8350 + color: '#FF0000FF' + - uid: 8697 components: - type: Transform - pos: -22.5,-25.5 + pos: 8.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8351 + color: '#FF0000FF' + - uid: 8703 components: - type: Transform - pos: -22.5,-26.5 + pos: -1.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8352 + - uid: 8706 components: - type: Transform - pos: -22.5,-27.5 + pos: -1.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8363 + - uid: 8707 components: - type: Transform - pos: -24.5,-30.5 + pos: -1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8364 + color: '#0000FFFF' + - uid: 8711 components: - type: Transform - pos: -24.5,-29.5 + pos: -1.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8365 + color: '#0000FFFF' + - uid: 8712 components: - type: Transform - pos: -24.5,-28.5 + pos: -1.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8366 + color: '#0000FFFF' + - uid: 8713 components: - type: Transform - pos: -22.5,-32.5 + pos: -1.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8367 + - uid: 8714 components: - type: Transform - pos: -22.5,-31.5 + pos: -1.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8368 + - uid: 8715 components: - type: Transform - pos: -22.5,-30.5 + pos: -1.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8369 + - uid: 8716 components: - type: Transform - pos: -22.5,-29.5 + pos: -1.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8370 + - uid: 8717 components: - type: Transform - pos: -22.5,-28.5 + pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8371 + color: '#FF0000FF' + - uid: 8718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-31.5 + pos: 0.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8372 + - uid: 8719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-31.5 + pos: 0.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8374 + - uid: 8720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-31.5 + pos: 0.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8375 + - uid: 8721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-31.5 + pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8376 + - uid: 8722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-31.5 + pos: 0.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8377 + - uid: 8723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-31.5 + pos: 0.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8378 + - uid: 8724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-31.5 + pos: 0.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8379 + - uid: 8725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-31.5 + pos: 0.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8380 + - uid: 8728 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-31.5 + pos: -2.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8382 + color: '#0000FFFF' + - uid: 8729 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-33.5 + pos: -3.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8383 + - uid: 8730 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-33.5 + pos: -4.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8384 + - uid: 8731 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-33.5 + pos: -5.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8386 + - uid: 8732 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-33.5 + pos: -6.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8387 + - uid: 8733 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-33.5 + pos: -7.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8388 + - uid: 8734 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-33.5 + pos: -8.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8389 + - uid: 8735 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-33.5 + pos: -9.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8390 + - uid: 8737 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-33.5 + pos: -10.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8392 + - uid: 8738 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-33.5 + pos: -11.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8393 + - uid: 8739 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-33.5 + pos: -12.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8394 + - uid: 8740 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-33.5 + pos: -13.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8395 + - uid: 8742 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-33.5 + pos: -14.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8400 + - uid: 8743 components: - type: Transform - pos: -36.5,-34.5 + rot: -1.5707963267948966 rad + pos: -15.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8401 + - uid: 8744 components: - type: Transform - pos: -38.5,-32.5 + rot: -1.5707963267948966 rad + pos: -16.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8402 + color: '#0000FFFF' + - uid: 8745 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-31.5 + pos: -17.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8403 + color: '#0000FFFF' + - uid: 8746 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-31.5 + pos: -17.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8404 + - uid: 8747 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-35.5 + pos: -16.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8405 + color: '#FF0000FF' + - uid: 8748 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-35.5 + pos: -15.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8406 + color: '#FF0000FF' + - uid: 8749 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-35.5 + pos: -14.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8407 + color: '#FF0000FF' + - uid: 8750 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-35.5 + pos: -13.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8408 + color: '#FF0000FF' + - uid: 8753 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-35.5 + pos: -12.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8409 + color: '#FF0000FF' + - uid: 8754 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-35.5 + pos: -11.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8410 + color: '#FF0000FF' + - uid: 8755 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-35.5 + pos: -10.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8411 + color: '#FF0000FF' + - uid: 8756 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-35.5 + pos: -9.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8412 + color: '#FF0000FF' + - uid: 8757 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-35.5 + pos: -8.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8413 + color: '#FF0000FF' + - uid: 8759 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-33.5 + pos: -7.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8414 + - uid: 8760 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-33.5 + pos: -6.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8415 + - uid: 8762 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-33.5 + pos: -5.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8416 + - uid: 8763 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-33.5 + pos: -4.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8417 + - uid: 8764 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-33.5 + pos: -3.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8418 + - uid: 8765 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-33.5 + pos: -2.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8419 + - uid: 8766 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-33.5 + pos: -1.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8423 + - uid: 8767 components: - type: Transform - pos: -27.5,-32.5 + rot: -1.5707963267948966 rad + pos: -0.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8424 + - uid: 8783 components: - type: Transform - pos: -27.5,-33.5 + rot: 1.5707963267948966 rad + pos: -0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8425 + color: '#0000FFFF' + - uid: 8788 components: - type: Transform - pos: -27.5,-34.5 + rot: 1.5707963267948966 rad + pos: 0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8426 + color: '#0000FFFF' + - uid: 8789 components: - type: Transform - pos: -27.5,-35.5 + rot: 1.5707963267948966 rad + pos: 1.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8427 + color: '#0000FFFF' + - uid: 8790 components: - type: Transform - pos: -26.5,-34.5 + rot: 1.5707963267948966 rad + pos: 2.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8428 + - uid: 8791 components: - type: Transform - pos: -26.5,-35.5 + rot: 1.5707963267948966 rad + pos: 1.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8463 + color: '#FF0000FF' + - uid: 8792 components: - type: Transform - pos: -49.5,-34.5 + rot: 1.5707963267948966 rad + pos: 2.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8464 + color: '#FF0000FF' + - uid: 8800 components: - type: Transform - pos: -49.5,-33.5 + pos: -1.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8465 + - uid: 8801 components: - type: Transform - pos: -49.5,-32.5 + pos: 0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8466 + color: '#FF0000FF' + - uid: 8807 components: - type: Transform - pos: -49.5,-31.5 + pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8467 + color: '#FF0000FF' + - uid: 8808 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-35.5 + pos: -2.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8468 + - uid: 8809 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-35.5 + pos: -3.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8471 + - uid: 8811 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-35.5 + pos: -5.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8478 + - uid: 8812 components: - type: Transform - pos: -49.5,-36.5 + rot: -1.5707963267948966 rad + pos: -6.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8479 + - uid: 8813 components: - type: Transform - pos: -49.5,-37.5 + rot: -1.5707963267948966 rad + pos: -7.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8480 + - uid: 8814 components: - type: Transform - pos: -49.5,-38.5 + rot: -1.5707963267948966 rad + pos: -8.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8481 + - uid: 8815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-33.5 + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8482 + color: '#0000FFFF' + - uid: 8816 components: - type: Transform - pos: -47.5,-32.5 + rot: -1.5707963267948966 rad + pos: -0.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8483 + - uid: 8817 components: - type: Transform - pos: -47.5,-31.5 + rot: -1.5707963267948966 rad + pos: -1.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8484 + - uid: 8818 components: - type: Transform - pos: -47.5,-34.5 + rot: -1.5707963267948966 rad + pos: -2.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8485 + - uid: 8819 components: - type: Transform - pos: -47.5,-35.5 + rot: -1.5707963267948966 rad + pos: -3.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8486 + - uid: 8820 components: - type: Transform - pos: -47.5,-36.5 + rot: -1.5707963267948966 rad + pos: -4.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8487 + - uid: 8822 components: - type: Transform - pos: -47.5,-37.5 + rot: -1.5707963267948966 rad + pos: -6.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8488 + - uid: 8823 components: - type: Transform - pos: -47.5,-38.5 + rot: -1.5707963267948966 rad + pos: -7.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8489 + - uid: 8824 components: - type: Transform - pos: -47.5,-39.5 + rot: -1.5707963267948966 rad + pos: -8.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8490 + - uid: 8827 components: - type: Transform - pos: -47.5,-40.5 + rot: -1.5707963267948966 rad + pos: -9.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8491 - components: - - type: Transform - pos: -49.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8492 + - uid: 8829 components: - type: Transform - pos: -49.5,-40.5 + pos: -5.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8493 + color: '#FF0000FF' + - uid: 8830 components: - type: Transform - pos: -49.5,-41.5 + pos: -5.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8494 + color: '#FF0000FF' + - uid: 8831 components: - type: Transform - pos: -49.5,-42.5 + pos: -5.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8495 + color: '#FF0000FF' + - uid: 8833 components: - type: Transform - pos: -49.5,-43.5 + pos: -4.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8496 + - uid: 8834 components: - type: Transform - pos: -49.5,-44.5 + pos: -4.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8498 + - uid: 8835 components: - type: Transform - pos: -49.5,-45.5 + pos: -4.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8500 + - uid: 8837 components: - type: Transform - pos: -49.5,-46.5 + pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8501 + - uid: 8842 components: - type: Transform - pos: -49.5,-47.5 + pos: 5.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8504 + - uid: 8844 components: - type: Transform - pos: -49.5,-48.5 + rot: -1.5707963267948966 rad + pos: -0.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8505 + - uid: 8845 components: - type: Transform - pos: -49.5,-49.5 + rot: -1.5707963267948966 rad + pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8506 + - uid: 8846 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-15.5 + pos: 1.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8507 - components: - - type: Transform - pos: -47.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8508 - components: - - type: Transform - pos: -47.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8510 - components: - - type: Transform - pos: -47.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8512 - components: - - type: Transform - pos: -47.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8514 - components: - - type: Transform - pos: -47.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8517 - components: - - type: Transform - pos: -47.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8518 - components: - - type: Transform - pos: -47.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8519 - components: - - type: Transform - pos: -47.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8520 - components: - - type: Transform - pos: -47.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8539 + - uid: 8847 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-15.5 + pos: 2.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8540 + - uid: 8849 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-15.5 + pos: 3.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8541 + - uid: 8850 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-15.5 + pos: 4.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8542 + - uid: 8851 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-16.5 + pos: 2.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8544 + - uid: 8852 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-16.5 + pos: 1.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8545 + - uid: 8853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-16.5 + pos: 5.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8546 + color: '#0000FFFF' + - uid: 8854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-16.5 + pos: 5.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8549 + color: '#0000FFFF' + - uid: 8855 components: - type: Transform - pos: -20.5,-22.5 + pos: 5.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8550 + color: '#0000FFFF' + - uid: 8857 components: - type: Transform - pos: -20.5,-23.5 + pos: 4.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8552 + - uid: 8858 components: - type: Transform - pos: -20.5,-24.5 + pos: 4.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8553 + - uid: 8859 components: - type: Transform - pos: -17.5,-24.5 + pos: 4.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8554 + - uid: 8860 components: - type: Transform - pos: -17.5,-23.5 + rot: -1.5707963267948966 rad + pos: 3.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8555 + - uid: 8861 components: - type: Transform - pos: -17.5,-22.5 + pos: 4.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8556 + - uid: 8862 components: - type: Transform - pos: -14.5,-24.5 + pos: 5.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8557 + color: '#0000FFFF' + - uid: 8869 components: - type: Transform - pos: -14.5,-23.5 + rot: -1.5707963267948966 rad + pos: -6.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8558 + - uid: 8870 components: - type: Transform - pos: -14.5,-22.5 + rot: -1.5707963267948966 rad + pos: -7.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8559 + - uid: 8871 components: - type: Transform - pos: -11.5,-24.5 + rot: -1.5707963267948966 rad + pos: -8.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8560 + - uid: 8873 components: - type: Transform - pos: -11.5,-23.5 + rot: -1.5707963267948966 rad + pos: -10.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8561 + - uid: 8874 components: - type: Transform - pos: -11.5,-22.5 + rot: -1.5707963267948966 rad + pos: -11.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8571 - components: - - type: Transform - pos: -19.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8572 - components: - - type: Transform - pos: -19.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8573 - components: - - type: Transform - pos: -19.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8574 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8575 - components: - - type: Transform - pos: -19.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8576 + - uid: 8875 components: - type: Transform - pos: -16.5,-24.5 + rot: -1.5707963267948966 rad + pos: -12.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8577 + color: '#FF0000FF' + - uid: 8876 components: - type: Transform - pos: -16.5,-23.5 + rot: -1.5707963267948966 rad + pos: -5.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8578 + - uid: 8877 components: - type: Transform - pos: -16.5,-22.5 + rot: -1.5707963267948966 rad + pos: -6.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8579 + - uid: 8878 components: - type: Transform - pos: -16.5,-21.5 + rot: -1.5707963267948966 rad + pos: -7.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8580 + - uid: 8880 components: - type: Transform - pos: -16.5,-20.5 + rot: -1.5707963267948966 rad + pos: -9.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8581 + - uid: 8881 components: - type: Transform - pos: -13.5,-24.5 + rot: -1.5707963267948966 rad + pos: -10.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8582 + - uid: 8882 components: - type: Transform - pos: -13.5,-23.5 + rot: -1.5707963267948966 rad + pos: -11.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8583 + - uid: 8883 components: - type: Transform - pos: -13.5,-22.5 + rot: -1.5707963267948966 rad + pos: -12.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8585 + - uid: 8884 components: - type: Transform - pos: -13.5,-21.5 + rot: -1.5707963267948966 rad + pos: -13.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8587 + - uid: 8885 components: - type: Transform - pos: -13.5,-20.5 + rot: -1.5707963267948966 rad + pos: -14.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8588 + - uid: 8888 components: - type: Transform - pos: -10.5,-24.5 + pos: -13.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8589 + color: '#FF0000FF' + - uid: 8889 components: - type: Transform - pos: -10.5,-23.5 + pos: -13.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8590 + color: '#FF0000FF' + - uid: 8890 components: - type: Transform - pos: -10.5,-22.5 + pos: -15.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8591 + - uid: 8891 components: - type: Transform - pos: -10.5,-21.5 + pos: -15.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8592 + - uid: 8892 components: - type: Transform - pos: -10.5,-20.5 + pos: -15.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8596 + - uid: 8893 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-21.5 + pos: -14.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8597 + - uid: 8894 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-21.5 + pos: -15.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8598 + - uid: 8895 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-21.5 + pos: -16.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8599 + - uid: 8896 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-21.5 + pos: -17.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8600 + - uid: 8897 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-21.5 + pos: -18.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8601 + - uid: 8898 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8603 - components: - - type: Transform - pos: -16.5,-18.5 + pos: -16.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8605 - components: - - type: Transform - pos: -17.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8606 - components: - - type: Transform - pos: -17.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8607 + - uid: 8899 components: - type: Transform - pos: -17.5,-18.5 + rot: -1.5707963267948966 rad + pos: -17.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8608 + color: '#0000FFFF' + - uid: 8900 components: - type: Transform - pos: -17.5,-17.5 + rot: -1.5707963267948966 rad + pos: -18.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8611 + color: '#0000FFFF' + - uid: 8911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-19.5 + rot: 3.141592653589793 rad + pos: -18.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8612 + - uid: 8912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 + rot: 3.141592653589793 rad + pos: -16.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8614 + - uid: 8915 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-19.5 + pos: -17.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8615 + - uid: 8917 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-19.5 + pos: -16.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8618 + color: '#FF0000FF' + - uid: 8919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-19.5 + pos: -17.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8619 + color: '#FF0000FF' + - uid: 8920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-19.5 + pos: -16.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8620 + - uid: 8921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 + pos: -16.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8621 + - uid: 8922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-19.5 + pos: -16.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8622 + - uid: 8925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-19.5 + pos: -15.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8623 + - uid: 8927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-19.5 + pos: -15.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8624 + - uid: 8928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-21.5 + pos: -17.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8630 + - uid: 8929 components: - type: Transform - pos: -17.5,-16.5 + pos: -17.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8633 + - uid: 8932 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-15.5 + pos: -16.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8634 + - uid: 8933 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-15.5 + pos: -15.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8635 + - uid: 8934 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-15.5 + pos: -14.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8636 + - uid: 8935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 + pos: -13.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8637 + - uid: 8937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-17.5 + pos: -13.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8638 + color: '#FF0000FF' + - uid: 8938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-17.5 + pos: -13.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8639 + color: '#FF0000FF' + - uid: 8942 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-17.5 + pos: -19.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8644 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8645 + - uid: 8943 components: - type: Transform - pos: -9.5,-19.5 + rot: -1.5707963267948966 rad + pos: -20.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8646 + color: '#0000FFFF' + - uid: 8944 components: - type: Transform - pos: -9.5,-18.5 + rot: -1.5707963267948966 rad + pos: -21.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8647 + - uid: 8945 components: - type: Transform - pos: -7.5,-18.5 + rot: -1.5707963267948966 rad + pos: -22.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8656 + - uid: 8946 components: - type: Transform - pos: -7.5,-20.5 + rot: 1.5707963267948966 rad + pos: -23.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8657 + - uid: 8947 components: - type: Transform - pos: -7.5,-21.5 + rot: -1.5707963267948966 rad + pos: -24.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8658 + - uid: 8948 components: - type: Transform - pos: -7.5,-22.5 + rot: -1.5707963267948966 rad + pos: -25.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8659 + - uid: 8949 components: - type: Transform - pos: -7.5,-23.5 + rot: -1.5707963267948966 rad + pos: -26.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8661 + - uid: 8950 components: - type: Transform - pos: -7.5,-25.5 + rot: -1.5707963267948966 rad + pos: -27.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8662 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8663 + - uid: 8951 components: - type: Transform - pos: -8.5,-24.5 + rot: -1.5707963267948966 rad + pos: -28.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8666 + color: '#0000FFFF' + - uid: 8952 components: - type: Transform - pos: -8.5,-22.5 + rot: -1.5707963267948966 rad + pos: -29.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8673 + color: '#0000FFFF' + - uid: 8953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-23.5 + rot: -1.5707963267948966 rad + pos: -30.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8674 + color: '#0000FFFF' + - uid: 8954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-23.5 + rot: -1.5707963267948966 rad + pos: -31.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8675 + color: '#0000FFFF' + - uid: 8955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-23.5 + rot: -1.5707963267948966 rad + pos: -32.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8676 + color: '#0000FFFF' + - uid: 8956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-24.5 + rot: -1.5707963267948966 rad + pos: -33.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8677 + - uid: 8959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-24.5 + rot: -1.5707963267948966 rad + pos: -34.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8683 + - uid: 8960 components: - type: Transform - pos: 7.5,-18.5 + rot: -1.5707963267948966 rad + pos: -19.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8684 + color: '#FF0000FF' + - uid: 8961 components: - type: Transform - pos: 7.5,-17.5 + rot: -1.5707963267948966 rad + pos: -20.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8685 + color: '#FF0000FF' + - uid: 8962 components: - type: Transform - pos: 7.5,-16.5 + pos: -21.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8686 + - uid: 8963 components: - type: Transform - pos: 5.5,-14.5 + rot: -1.5707963267948966 rad + pos: -22.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8689 + - uid: 8965 components: - type: Transform - pos: 8.5,-14.5 + rot: -1.5707963267948966 rad + pos: -24.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8690 + - uid: 8966 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-13.5 + pos: -25.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8691 + - uid: 8967 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-13.5 + pos: -26.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8692 + - uid: 8968 components: - type: Transform - pos: 8.5,-15.5 + rot: -1.5707963267948966 rad + pos: -27.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8693 + - uid: 8969 components: - type: Transform - pos: 8.5,-16.5 + rot: -1.5707963267948966 rad + pos: -28.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8694 + - uid: 8970 components: - type: Transform - pos: 8.5,-17.5 + rot: -1.5707963267948966 rad + pos: -29.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8695 + - uid: 8971 components: - type: Transform - pos: 8.5,-18.5 + rot: -1.5707963267948966 rad + pos: -30.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8696 + - uid: 8972 components: - type: Transform - pos: 8.5,-19.5 + rot: -1.5707963267948966 rad + pos: -31.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8697 + - uid: 8973 components: - type: Transform - pos: 8.5,-20.5 + rot: -1.5707963267948966 rad + pos: -32.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8703 + - uid: 8974 components: - type: Transform - pos: -1.5,-24.5 + rot: -1.5707963267948966 rad + pos: -33.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8706 + color: '#FF0000FF' + - uid: 8977 components: - type: Transform - pos: -1.5,-25.5 + pos: -35.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8707 + - uid: 8978 components: - type: Transform - pos: -1.5,-27.5 + pos: -35.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8711 + - uid: 8979 components: - type: Transform - pos: -1.5,-30.5 + pos: -35.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8712 + - uid: 8980 components: - type: Transform - pos: -1.5,-29.5 + pos: -35.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8713 + - uid: 8981 components: - type: Transform - pos: -1.5,-31.5 + pos: -35.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8714 + - uid: 8982 components: - type: Transform - pos: -1.5,-26.5 + pos: -35.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8715 + - uid: 8983 components: - type: Transform - pos: -1.5,-32.5 + pos: -35.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8716 + - uid: 8984 components: - type: Transform - pos: -1.5,-34.5 + pos: -35.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8717 + - uid: 8985 components: - type: Transform - pos: 0.5,-24.5 + pos: -35.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8718 + color: '#0000FFFF' + - uid: 8986 components: - type: Transform - pos: 0.5,-25.5 + pos: -35.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8719 + color: '#0000FFFF' + - uid: 8989 components: - type: Transform - pos: 0.5,-26.5 + pos: -35.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8720 + color: '#0000FFFF' + - uid: 8993 components: - type: Transform - pos: 0.5,-27.5 + pos: -34.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8721 + - uid: 8994 components: - type: Transform - pos: 0.5,-28.5 + pos: -34.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8722 + - uid: 8995 components: - type: Transform - pos: 0.5,-29.5 + pos: -34.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8723 + - uid: 8996 components: - type: Transform - pos: 0.5,-31.5 + pos: -34.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8724 + - uid: 8997 components: - type: Transform - pos: 0.5,-34.5 + pos: -34.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8725 + - uid: 8998 components: - type: Transform - pos: 0.5,-33.5 + pos: -34.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8729 + - uid: 8999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 + pos: -34.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8730 + color: '#FF0000FF' + - uid: 9000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 + pos: -34.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8731 + color: '#FF0000FF' + - uid: 9001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 + pos: -34.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8732 + color: '#FF0000FF' + - uid: 9002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-28.5 + pos: -34.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8733 + color: '#FF0000FF' + - uid: 9003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-28.5 + pos: -35.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8734 + - uid: 9004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-28.5 + pos: -35.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8735 + - uid: 9005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-28.5 + pos: -35.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8737 + - uid: 9006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-28.5 + pos: -35.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8738 + - uid: 9007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-28.5 + pos: -35.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8739 + - uid: 9008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-28.5 + pos: -35.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8740 + - uid: 9009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-28.5 + pos: -35.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8742 + - uid: 9010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-28.5 + pos: -35.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8743 + - uid: 9011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-28.5 + pos: -34.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8744 + color: '#FF0000FF' + - uid: 9012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-28.5 + pos: -34.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8745 + color: '#FF0000FF' + - uid: 9013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-28.5 + pos: -34.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8746 + color: '#FF0000FF' + - uid: 9014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-30.5 + pos: -34.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8747 + - uid: 9015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-30.5 + pos: -34.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8748 + - uid: 9016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 + pos: -34.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8749 + - uid: 9017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-30.5 + pos: -34.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8750 + - uid: 9018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-30.5 + pos: -34.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8753 + - uid: 9033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-30.5 + pos: -23.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8754 + - uid: 9044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-30.5 + pos: -23.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8755 + - uid: 9045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-30.5 + pos: -23.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8756 + - uid: 9047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-30.5 + pos: -23.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8757 + - uid: 9049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-30.5 + pos: -21.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8759 + color: '#0000FFFF' + - uid: 9050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-30.5 + pos: -21.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8760 + color: '#0000FFFF' + - uid: 9051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-30.5 + pos: -21.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8762 + color: '#0000FFFF' + - uid: 9052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 + pos: -21.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8763 + color: '#0000FFFF' + - uid: 9053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-30.5 + pos: -23.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8764 + - uid: 9054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-30.5 + pos: -23.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8765 + - uid: 9055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-30.5 + pos: -23.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8766 + - uid: 9056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 + pos: -23.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8767 + - uid: 9057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 + pos: -23.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8783 + - uid: 9058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-33.5 + pos: -21.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8788 + - uid: 9059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-33.5 + pos: -21.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8789 + - uid: 9060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-33.5 + pos: -21.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8790 + - uid: 9061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-33.5 + pos: -21.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8800 + - uid: 9062 components: - type: Transform - pos: -1.5,-35.5 + pos: -21.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8801 + - uid: 9071 components: - type: Transform - pos: 0.5,-35.5 + pos: -9.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8807 + - uid: 9072 components: - type: Transform - pos: 0.5,-36.5 + pos: -9.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8809 + - uid: 9073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-36.5 + pos: -9.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8811 + color: '#FF0000FF' + - uid: 9074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-36.5 + pos: -8.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8812 + - uid: 9075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-36.5 + pos: -8.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8813 + - uid: 9076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-36.5 + pos: -8.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8814 + - uid: 9077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-36.5 + pos: -8.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8815 + - uid: 9078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-36.5 + pos: -8.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8819 + - uid: 9084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-37.5 + pos: -5.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8820 + - uid: 9085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-37.5 + pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8822 + - uid: 9086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-37.5 + pos: -5.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8823 + - uid: 9087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-37.5 + pos: -5.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8824 + - uid: 9088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-37.5 + pos: -5.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8827 + - uid: 9089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-37.5 + pos: -5.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8829 + - uid: 9090 components: - type: Transform - pos: -5.5,-38.5 + pos: -5.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8830 + - uid: 9091 components: - type: Transform - pos: -5.5,-39.5 + pos: -5.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8831 + - uid: 9092 components: - type: Transform - pos: -5.5,-40.5 + pos: -5.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8833 + - uid: 9093 components: - type: Transform - pos: -4.5,-37.5 + pos: -3.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8834 + - uid: 9094 components: - type: Transform - pos: -4.5,-38.5 + pos: -3.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8835 + - uid: 9095 components: - type: Transform - pos: -4.5,-39.5 + pos: -3.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8837 + - uid: 9096 components: - type: Transform - pos: -4.5,-41.5 + pos: -3.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8842 + - uid: 9097 components: - type: Transform - pos: 5.5,-39.5 + pos: -3.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8844 + - uid: 9098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-36.5 + pos: -3.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8845 + - uid: 9099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-36.5 + pos: -3.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8846 + - uid: 9100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-36.5 + pos: -3.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8847 + - uid: 9105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-36.5 + pos: -3.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8849 + - uid: 9108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-36.5 + rot: 1.5707963267948966 rad + pos: -4.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8850 + - uid: 9109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-36.5 + rot: 1.5707963267948966 rad + pos: -5.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8853 + - uid: 9110 components: - type: Transform - pos: 5.5,-40.5 + rot: 1.5707963267948966 rad + pos: -6.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8854 + - uid: 9111 components: - type: Transform - pos: 5.5,-38.5 + rot: 1.5707963267948966 rad + pos: -7.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8855 + - uid: 9112 components: - type: Transform - pos: 5.5,-37.5 + rot: 1.5707963267948966 rad + pos: -8.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8857 + - uid: 9113 components: - type: Transform - pos: 4.5,-38.5 + rot: 1.5707963267948966 rad + pos: -6.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8858 + - uid: 9114 components: - type: Transform - pos: 4.5,-39.5 + rot: 1.5707963267948966 rad + pos: -7.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8859 + - uid: 9115 components: - type: Transform - pos: 4.5,-40.5 + rot: 1.5707963267948966 rad + pos: -8.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8860 + - uid: 9116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-37.5 + rot: 1.5707963267948966 rad + pos: -4.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8861 + - uid: 9117 components: - type: Transform - pos: 4.5,-41.5 + rot: 1.5707963267948966 rad + pos: -3.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8862 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8869 + - uid: 9118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-41.5 + rot: 1.5707963267948966 rad + pos: -2.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8870 + - uid: 9119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-41.5 + rot: 1.5707963267948966 rad + pos: -1.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8871 + - uid: 9121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-41.5 + rot: 1.5707963267948966 rad + pos: 0.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8873 + - uid: 9122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 + rot: 1.5707963267948966 rad + pos: 1.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8874 + - uid: 9123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-41.5 + rot: 1.5707963267948966 rad + pos: 2.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8875 + - uid: 9124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-41.5 + rot: 1.5707963267948966 rad + pos: 3.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8877 + - uid: 9125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-40.5 + rot: 1.5707963267948966 rad + pos: -2.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8878 + - uid: 9126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-40.5 + rot: 1.5707963267948966 rad + pos: -1.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8880 + - uid: 9127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 + rot: 1.5707963267948966 rad + pos: -0.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8881 + - uid: 9129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-40.5 + rot: 1.5707963267948966 rad + pos: 0.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8882 + - uid: 9131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-40.5 + rot: 1.5707963267948966 rad + pos: 2.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8883 + - uid: 9132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 + rot: 1.5707963267948966 rad + pos: 3.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8884 + - uid: 9133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-40.5 + rot: 1.5707963267948966 rad + pos: 4.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8885 + - uid: 9134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-40.5 + rot: 1.5707963267948966 rad + pos: 5.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8888 + - uid: 9138 components: - type: Transform - pos: -13.5,-42.5 + pos: 4.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8889 + - uid: 9141 components: - type: Transform - pos: -13.5,-43.5 + pos: 4.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8890 - components: - - type: Transform - pos: -15.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8891 + - uid: 9145 components: - type: Transform - pos: -15.5,-42.5 + pos: 4.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8892 + color: '#FF0000FF' + - uid: 9146 components: - type: Transform - pos: -15.5,-43.5 + pos: 4.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8893 + color: '#FF0000FF' + - uid: 9147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-41.5 + pos: 4.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8894 + - uid: 9148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-41.5 + pos: 4.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8895 + - uid: 9149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 + pos: 4.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8896 + - uid: 9150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-41.5 + pos: 6.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8897 + color: '#0000FFFF' + - uid: 9151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-41.5 + pos: 6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8898 + color: '#0000FFFF' + - uid: 9152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-40.5 + pos: 6.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8899 + - uid: 9153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-40.5 + pos: 6.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8900 + - uid: 9154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-40.5 + pos: 6.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8911 + - uid: 9155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-51.5 + pos: 6.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8912 + - uid: 9157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-51.5 + pos: 6.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8915 + - uid: 9158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-50.5 + pos: 6.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8917 + - uid: 9172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-51.5 + rot: 1.5707963267948966 rad + pos: 5.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8919 + - uid: 9173 components: - type: Transform - pos: -17.5,-50.5 + rot: 1.5707963267948966 rad + pos: 6.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8920 + - uid: 9174 components: - type: Transform - pos: -16.5,-49.5 + rot: 1.5707963267948966 rad + pos: 7.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8921 + color: '#FF0000FF' + - uid: 9176 components: - type: Transform - pos: -16.5,-48.5 + rot: 1.5707963267948966 rad + pos: 9.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8922 + color: '#FF0000FF' + - uid: 9177 components: - type: Transform - pos: -16.5,-47.5 + rot: 1.5707963267948966 rad + pos: 10.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8925 + color: '#FF0000FF' + - uid: 9178 components: - type: Transform - pos: -15.5,-45.5 + rot: 1.5707963267948966 rad + pos: 11.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8927 + color: '#FF0000FF' + - uid: 9179 components: - type: Transform - pos: -15.5,-44.5 + rot: 1.5707963267948966 rad + pos: 12.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8928 + color: '#FF0000FF' + - uid: 9180 components: - type: Transform - pos: -17.5,-49.5 + rot: 1.5707963267948966 rad + pos: 13.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8929 + - uid: 9181 components: - type: Transform - pos: -17.5,-48.5 + rot: 1.5707963267948966 rad + pos: 14.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8932 + - uid: 9182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-47.5 + rot: 1.5707963267948966 rad + pos: 7.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8933 + color: '#0000FFFF' + - uid: 9183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-47.5 + rot: 1.5707963267948966 rad + pos: 8.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8934 + color: '#0000FFFF' + - uid: 9184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-47.5 + rot: 1.5707963267948966 rad + pos: 9.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8935 + color: '#0000FFFF' + - uid: 9186 components: - type: Transform - pos: -13.5,-46.5 + rot: 1.5707963267948966 rad + pos: 11.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8937 + color: '#0000FFFF' + - uid: 9187 components: - type: Transform - pos: -13.5,-45.5 + rot: 1.5707963267948966 rad + pos: 12.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8938 + color: '#0000FFFF' + - uid: 9188 components: - type: Transform - pos: -13.5,-44.5 + rot: 1.5707963267948966 rad + pos: 13.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8942 + color: '#0000FFFF' + - uid: 9189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-40.5 + rot: 1.5707963267948966 rad + pos: 14.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8943 + - uid: 9194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-40.5 + pos: -0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8944 + color: '#FF0000FF' + - uid: 9195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-41.5 + pos: -0.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8945 + - uid: 9196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-40.5 + pos: -0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8946 + color: '#FF0000FF' + - uid: 9197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-40.5 + pos: -0.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8947 + color: '#FF0000FF' + - uid: 9199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-40.5 + pos: 1.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8948 + - uid: 9200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-40.5 + pos: 1.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8949 + - uid: 9201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-40.5 + pos: 1.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8950 + - uid: 9202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-40.5 + pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8951 + - uid: 9203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-40.5 + pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8952 + - uid: 9204 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-40.5 + pos: 2.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8953 + - uid: 9205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-40.5 + rot: 1.5707963267948966 rad + pos: 3.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8954 + color: '#FF0000FF' + - uid: 9206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-40.5 + rot: 1.5707963267948966 rad + pos: 2.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8955 + color: '#FF0000FF' + - uid: 9207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-40.5 + rot: 1.5707963267948966 rad + pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8956 + color: '#FF0000FF' + - uid: 9208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-40.5 + rot: 1.5707963267948966 rad + pos: 0.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8959 + color: '#FF0000FF' + - uid: 9210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-40.5 + pos: 1.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8960 + - uid: 9211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 + pos: 1.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8961 + color: '#0000FFFF' + - uid: 9213 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-41.5 + pos: 3.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8962 + color: '#0000FFFF' + - uid: 9219 components: - type: Transform - pos: -21.5,-41.5 + rot: -1.5707963267948966 rad + pos: 4.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8963 + - uid: 9220 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-41.5 + pos: 4.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8965 + - uid: 9221 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-41.5 + pos: 5.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8966 + - uid: 9222 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-41.5 + pos: 6.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8967 + - uid: 9223 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-41.5 + pos: 7.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8968 + - uid: 9224 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-41.5 + pos: 5.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8969 + color: '#0000FFFF' + - uid: 9225 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-41.5 + pos: 6.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8970 + color: '#0000FFFF' + - uid: 9226 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-41.5 + pos: 7.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8971 + color: '#0000FFFF' + - uid: 9232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-41.5 + rot: 1.5707963267948966 rad + pos: 5.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8972 + - uid: 9233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-41.5 + rot: 1.5707963267948966 rad + pos: 6.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8973 + - uid: 9234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-41.5 + rot: 1.5707963267948966 rad + pos: 7.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8974 + - uid: 9236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-41.5 + rot: 1.5707963267948966 rad + pos: 8.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8977 + - uid: 9237 components: - type: Transform - pos: -35.5,-41.5 + rot: 1.5707963267948966 rad + pos: 7.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8978 + - uid: 9238 components: - type: Transform - pos: -35.5,-42.5 + rot: 1.5707963267948966 rad + pos: 8.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8979 + - uid: 9243 components: - type: Transform - pos: -35.5,-43.5 + pos: -0.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8980 + color: '#FF0000FF' + - uid: 9244 components: - type: Transform - pos: -35.5,-44.5 + pos: 1.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8981 + - uid: 9245 components: - type: Transform - pos: -35.5,-45.5 + pos: 1.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8982 + - uid: 9250 components: - type: Transform - pos: -35.5,-46.5 + pos: -1.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8983 + - uid: 9254 components: - type: Transform - pos: -35.5,-47.5 + rot: 1.5707963267948966 rad + pos: 0.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8984 + - uid: 9257 components: - type: Transform - pos: -35.5,-48.5 + pos: -0.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8985 + - uid: 9258 components: - type: Transform - pos: -35.5,-49.5 + rot: -1.5707963267948966 rad + pos: 0.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8986 + - uid: 9259 components: - type: Transform - pos: -35.5,-50.5 + pos: 8.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8989 + color: '#FF0000FF' + - uid: 9260 components: - type: Transform - pos: -35.5,-51.5 + pos: 8.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8993 + color: '#FF0000FF' + - uid: 9261 components: - type: Transform - pos: -34.5,-42.5 + pos: 8.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8994 + - uid: 9262 components: - type: Transform - pos: -34.5,-43.5 + pos: 8.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8995 + - uid: 9263 components: - type: Transform - pos: -34.5,-44.5 + pos: 10.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8996 + color: '#0000FFFF' + - uid: 9264 components: - type: Transform - pos: -34.5,-45.5 + pos: 10.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8997 + color: '#0000FFFF' + - uid: 9272 components: - type: Transform - pos: -34.5,-46.5 + pos: 8.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8998 + - uid: 9273 components: - type: Transform - pos: -34.5,-47.5 + pos: 8.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8999 + - uid: 9274 components: - type: Transform - pos: -34.5,-48.5 + pos: 10.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9000 + color: '#0000FFFF' + - uid: 9275 components: - type: Transform - pos: -34.5,-49.5 + pos: 12.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9001 + - uid: 9276 components: - type: Transform - pos: -34.5,-50.5 + pos: 12.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9002 + - uid: 9277 components: - type: Transform - pos: -34.5,-51.5 + pos: 12.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9003 + - uid: 9278 components: - type: Transform - pos: -35.5,-52.5 + pos: 14.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9004 + - uid: 9279 components: - type: Transform - pos: -35.5,-53.5 + pos: 14.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9005 + - uid: 9280 components: - type: Transform - pos: -35.5,-54.5 + pos: 14.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9006 + - uid: 9281 components: - type: Transform - pos: -35.5,-55.5 + pos: 14.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9007 + - uid: 9282 components: - type: Transform - pos: -35.5,-56.5 + rot: -1.5707963267948966 rad + pos: 11.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9008 + color: '#FF0000FF' + - uid: 9283 components: - type: Transform - pos: -35.5,-57.5 + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9009 + - uid: 9286 components: - type: Transform - pos: -35.5,-58.5 + rot: -1.5707963267948966 rad + pos: 12.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9010 + - uid: 9287 components: - type: Transform - pos: -35.5,-59.5 + rot: -1.5707963267948966 rad + pos: 13.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9011 + - uid: 9294 components: - type: Transform - pos: -34.5,-52.5 + rot: -1.5707963267948966 rad + pos: 24.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9012 + - uid: 9295 components: - type: Transform - pos: -34.5,-53.5 + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9013 + - uid: 9296 components: - type: Transform - pos: -34.5,-54.5 + rot: -1.5707963267948966 rad + pos: 26.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9014 + - uid: 9297 components: - type: Transform - pos: -34.5,-55.5 + rot: -1.5707963267948966 rad + pos: 27.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9015 + - uid: 9298 components: - type: Transform - pos: -34.5,-56.5 + rot: -1.5707963267948966 rad + pos: 28.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9016 + - uid: 9299 components: - type: Transform - pos: -34.5,-57.5 + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9017 + - uid: 9300 components: - type: Transform - pos: -34.5,-58.5 + rot: -1.5707963267948966 rad + pos: 30.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9018 + - uid: 9301 components: - type: Transform - pos: -34.5,-59.5 + rot: -1.5707963267948966 rad + pos: 31.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9033 + - uid: 9302 components: - type: Transform - pos: -23.5,-42.5 + rot: -1.5707963267948966 rad + pos: 32.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9044 + - uid: 9303 components: - type: Transform - pos: -23.5,-43.5 + rot: -1.5707963267948966 rad + pos: 33.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9045 + - uid: 9304 components: - type: Transform - pos: -23.5,-44.5 + rot: -1.5707963267948966 rad + pos: 34.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9047 + - uid: 9305 components: - type: Transform - pos: -23.5,-45.5 + rot: -1.5707963267948966 rad + pos: 35.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9049 + - uid: 9306 components: - type: Transform - pos: -21.5,-42.5 + rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9050 + - uid: 9313 components: - type: Transform - pos: -21.5,-43.5 + rot: -1.5707963267948966 rad + pos: 25.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9051 + - uid: 9314 components: - type: Transform - pos: -21.5,-44.5 + rot: -1.5707963267948966 rad + pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9052 + - uid: 9317 components: - type: Transform - pos: -21.5,-45.5 + rot: -1.5707963267948966 rad + pos: 27.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9053 + - uid: 9318 components: - type: Transform - pos: -23.5,-46.5 + rot: -1.5707963267948966 rad + pos: 28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9054 + color: '#0000FFFF' + - uid: 9319 components: - type: Transform - pos: -23.5,-47.5 + rot: -1.5707963267948966 rad + pos: 29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9055 + color: '#0000FFFF' + - uid: 9320 components: - type: Transform - pos: -23.5,-48.5 + rot: -1.5707963267948966 rad + pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9056 + color: '#0000FFFF' + - uid: 9321 components: - type: Transform - pos: -23.5,-49.5 + rot: -1.5707963267948966 rad + pos: 31.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9057 + color: '#0000FFFF' + - uid: 9322 components: - type: Transform - pos: -23.5,-50.5 + rot: -1.5707963267948966 rad + pos: 32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9058 + color: '#0000FFFF' + - uid: 9323 components: - type: Transform - pos: -21.5,-46.5 + rot: -1.5707963267948966 rad + pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9059 + - uid: 9324 components: - type: Transform - pos: -21.5,-47.5 + rot: -1.5707963267948966 rad + pos: 34.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9060 + - uid: 9325 components: - type: Transform - pos: -21.5,-48.5 + rot: -1.5707963267948966 rad + pos: 35.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9061 + - uid: 9326 components: - type: Transform - pos: -21.5,-49.5 + rot: -1.5707963267948966 rad + pos: 36.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9062 + - uid: 9327 components: - type: Transform - pos: -21.5,-50.5 + rot: -1.5707963267948966 rad + pos: 37.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9071 + - uid: 9328 components: - type: Transform - pos: -9.5,-43.5 + rot: -1.5707963267948966 rad + pos: 38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9072 + color: '#0000FFFF' + - uid: 9332 components: - type: Transform - pos: -9.5,-44.5 + rot: 1.5707963267948966 rad + pos: 39.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9073 + color: '#0000FFFF' + - uid: 9333 components: - type: Transform - pos: -9.5,-45.5 + rot: 1.5707963267948966 rad + pos: 41.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9074 + color: '#0000FFFF' + - uid: 9334 components: - type: Transform - pos: -8.5,-41.5 + rot: 1.5707963267948966 rad + pos: 42.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9075 + - uid: 9335 components: - type: Transform - pos: -8.5,-42.5 + pos: 40.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9076 + - uid: 9336 components: - type: Transform - pos: -8.5,-43.5 + pos: 40.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9077 + - uid: 9337 components: - type: Transform - pos: -8.5,-44.5 + pos: 40.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9078 + - uid: 9338 components: - type: Transform - pos: -8.5,-45.5 + pos: 40.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9084 + - uid: 9339 components: - type: Transform - pos: -5.5,-42.5 + pos: 40.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9085 + color: '#0000FFFF' + - uid: 9340 components: - type: Transform - pos: -5.5,-43.5 + pos: 40.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9086 + color: '#0000FFFF' + - uid: 9341 components: - type: Transform - pos: -5.5,-44.5 + pos: 40.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9087 + color: '#0000FFFF' + - uid: 9342 components: - type: Transform - pos: -5.5,-45.5 + pos: 38.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9088 + - uid: 9343 components: - type: Transform - pos: -5.5,-46.5 + pos: 38.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9089 + - uid: 9344 components: - type: Transform - pos: -5.5,-47.5 + pos: 38.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9090 + - uid: 9345 components: - type: Transform - pos: -5.5,-48.5 + pos: 38.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9091 + - uid: 9346 components: - type: Transform - pos: -5.5,-49.5 + pos: 38.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9092 + - uid: 9347 components: - type: Transform - pos: -5.5,-50.5 + rot: -1.5707963267948966 rad + pos: 39.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9093 + - uid: 9348 components: - type: Transform - pos: -3.5,-43.5 + rot: -1.5707963267948966 rad + pos: 40.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9094 + color: '#FF0000FF' + - uid: 9349 components: - type: Transform - pos: -3.5,-44.5 + rot: -1.5707963267948966 rad + pos: 41.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9095 + color: '#FF0000FF' + - uid: 9351 components: - type: Transform - pos: -3.5,-45.5 + rot: -1.5707963267948966 rad + pos: 43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9096 + color: '#FF0000FF' + - uid: 9352 components: - type: Transform - pos: -3.5,-46.5 + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9097 + color: '#FF0000FF' + - uid: 9353 components: - type: Transform - pos: -3.5,-47.5 + rot: -1.5707963267948966 rad + pos: 45.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9098 + color: '#FF0000FF' + - uid: 9354 components: - type: Transform - pos: -3.5,-48.5 + rot: -1.5707963267948966 rad + pos: 44.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9099 + - uid: 9355 components: - type: Transform - pos: -3.5,-49.5 + rot: -1.5707963267948966 rad + pos: 45.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9100 + - uid: 9361 components: - type: Transform - pos: -3.5,-50.5 + rot: -1.5707963267948966 rad + pos: 46.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9105 + - uid: 9366 components: - type: Transform - pos: -3.5,-51.5 + rot: -1.5707963267948966 rad + pos: 47.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9108 + - uid: 9367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-52.5 + rot: -1.5707963267948966 rad + pos: 48.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9109 + - uid: 9368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-52.5 + rot: -1.5707963267948966 rad + pos: 49.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9110 + - uid: 9369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-52.5 + rot: -1.5707963267948966 rad + pos: 50.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9111 + - uid: 9370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-52.5 + rot: -1.5707963267948966 rad + pos: 51.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9112 + - uid: 9371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-52.5 + rot: -1.5707963267948966 rad + pos: 52.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9113 + - uid: 9373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-51.5 + rot: -1.5707963267948966 rad + pos: 46.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9114 + - uid: 9374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-51.5 + rot: -1.5707963267948966 rad + pos: 47.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9115 + - uid: 9375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-51.5 + rot: -1.5707963267948966 rad + pos: 48.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9116 + - uid: 9376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-51.5 + rot: -1.5707963267948966 rad + pos: 49.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9117 + - uid: 9377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-51.5 + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9118 + - uid: 9378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-51.5 + rot: -1.5707963267948966 rad + pos: 51.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9119 + - uid: 9380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-51.5 + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9121 + - uid: 9382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-51.5 + pos: 43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9122 + color: '#0000FFFF' + - uid: 9383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-51.5 + pos: 43.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9123 + color: '#0000FFFF' + - uid: 9384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-51.5 + pos: 43.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9124 + color: '#0000FFFF' + - uid: 9385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-51.5 + pos: 43.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9125 + color: '#0000FFFF' + - uid: 9386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-52.5 + pos: 43.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9126 + - uid: 9387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-52.5 + pos: 42.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9127 + color: '#FF0000FF' + - uid: 9388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-52.5 + pos: 42.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9129 + color: '#FF0000FF' + - uid: 9389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-52.5 + pos: 42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9131 + color: '#FF0000FF' + - uid: 9390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-52.5 + pos: 42.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9132 + color: '#FF0000FF' + - uid: 9391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-52.5 + pos: 42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9133 + color: '#FF0000FF' + - uid: 9394 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-52.5 + pos: 44.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9134 + - uid: 9395 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-52.5 + pos: 45.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9138 + - uid: 9396 components: - type: Transform - pos: 4.5,-49.5 + rot: 1.5707963267948966 rad + pos: 46.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9141 + color: '#0000FFFF' + - uid: 9397 components: - type: Transform - pos: 4.5,-48.5 + rot: 1.5707963267948966 rad + pos: 43.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9145 + - uid: 9398 components: - type: Transform - pos: 4.5,-46.5 + rot: 1.5707963267948966 rad + pos: 44.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9146 + - uid: 9399 components: - type: Transform - pos: 4.5,-45.5 + rot: 1.5707963267948966 rad + pos: 45.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9147 + - uid: 9400 components: - type: Transform - pos: 4.5,-44.5 + rot: 1.5707963267948966 rad + pos: 46.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9148 + - uid: 9401 components: - type: Transform - pos: 4.5,-43.5 + rot: 1.5707963267948966 rad + pos: 47.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9149 + - uid: 9402 components: - type: Transform - pos: 4.5,-42.5 + rot: 1.5707963267948966 rad + pos: 47.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9150 + color: '#0000FFFF' + - uid: 9411 components: - type: Transform - pos: 6.5,-51.5 + pos: 53.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9151 + - uid: 9412 components: - type: Transform - pos: 6.5,-50.5 + pos: 53.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9152 + - uid: 9413 components: - type: Transform - pos: 6.5,-49.5 + pos: 53.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9153 + - uid: 9415 components: - type: Transform - pos: 6.5,-48.5 + pos: 53.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9154 + - uid: 9417 components: - type: Transform - pos: 6.5,-47.5 + pos: 54.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9155 + color: '#FF0000FF' + - uid: 9418 components: - type: Transform - pos: 6.5,-46.5 + pos: 54.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9157 + color: '#FF0000FF' + - uid: 9419 components: - type: Transform - pos: 6.5,-44.5 + rot: -1.5707963267948966 rad + pos: 52.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9158 + - uid: 9420 components: - type: Transform - pos: 6.5,-43.5 + rot: -1.5707963267948966 rad + pos: 51.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9172 + - uid: 9421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-47.5 + rot: -1.5707963267948966 rad + pos: 53.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9173 + - uid: 9422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-47.5 + rot: -1.5707963267948966 rad + pos: 52.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9174 + - uid: 9423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-47.5 + rot: -1.5707963267948966 rad + pos: 51.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9176 + - uid: 9425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-47.5 + rot: -1.5707963267948966 rad + pos: 53.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9177 + - uid: 9426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-47.5 + pos: 54.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9178 + - uid: 9427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-47.5 + rot: -1.5707963267948966 rad + pos: 54.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9179 + color: '#0000FFFF' + - uid: 9428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-47.5 + rot: -1.5707963267948966 rad + pos: 55.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9180 + color: '#0000FFFF' + - uid: 9429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-47.5 + rot: -1.5707963267948966 rad + pos: 55.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9181 + - uid: 9434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-47.5 + pos: 59.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9182 + - uid: 9435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-45.5 + pos: 59.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9183 + color: '#FF0000FF' + - uid: 9436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-45.5 + pos: 57.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9184 + - uid: 9437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-45.5 + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9186 + color: '#FF0000FF' + - uid: 9438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-45.5 + rot: -1.5707963267948966 rad + pos: 57.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9187 + color: '#FF0000FF' + - uid: 9439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-45.5 + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9188 + color: '#FF0000FF' + - uid: 9440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-45.5 + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9189 + color: '#FF0000FF' + - uid: 9441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-45.5 + rot: -1.5707963267948966 rad + pos: 61.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9194 + color: '#FF0000FF' + - uid: 9442 components: - type: Transform - pos: -0.5,-52.5 + rot: -1.5707963267948966 rad + pos: 58.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9195 + color: '#0000FFFF' + - uid: 9443 components: - type: Transform - pos: -0.5,-53.5 + rot: -1.5707963267948966 rad + pos: 59.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9196 + color: '#0000FFFF' + - uid: 9444 components: - type: Transform - pos: -0.5,-54.5 + rot: -1.5707963267948966 rad + pos: 60.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9197 + color: '#0000FFFF' + - uid: 9445 components: - type: Transform - pos: -0.5,-55.5 + rot: -1.5707963267948966 rad + pos: 61.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9199 + color: '#0000FFFF' + - uid: 9446 components: - type: Transform - pos: 1.5,-53.5 + rot: -1.5707963267948966 rad + pos: 56.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9200 + - uid: 9447 components: - type: Transform - pos: 1.5,-54.5 + pos: 57.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9201 + - uid: 9448 components: - type: Transform - pos: 1.5,-55.5 + pos: 57.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9202 + - uid: 9449 components: - type: Transform - pos: 1.5,-56.5 + pos: 59.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9203 + color: '#FF0000FF' + - uid: 9450 components: - type: Transform - pos: 1.5,-57.5 + pos: 59.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9204 + color: '#FF0000FF' + - uid: 9454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-60.5 + pos: 62.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9205 + - uid: 9455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-57.5 + rot: -1.5707963267948966 rad + pos: 62.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9206 + - uid: 9456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-57.5 + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9207 + - uid: 9457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-57.5 + rot: -1.5707963267948966 rad + pos: 64.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9208 + - uid: 9460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-57.5 + pos: 65.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9210 + - uid: 9461 components: - type: Transform - pos: 1.5,-59.5 + pos: 65.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9211 + color: '#FF0000FF' + - uid: 9462 components: - type: Transform - pos: 1.5,-58.5 + pos: 65.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9213 + color: '#FF0000FF' + - uid: 9463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-60.5 + pos: 63.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9219 + - uid: 9464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-60.5 + pos: 63.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9220 + - uid: 9477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-57.5 + rot: 1.5707963267948966 rad + pos: 66.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9221 + - uid: 9478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-57.5 + rot: 1.5707963267948966 rad + pos: 67.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9222 + - uid: 9479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-57.5 + rot: 1.5707963267948966 rad + pos: 68.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9223 + - uid: 9480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-57.5 + rot: 1.5707963267948966 rad + pos: 69.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9224 + - uid: 9481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-60.5 + rot: 1.5707963267948966 rad + pos: 70.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9225 + color: '#FF0000FF' + - uid: 9482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-60.5 + rot: 1.5707963267948966 rad + pos: 71.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9226 + color: '#FF0000FF' + - uid: 9483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-60.5 + rot: 1.5707963267948966 rad + pos: 71.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9232 + - uid: 9484 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-50.5 + pos: 70.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9233 + color: '#0000FFFF' + - uid: 9485 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-50.5 + pos: 69.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9234 + color: '#0000FFFF' + - uid: 9486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-50.5 + pos: 68.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9236 + color: '#0000FFFF' + - uid: 9487 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-50.5 + pos: 67.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9237 + color: '#0000FFFF' + - uid: 9488 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-52.5 + pos: 66.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9238 + - uid: 9489 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-52.5 + pos: 65.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9243 + - uid: 9490 components: - type: Transform - pos: -0.5,-50.5 + rot: 1.5707963267948966 rad + pos: 64.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9244 + color: '#0000FFFF' + - uid: 9491 components: - type: Transform - pos: 1.5,-51.5 + pos: 63.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9245 + - uid: 9492 components: - type: Transform - pos: 1.5,-50.5 + pos: 63.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9250 + - uid: 9493 components: - type: Transform - pos: -1.5,-47.5 + pos: 57.5,-0.5 parent: 2 - - uid: 9254 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-46.5 + pos: 59.5,-1.5 parent: 2 - - uid: 9257 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9496 components: - type: Transform - pos: -0.5,-47.5 + pos: 59.5,-2.5 parent: 2 - - uid: 9258 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-48.5 + pos: 68.5,-2.5 parent: 2 - - uid: 9259 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9503 components: - type: Transform - pos: 8.5,-46.5 + pos: 68.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9260 + - uid: 9504 components: - type: Transform - pos: 8.5,-45.5 + pos: 70.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9261 + color: '#0000FFFF' + - uid: 9507 components: - type: Transform - pos: 8.5,-44.5 + rot: -1.5707963267948966 rad + pos: 66.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9262 + - uid: 9508 components: - type: Transform - pos: 8.5,-43.5 + rot: -1.5707963267948966 rad + pos: 67.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9263 + - uid: 9509 components: - type: Transform - pos: 10.5,-44.5 + rot: -1.5707963267948966 rad + pos: 69.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9264 + - uid: 9510 components: - type: Transform - pos: 10.5,-43.5 + rot: -1.5707963267948966 rad + pos: 68.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9272 + - uid: 9511 components: - type: Transform - pos: 8.5,-42.5 + rot: -1.5707963267948966 rad + pos: 67.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9273 + color: '#0000FFFF' + - uid: 9512 components: - type: Transform - pos: 8.5,-41.5 + rot: -1.5707963267948966 rad + pos: 66.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9274 + color: '#0000FFFF' + - uid: 9513 components: - type: Transform - pos: 10.5,-42.5 + rot: -1.5707963267948966 rad + pos: 65.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9275 + - uid: 9514 components: - type: Transform - pos: 12.5,-39.5 + rot: -1.5707963267948966 rad + pos: 64.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9276 + color: '#0000FFFF' + - uid: 9519 components: - type: Transform - pos: 12.5,-38.5 + pos: 70.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9277 + - uid: 9520 components: - type: Transform - pos: 12.5,-37.5 + pos: 72.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9278 + color: '#0000FFFF' + - uid: 9521 components: - type: Transform - pos: 14.5,-40.5 + pos: 72.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9279 + - uid: 9522 components: - type: Transform - pos: 14.5,-39.5 + pos: 72.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9280 + - uid: 9523 components: - type: Transform - pos: 14.5,-38.5 + pos: 72.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9281 + - uid: 9524 components: - type: Transform - pos: 14.5,-37.5 + pos: 70.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9282 + color: '#FF0000FF' + - uid: 9525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-40.5 + pos: 70.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9283 + - uid: 9526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-40.5 + pos: 70.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9284 + - uid: 9527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-40.5 + pos: 70.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9285 + - uid: 9528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-41.5 + pos: 72.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9286 + - uid: 9529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-41.5 + pos: 72.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9287 + - uid: 9530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-41.5 + pos: 72.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9294 + - uid: 9531 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-0.5 + pos: 69.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9295 + - uid: 9532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-0.5 + pos: 71.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9296 + color: '#0000FFFF' + - uid: 9533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 + pos: 70.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9297 + - uid: 9534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-0.5 + pos: 70.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9298 + - uid: 9535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 + pos: 70.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9299 + - uid: 9536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-0.5 + pos: 70.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9300 + - uid: 9537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 + pos: 70.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9301 + - uid: 9538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 + pos: 70.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9302 + - uid: 9539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-0.5 + pos: 72.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9303 + color: '#0000FFFF' + - uid: 9540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-0.5 + pos: 72.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9304 + color: '#0000FFFF' + - uid: 9541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 + pos: 72.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9305 + color: '#0000FFFF' + - uid: 9542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-0.5 + pos: 72.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9306 + color: '#0000FFFF' + - uid: 9543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-0.5 + pos: 72.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9310 + color: '#0000FFFF' + - uid: 9544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-0.5 + pos: 72.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9312 + color: '#0000FFFF' + - uid: 9575 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,1.5 + pos: 9.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9313 + color: '#FF0000FF' + - uid: 9583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,1.5 + pos: 10.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9314 + color: '#FF0000FF' + - uid: 9585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,1.5 + rot: 1.5707963267948966 rad + pos: 12.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9317 + color: '#FF0000FF' + - uid: 9586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,1.5 + pos: 26.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9318 + color: '#FF0000FF' + - uid: 9587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,1.5 + rot: 1.5707963267948966 rad + pos: 12.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9319 + - uid: 9588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 + rot: 1.5707963267948966 rad + pos: 11.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9320 + - uid: 9589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,1.5 + pos: 28.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9321 + - uid: 11077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,1.5 + pos: -57.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9322 + color: '#FF0000FF' + - uid: 14253 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,1.5 + pos: 56.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9323 + color: '#333333FF' + - uid: 18051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,1.5 + rot: 1.5707963267948966 rad + pos: -71.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9324 + - uid: 18052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,1.5 + rot: 1.5707963267948966 rad + pos: -72.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9325 + - uid: 18054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,1.5 + rot: 1.5707963267948966 rad + pos: -73.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9326 + - uid: 18927 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,1.5 + pos: 52.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9327 + color: '#333333FF' + - uid: 19298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,1.5 + pos: 21.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9328 + color: '#FF0000FF' + - uid: 19386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,1.5 + pos: 19.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9332 + - uid: 19509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,1.5 + pos: 21.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9333 + color: '#FF0000FF' + - uid: 19540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,1.5 + rot: -1.5707963267948966 rad + pos: -33.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9334 + - uid: 19542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,1.5 + pos: -32.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9335 + - uid: 19807 components: - type: Transform - pos: 40.5,0.5 + pos: -34.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9336 + - uid: 20731 components: - type: Transform - pos: 40.5,-0.5 + rot: -1.5707963267948966 rad + pos: 65.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9337 + - uid: 21996 components: - type: Transform - pos: 40.5,-1.5 + pos: 71.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9338 + color: '#FF0000FF' + - uid: 22076 components: - type: Transform - pos: 40.5,-2.5 + rot: -1.5707963267948966 rad + pos: 52.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9339 + color: '#947507FF' + - uid: 22544 components: - type: Transform - pos: 40.5,-3.5 + rot: -1.5707963267948966 rad + pos: 56.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9340 + - uid: 24543 components: - type: Transform - pos: 40.5,-4.5 + pos: 61.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9341 + - uid: 24555 components: - type: Transform - pos: 40.5,-5.5 + rot: -1.5707963267948966 rad + pos: 53.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9342 + color: '#333333FF' + - uid: 24826 components: - type: Transform - pos: 38.5,-1.5 + rot: -1.5707963267948966 rad + pos: 55.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9343 + color: '#333333FF' + - uid: 25020 components: - type: Transform - pos: 38.5,-2.5 + rot: -1.5707963267948966 rad + pos: 58.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9344 + - uid: 25025 components: - type: Transform - pos: 38.5,-3.5 + rot: -1.5707963267948966 rad + pos: 53.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9345 + color: '#03FCD3FF' + - uid: 25566 components: - type: Transform - pos: 38.5,-4.5 + rot: -1.5707963267948966 rad + pos: 64.5,-34.5 + parent: 2 + - uid: 26651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9346 + - uid: 28538 components: - type: Transform - pos: 38.5,-5.5 + rot: -1.5707963267948966 rad + pos: 57.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9347 + color: '#0000FFFF' + - uid: 28939 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,-0.5 + pos: 55.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9348 + color: '#03FCD3FF' + - uid: 29592 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-0.5 + pos: 54.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9349 + color: '#03FCD3FF' + - uid: 29624 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-0.5 + pos: 56.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9351 + color: '#03FCD3FF' + - uid: 29692 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-0.5 + pos: 57.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9352 + color: '#03FCD3FF' + - uid: 30136 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-0.5 + pos: 52.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 35709 + components: + - type: Transform + pos: 24.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9353 + - uid: 35710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-0.5 + pos: 24.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9354 + - uid: 35711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,0.5 + pos: 24.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9355 + color: '#FF0000FF' + - uid: 35712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,0.5 + pos: 24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9361 + color: '#FF0000FF' + - uid: 35713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 + pos: 24.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9366 + color: '#FF0000FF' + - uid: 35714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,0.5 + pos: 23.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9367 + - uid: 35715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,0.5 + pos: 23.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9368 + - uid: 36102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,0.5 + pos: 23.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9369 + - uid: 37224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,0.5 + rot: 3.141592653589793 rad + pos: 59.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9370 + color: '#FF0000FF' + - uid: 37228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,0.5 + pos: 23.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9371 + - uid: 44096 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,0.5 + pos: 60.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9373 + - uid: 47343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-0.5 - parent: 2 + pos: 1.5,3.5 + parent: 32764 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9374 + - uid: 47344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-0.5 - parent: 2 + pos: 1.5,2.5 + parent: 32764 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9375 + - uid: 47345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-0.5 - parent: 2 + pos: 1.5,1.5 + parent: 32764 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9376 + - uid: 47346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-0.5 - parent: 2 + pos: 1.5,0.5 + parent: 32764 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9377 + - uid: 47347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-0.5 - parent: 2 + pos: 1.5,-0.5 + parent: 32764 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9378 + - uid: 47348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-0.5 - parent: 2 + pos: 1.5,-1.5 + parent: 32764 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9380 + - uid: 47349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-0.5 - parent: 2 + pos: 1.5,-2.5 + parent: 32764 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9382 + - uid: 47353 components: - type: Transform - pos: 43.5,-0.5 - parent: 2 + pos: -0.5,-1.5 + parent: 32764 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9383 + - uid: 47354 components: - type: Transform - pos: 43.5,-1.5 - parent: 2 + pos: -0.5,-0.5 + parent: 32764 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9384 + - uid: 47355 components: - type: Transform - pos: 43.5,-2.5 - parent: 2 + pos: -0.5,0.5 + parent: 32764 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9385 + - uid: 47356 components: - type: Transform - pos: 43.5,-3.5 - parent: 2 + pos: -0.5,1.5 + parent: 32764 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9386 + - uid: 47357 components: - type: Transform - pos: 43.5,-4.5 - parent: 2 + pos: -0.5,2.5 + parent: 32764 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9387 + - uid: 47358 components: - type: Transform - pos: 42.5,-1.5 - parent: 2 + pos: -0.5,3.5 + parent: 32764 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9388 + color: '#0000FFFF' + - uid: 47388 components: - type: Transform - pos: 42.5,-2.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 44868 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9389 + - uid: 47390 components: - type: Transform - pos: 42.5,-3.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 44868 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9390 + - uid: 47391 components: - type: Transform - pos: 42.5,-4.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 44868 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9391 + - uid: 47392 components: - type: Transform - pos: 42.5,-5.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 44868 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9394 + - uid: 47393 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-5.5 - parent: 2 + pos: 0.5,-2.5 + parent: 44868 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9395 + color: '#FF0000FF' + - uid: 47395 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 2 + pos: 2.5,-2.5 + parent: 44868 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9396 + color: '#FF0000FF' + - uid: 47396 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 2 + pos: 3.5,-2.5 + parent: 44868 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9397 + color: '#FF0000FF' + - uid: 47397 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 2 + pos: 4.5,-2.5 + parent: 44868 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9398 + - uid: 47398 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 2 + pos: 5.5,-2.5 + parent: 44868 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9399 + - uid: 47400 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-6.5 - parent: 2 + pos: 7.5,-2.5 + parent: 44868 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9400 + - uid: 47435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-6.5 - parent: 2 + pos: 1.5,-1.5 + parent: 44868 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9401 + - uid: 47436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-6.5 - parent: 2 + pos: 1.5,-0.5 + parent: 44868 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9402 + - uid: 47440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-5.5 - parent: 2 + pos: 1.5,-3.5 + parent: 44868 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9411 + color: '#FF0000FF' + - uid: 47441 components: - type: Transform - pos: 53.5,4.5 - parent: 2 + pos: 1.5,-4.5 + parent: 44868 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 47442 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 44868 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 47443 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 44868 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 47462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 44868 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9412 + - uid: 47465 components: - type: Transform - pos: 53.5,3.5 - parent: 2 + pos: -1.5,-2.5 + parent: 44868 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9413 + - uid: 47466 components: - type: Transform - pos: 53.5,2.5 - parent: 2 + pos: 4.5,-2.5 + parent: 44868 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9415 + - uid: 47467 components: - type: Transform - pos: 53.5,1.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 44868 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9417 + - uid: 47469 components: - type: Transform - pos: 54.5,2.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 44868 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9418 + color: '#0000FFFF' + - uid: 47471 components: - type: Transform - pos: 54.5,1.5 - parent: 2 + pos: 0.5,-4.5 + parent: 44868 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9419 + color: '#0000FFFF' + - uid: 47472 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,5.5 - parent: 2 + pos: 1.5,-3.5 + parent: 44868 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9420 + - uid: 47478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,5.5 - parent: 2 + pos: 2.5,-2.5 + parent: 44868 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9421 + - uid: 47479 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 44868 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 47480 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 44868 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 47531 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,3.5 - parent: 2 + pos: -3.5,-0.5 + parent: 56108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9422 + - uid: 47532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,3.5 - parent: 2 + pos: -2.5,-0.5 + parent: 56108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9423 + - uid: 47533 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,3.5 - parent: 2 + pos: -1.5,-0.5 + parent: 56108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9425 + - uid: 47534 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-0.5 - parent: 2 + pos: -0.5,-0.5 + parent: 56108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9426 + - uid: 47536 components: - type: Transform - pos: 54.5,0.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 56108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9427 + - uid: 47537 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,0.5 - parent: 2 + pos: 2.5,-0.5 + parent: 56108 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9428 + color: '#FF0000FF' + - uid: 47538 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,0.5 - parent: 2 + pos: 3.5,-0.5 + parent: 56108 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9429 + color: '#FF0000FF' + - uid: 47539 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-0.5 - parent: 2 + pos: 4.5,-0.5 + parent: 56108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9434 + - uid: 47540 components: - type: Transform - pos: 59.5,0.5 - parent: 2 + pos: 0.5,0.5 + parent: 56108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9435 + - uid: 47541 components: - type: Transform - pos: 59.5,1.5 - parent: 2 + pos: 0.5,1.5 + parent: 56108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9436 + - uid: 47542 components: - type: Transform - pos: 57.5,1.5 - parent: 2 + pos: 0.5,2.5 + parent: 56108 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9437 + color: '#FF0000FF' + - uid: 47544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-0.5 - parent: 2 + pos: 0.5,-1.5 + parent: 56108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9438 + - uid: 47553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-0.5 - parent: 2 + pos: -0.5,2.5 + parent: 56108 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9439 + color: '#0000FFFF' + - uid: 47554 + components: + - type: Transform + pos: -0.5,1.5 + parent: 56108 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 47555 + components: + - type: Transform + pos: -0.5,0.5 + parent: 56108 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 47556 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 56108 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 47559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 56108 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 47562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 56108 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 47630 + components: + - type: Transform + pos: 48.5,30.5 + parent: 2 + - uid: 47631 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 47632 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 47633 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 47634 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 47635 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 47636 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 47637 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 47638 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 47639 + components: + - type: Transform + pos: 50.5,26.5 + parent: 2 + - uid: 47653 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-0.5 + pos: 59.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9440 + color: '#0000FFFF' + - uid: 47662 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-0.5 + pos: 58.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9441 + color: '#0000FFFF' + - uid: 47696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-0.5 + pos: 71.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9442 + - uid: 47707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,0.5 + pos: 71.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9443 + color: '#FF0000FF' + - uid: 47811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,0.5 + pos: 71.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9444 + color: '#FF0000FF' + - uid: 48509 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,0.5 + pos: 70.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9445 + color: '#FF0000FF' + - uid: 48511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,0.5 + pos: 71.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9446 + color: '#FF0000FF' + - uid: 48512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,0.5 + pos: 71.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9447 + color: '#FF0000FF' + - uid: 48513 components: - type: Transform - pos: 57.5,2.5 + rot: -1.5707963267948966 rad + pos: 69.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9448 + color: '#FF0000FF' + - uid: 48514 components: - type: Transform - pos: 57.5,3.5 + rot: -1.5707963267948966 rad + pos: 68.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9449 + color: '#FF0000FF' + - uid: 48515 components: - type: Transform - pos: 59.5,2.5 + rot: -1.5707963267948966 rad + pos: 67.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9450 + - uid: 48516 components: - type: Transform - pos: 59.5,3.5 + rot: -1.5707963267948966 rad + pos: 66.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9454 + - uid: 48518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,0.5 + pos: 65.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9455 + color: '#FF0000FF' + - uid: 48519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-0.5 + pos: 65.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9456 + - uid: 48520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-0.5 + pos: 64.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9457 + - uid: 48523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-0.5 + pos: 64.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9460 + - uid: 48524 components: - type: Transform - pos: 65.5,0.5 + pos: 64.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9461 + - uid: 48528 components: - type: Transform - pos: 65.5,1.5 + pos: 63.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9462 + - uid: 48529 components: - type: Transform - pos: 65.5,2.5 + pos: 63.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9463 + - uid: 48530 components: - type: Transform - pos: 63.5,1.5 + pos: 63.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9464 + color: '#FF0000FF' + - uid: 48531 components: - type: Transform - pos: 63.5,2.5 + pos: 63.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9477 + color: '#FF0000FF' + - uid: 48534 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,3.5 + pos: 62.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9478 + - uid: 48535 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,3.5 + pos: 60.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9479 + - uid: 48537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,3.5 + pos: 59.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9480 + - uid: 48538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,3.5 + pos: 59.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9481 + - uid: 48539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,3.5 + pos: 59.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9482 + - uid: 48540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,3.5 + pos: 59.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9483 + - uid: 48541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,5.5 + pos: 59.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9484 + color: '#FF0000FF' + - uid: 48542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,5.5 + pos: 59.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9485 + color: '#FF0000FF' + - uid: 50701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,5.5 - parent: 2 + pos: 7.5,1.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9486 + - uid: 50702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,5.5 - parent: 2 + pos: 7.5,2.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9487 + - uid: 50703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,5.5 - parent: 2 + pos: 7.5,3.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9488 + - uid: 50705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,5.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9489 + - uid: 50706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,5.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9490 + - uid: 50707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,5.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9491 + - uid: 50714 components: - type: Transform - pos: 63.5,4.5 - parent: 2 + pos: 11.5,-3.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9492 + - uid: 50715 components: - type: Transform - pos: 63.5,3.5 - parent: 2 + pos: 11.5,-2.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9493 + - uid: 50716 components: - type: Transform - pos: 57.5,-0.5 - parent: 2 + pos: 11.5,-0.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9495 + - uid: 50717 components: - type: Transform - pos: 59.5,-1.5 - parent: 2 + pos: 11.5,0.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9496 + color: '#0000FFFF' + - uid: 50725 components: - type: Transform - pos: 59.5,-2.5 - parent: 2 + pos: 11.5,2.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9502 + color: '#0000FFFF' + - uid: 50730 components: - type: Transform - pos: 68.5,-2.5 - parent: 2 + pos: 11.5,3.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9503 + color: '#0000FFFF' + - uid: 50731 components: - type: Transform - pos: 68.5,-1.5 - parent: 2 + pos: 11.5,5.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9504 + color: '#0000FFFF' + - uid: 50732 components: - type: Transform - pos: 70.5,-0.5 - parent: 2 + pos: 11.5,6.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9507 + - uid: 50733 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,-0.5 - parent: 2 + pos: 12.5,7.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9508 + color: '#0000FFFF' + - uid: 50734 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,-0.5 - parent: 2 + pos: 13.5,7.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9509 + color: '#0000FFFF' + - uid: 50735 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,0.5 - parent: 2 + pos: 13.5,4.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9510 + - uid: 50736 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,0.5 - parent: 2 + pos: 12.5,4.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9511 + - uid: 50737 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,0.5 - parent: 2 + pos: 12.5,1.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9512 + - uid: 50738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,0.5 - parent: 2 + pos: 13.5,1.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9513 + - uid: 50739 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,0.5 - parent: 2 + pos: 13.5,-1.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9514 + - uid: 50740 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,0.5 - parent: 2 + pos: 12.5,-1.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9519 + - uid: 50741 components: - type: Transform - pos: 70.5,-4.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9520 + color: '#0000FFFF' + - uid: 50742 components: - type: Transform - pos: 72.5,-2.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9521 + - uid: 50751 components: - type: Transform - pos: 72.5,-3.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9522 + - uid: 50752 components: - type: Transform - pos: 72.5,-4.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9523 + - uid: 50753 components: - type: Transform - pos: 72.5,-5.5 - parent: 2 + pos: 4.5,3.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9524 + - uid: 50754 components: - type: Transform - pos: 70.5,-5.5 - parent: 2 + pos: 4.5,2.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9525 + color: '#0000FFFF' + - uid: 50755 components: - type: Transform - pos: 70.5,-6.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9526 + color: '#0000FFFF' + - uid: 50756 components: - type: Transform - pos: 70.5,-7.5 - parent: 2 + pos: 2.5,0.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9527 + color: '#0000FFFF' + - uid: 50757 components: - type: Transform - pos: 70.5,-8.5 - parent: 2 + pos: 2.5,-0.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9528 + color: '#0000FFFF' + - uid: 50758 components: - type: Transform - pos: 72.5,-8.5 - parent: 2 + pos: 2.5,-1.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9529 + - uid: 50759 components: - type: Transform - pos: 72.5,-7.5 - parent: 2 + pos: 2.5,-2.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9530 + - uid: 50762 components: - type: Transform - pos: 72.5,-6.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9531 + - uid: 50763 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,-3.5 - parent: 2 + pos: 4.5,-3.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9532 + color: '#0000FFFF' + - uid: 50764 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,-1.5 - parent: 2 + pos: 6.5,-3.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9533 + - uid: 50765 components: - type: Transform - pos: 70.5,-9.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9534 + color: '#0000FFFF' + - uid: 50766 components: - type: Transform - pos: 70.5,-10.5 - parent: 2 + pos: 5.5,-4.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9535 + color: '#0000FFFF' + - uid: 50767 components: - type: Transform - pos: 70.5,-11.5 - parent: 2 + pos: 5.5,-5.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9536 + color: '#0000FFFF' + - uid: 50770 components: - type: Transform - pos: 70.5,-12.5 - parent: 2 + pos: 7.5,5.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9537 + color: '#0000FFFF' + - uid: 50772 components: - type: Transform - pos: 70.5,-13.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9538 + color: '#0000FFFF' + - uid: 50773 components: - type: Transform - pos: 70.5,-14.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9539 + color: '#0000FFFF' + - uid: 50774 components: - type: Transform - pos: 72.5,-9.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9540 + - uid: 50775 components: - type: Transform - pos: 72.5,-10.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9541 + - uid: 50776 components: - type: Transform - pos: 72.5,-11.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9542 + - uid: 50777 components: - type: Transform - pos: 72.5,-12.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9543 + - uid: 50778 components: - type: Transform - pos: 72.5,-13.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9544 + - uid: 50801 components: - type: Transform - pos: 72.5,-14.5 - parent: 2 + pos: 7.5,7.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9575 + - uid: 50802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-50.5 - parent: 2 + pos: 7.5,8.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9583 + color: '#0000FFFF' + - uid: 50803 components: - type: Transform - pos: 10.5,-51.5 - parent: 2 + pos: 7.5,9.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9585 + color: '#0000FFFF' + - uid: 50804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-52.5 - parent: 2 + pos: 5.5,9.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9586 + - uid: 50806 components: - type: Transform - pos: 26.5,27.5 - parent: 2 + pos: 7.5,10.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9587 + color: '#0000FFFF' + - uid: 50815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-54.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9588 + - uid: 50816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-54.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9589 + - uid: 50817 components: - type: Transform - pos: 28.5,26.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,0.5 - parent: 2 - - uid: 18052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,0.5 - parent: 2 - - uid: 18054 + - uid: 50818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,0.5 - parent: 2 - - uid: 19298 - components: - - type: Transform - pos: 21.5,-5.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19386 + color: '#0000FFFF' + - uid: 50820 components: - type: Transform - pos: 19.5,-5.5 - parent: 2 + pos: 6.5,12.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19509 + - uid: 50821 components: - type: Transform - pos: 21.5,-3.5 - parent: 2 + pos: 6.5,13.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20731 + color: '#0000FFFF' + - uid: 50822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-34.5 - parent: 2 - - uid: 22544 + pos: 6.5,15.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-35.5 - parent: 2 + pos: 6.5,16.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24543 + - uid: 50824 components: - type: Transform - pos: 61.5,-31.5 - parent: 2 + pos: 6.5,17.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 25020 + - uid: 50827 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-33.5 - parent: 2 + pos: 5.5,18.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25566 + color: '#0000FFFF' + - uid: 50828 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-34.5 - parent: 2 - - uid: 26651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-32.5 - parent: 2 + pos: 4.5,18.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28538 + color: '#0000FFFF' + - uid: 50829 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,-35.5 - parent: 2 + pos: 3.5,18.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 35709 + - uid: 50830 components: - type: Transform - pos: 24.5,-14.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 2.5,18.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 35710 + color: '#0000FFFF' + - uid: 50834 components: - type: Transform - pos: 24.5,-13.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 35711 + color: '#0000FFFF' + - uid: 50835 components: - type: Transform - pos: 24.5,-12.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 35712 + color: '#0000FFFF' + - uid: 50837 components: - type: Transform - pos: 24.5,-11.5 - parent: 2 + pos: 9.5,15.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 35713 + color: '#0000FFFF' + - uid: 50838 components: - type: Transform - pos: 24.5,-10.5 - parent: 2 + pos: 9.5,16.5 + parent: 36861 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 35714 + color: '#0000FFFF' + - uid: 50839 components: - type: Transform - pos: 23.5,-10.5 - parent: 2 + pos: 9.5,17.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 35715 + - uid: 50840 components: - type: Transform - pos: 23.5,-11.5 - parent: 2 + pos: 9.5,18.5 + parent: 36861 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 36102 + - uid: 50843 components: - type: Transform - pos: 23.5,-12.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 37224 + color: '#FF0000FF' + - uid: 50844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-31.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 0.5,17.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37228 + - uid: 50845 components: - type: Transform - pos: 23.5,-13.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 1.5,17.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 44096 + color: '#FF0000FF' + - uid: 50846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-35.5 - parent: 2 + pos: 2.5,17.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47343 + color: '#FF0000FF' + - uid: 50847 components: - type: Transform - pos: 1.5,3.5 - parent: 32764 + rot: -1.5707963267948966 rad + pos: 3.5,17.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47344 + - uid: 50853 components: - type: Transform - pos: 1.5,2.5 - parent: 32764 + pos: 4.5,16.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47345 + - uid: 50854 components: - type: Transform - pos: 1.5,1.5 - parent: 32764 + pos: 4.5,15.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47346 + - uid: 50855 components: - type: Transform - pos: 1.5,0.5 - parent: 32764 + pos: 4.5,14.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47347 + - uid: 50857 components: - type: Transform - pos: 1.5,-0.5 - parent: 32764 + rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47348 + - uid: 50858 components: - type: Transform - pos: 1.5,-1.5 - parent: 32764 + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47349 + - uid: 50869 components: - type: Transform - pos: 1.5,-2.5 - parent: 32764 + rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47353 + - uid: 50870 components: - type: Transform - pos: -0.5,-1.5 - parent: 32764 + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47354 + color: '#FF0000FF' + - uid: 50871 components: - type: Transform - pos: -0.5,-0.5 - parent: 32764 + rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47355 + color: '#FF0000FF' + - uid: 50872 components: - type: Transform - pos: -0.5,0.5 - parent: 32764 + rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47356 + color: '#FF0000FF' + - uid: 50873 components: - type: Transform - pos: -0.5,1.5 - parent: 32764 + rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47357 + color: '#FF0000FF' + - uid: 50877 components: - type: Transform - pos: -0.5,2.5 - parent: 32764 + pos: 10.5,14.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47358 + color: '#FF0000FF' + - uid: 50878 components: - type: Transform - pos: -0.5,3.5 - parent: 32764 + pos: 10.5,15.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47388 + color: '#FF0000FF' + - uid: 50879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 44868 + pos: 10.5,16.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47390 + - uid: 50880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 44868 + pos: 10.5,17.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47391 + - uid: 50881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 44868 + pos: 10.5,18.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47392 + - uid: 50888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 44868 + pos: 4.5,12.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47393 + - uid: 50889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 44868 + pos: 4.5,11.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47395 + - uid: 50891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 44868 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47396 + - uid: 50892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 44868 + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47397 + - uid: 50893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 44868 + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47398 + - uid: 50894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 44868 + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47400 + - uid: 50895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 44868 + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47435 + - uid: 50900 components: - type: Transform - pos: 1.5,-1.5 - parent: 44868 + pos: 5.5,7.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47436 + - uid: 50901 components: - type: Transform - pos: 1.5,-0.5 - parent: 44868 + pos: 5.5,6.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47440 + - uid: 50903 components: - type: Transform - pos: 1.5,-3.5 - parent: 44868 + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47441 + - uid: 50904 components: - type: Transform - pos: 1.5,-4.5 - parent: 44868 + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47442 + - uid: 50905 components: - type: Transform - pos: 1.5,-5.5 - parent: 44868 + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47443 + - uid: 50906 components: - type: Transform - pos: 1.5,-6.5 - parent: 44868 + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47462 + - uid: 50907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 44868 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47465 + color: '#FF0000FF' + - uid: 50909 components: - type: Transform - pos: -1.5,-2.5 - parent: 44868 + pos: 3.5,4.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47466 + color: '#FF0000FF' + - uid: 50910 components: - type: Transform - pos: 4.5,-2.5 - parent: 44868 + pos: 3.5,3.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47467 + color: '#FF0000FF' + - uid: 50914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 44868 + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47469 + color: '#FF0000FF' + - uid: 50915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 44868 + pos: 1.5,1.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47471 + color: '#FF0000FF' + - uid: 50916 components: - type: Transform - pos: 0.5,-4.5 - parent: 44868 + pos: 1.5,0.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47472 + color: '#FF0000FF' + - uid: 51011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 44868 + pos: 1.5,-0.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47478 + color: '#FF0000FF' + - uid: 51025 components: - type: Transform - pos: 2.5,-2.5 - parent: 44868 + pos: 1.5,-1.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47479 + color: '#FF0000FF' + - uid: 51060 components: - type: Transform - pos: 2.5,-1.5 - parent: 44868 + pos: 1.5,-2.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47480 + color: '#FF0000FF' + - uid: 51062 components: - type: Transform - pos: 2.5,-0.5 - parent: 44868 + pos: 1.5,-3.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47531 + color: '#FF0000FF' + - uid: 51070 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 56108 + pos: 2.5,-4.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47532 + - uid: 51128 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 56108 + pos: 3.5,-4.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47533 + - uid: 51129 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 56108 + pos: 5.5,-4.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47534 + - uid: 51130 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 56108 + pos: 6.5,-4.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47536 + - uid: 51131 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 56108 + pos: 7.5,-4.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47537 + - uid: 51162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 56108 + pos: 4.5,-5.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47538 + - uid: 51207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 56108 + pos: 12.5,6.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47539 + - uid: 51208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 56108 + pos: 12.5,7.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47540 + - uid: 51212 components: - type: Transform - pos: 0.5,0.5 - parent: 56108 + pos: 12.5,4.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47541 + - uid: 51213 components: - type: Transform - pos: 0.5,1.5 - parent: 56108 + pos: 12.5,3.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47542 + - uid: 51214 components: - type: Transform - pos: 0.5,2.5 - parent: 56108 + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47544 + - uid: 51215 components: - type: Transform - pos: 0.5,-1.5 - parent: 56108 + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 36861 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47553 + - uid: 51216 components: - type: Transform - pos: -0.5,2.5 - parent: 56108 + pos: 12.5,1.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47554 + color: '#FF0000FF' + - uid: 51218 components: - type: Transform - pos: -0.5,1.5 - parent: 56108 + pos: 12.5,0.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47555 + color: '#FF0000FF' + - uid: 51219 components: - type: Transform - pos: -0.5,0.5 - parent: 56108 + pos: 12.5,-1.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47556 + color: '#FF0000FF' + - uid: 51220 components: - type: Transform - pos: -0.5,-0.5 - parent: 56108 + pos: 12.5,-2.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47559 + color: '#FF0000FF' + - uid: 51303 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 56108 + pos: 13.5,-3.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47562 + color: '#FF0000FF' + - uid: 51304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 56108 + pos: 13.5,-0.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47630 - components: - - type: Transform - pos: 48.5,30.5 - parent: 2 - - uid: 47631 - components: - - type: Transform - pos: 48.5,29.5 - parent: 2 - - uid: 47632 - components: - - type: Transform - pos: 48.5,28.5 - parent: 2 - - uid: 47633 - components: - - type: Transform - pos: 48.5,27.5 - parent: 2 - - uid: 47634 - components: - - type: Transform - pos: 48.5,26.5 - parent: 2 - - uid: 47635 - components: - - type: Transform - pos: 50.5,30.5 - parent: 2 - - uid: 47636 - components: - - type: Transform - pos: 50.5,29.5 - parent: 2 - - uid: 47637 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - - uid: 47638 - components: - - type: Transform - pos: 50.5,27.5 - parent: 2 - - uid: 47639 + color: '#FF0000FF' + - uid: 51305 components: - type: Transform - pos: 50.5,26.5 - parent: 2 - - uid: 47653 + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-35.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47662 + color: '#FF0000FF' + - uid: 51307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-35.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 13.5,8.5 + parent: 36861 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - proto: GasPipeTJunction entities: - uid: 75 @@ -201943,14 +208263,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 3409 components: - type: Transform @@ -203341,6 +209653,92 @@ entities: parent: 56108 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 50710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50761 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 36861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51163 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 36861 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPort entities: - uid: 925 @@ -203349,68 +209747,50 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 928 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4567 components: - type: Transform pos: 67.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4644 components: - type: Transform pos: 68.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5700 components: - type: Transform pos: -41.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5701 components: - type: Transform pos: -40.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10597 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10614 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 18783 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 18785 @@ -203419,8 +209799,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 18786 @@ -203429,8 +209807,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 18790 @@ -203439,80 +209815,60 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 18791 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 20050 components: - type: Transform pos: 15.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 22173 components: - type: Transform pos: 66.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28741 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 29827 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 30332 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 37586 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 - uid: 37587 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 - type: AtmosPipeColor - color: '#17E8E2FF' + color: '#0000FFFF' - uid: 45056 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-5.5 parent: 44868 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47352 @@ -203521,8 +209877,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 32764 - - type: AtmosDevice - joinedGrid: 32764 - type: AtmosPipeColor color: '#0000FFFF' - uid: 48582 @@ -203531,24 +209885,18 @@ entities: rot: 3.141592653589793 rad pos: -26.5,25.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 51601 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 52098 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 56229 @@ -203557,8 +209905,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 56108 - - type: AtmosDevice - joinedGrid: 56108 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasPressurePump @@ -203569,8 +209915,6 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#333333FF' - uid: 2038 @@ -203579,8 +209923,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2042 @@ -203589,8 +209931,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4643 @@ -203598,49 +209938,37 @@ entities: - type: Transform pos: 68.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4651 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5706 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5881 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' - uid: 7904 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7905 components: - type: Transform pos: -74.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 18814 components: - type: MetaData @@ -203649,8 +209977,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 18818 @@ -203659,8 +209985,6 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#333333FF' - uid: 18822 @@ -203669,36 +209993,28 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' - uid: 18828 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#FF6347FF' + color: '#FC2847FF' - uid: 21153 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21257 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 23640 @@ -203707,8 +210023,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 25317 @@ -203717,8 +210031,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 28722 @@ -203726,24 +210038,18 @@ entities: - type: Transform pos: 2.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28739 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 48583 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,35.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - proto: GasThermoMachineFreezer entities: - uid: 6174 @@ -203751,36 +210057,17 @@ entities: - type: Transform pos: 40.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 12170 components: - type: Transform pos: -1.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 18826 - components: - - type: Transform - pos: -33.5,30.5 - parent: 2 - - type: GasThermoMachine - targetTemperature: 73.15 - - type: ApcPowerReceiver - powerDisabled: False - - type: AtmosPipeColor - color: '#0000FFFF' - - type: AtmosDevice - joinedGrid: 2 - uid: 21031 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 31909 components: - type: Transform @@ -203789,8 +210076,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - type: AtmosDevice - joinedGrid: 2 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 20118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,30.5 + parent: 2 + - type: GasThermoMachine + targetTemperature: 73.15 + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasThermoMachineHeater entities: - uid: 1070 @@ -203799,8 +210096,6 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10630 components: - type: Transform @@ -203809,22 +210104,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - type: AtmosDevice - joinedGrid: 2 - uid: 36089 components: - type: Transform pos: 39.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 51600 components: - type: Transform pos: 35.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasValve entities: - uid: 19346 @@ -203832,8 +210121,6 @@ entities: - type: Transform pos: 42.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 30569 @@ -203842,8 +210129,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasVentPump entities: - uid: 29 @@ -203852,8 +210137,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 61 @@ -203865,8 +210148,6 @@ entities: - type: DeviceNetwork deviceLists: - 126 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 64 @@ -203878,8 +210159,6 @@ entities: - type: DeviceNetwork deviceLists: - 6071 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 795 @@ -203891,8 +210170,6 @@ entities: deviceLists: - 30783 - 35494 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 878 @@ -203905,8 +210182,6 @@ entities: deviceLists: - 65 - 14482 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 883 @@ -203918,8 +210193,6 @@ entities: - type: DeviceNetwork deviceLists: - 1580 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 1400 @@ -203932,8 +210205,6 @@ entities: deviceLists: - 14512 - 24441 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 1871 @@ -203945,8 +210216,6 @@ entities: - type: DeviceNetwork deviceLists: - 1601 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 1890 @@ -203958,8 +210227,6 @@ entities: - type: DeviceNetwork deviceLists: - 1582 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 1964 @@ -203972,8 +210239,6 @@ entities: deviceLists: - 178 - 14475 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 1982 @@ -203985,8 +210250,6 @@ entities: - type: DeviceNetwork deviceLists: - 1386 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2023 @@ -203999,8 +210262,6 @@ entities: deviceLists: - 51651 - 14462 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2049 @@ -204012,8 +210273,6 @@ entities: deviceLists: - 2127 - 2128 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2051 @@ -204025,8 +210284,6 @@ entities: - type: DeviceNetwork deviceLists: - 170 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2149 @@ -204039,8 +210296,6 @@ entities: deviceLists: - 106 - 2518 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2181 @@ -204052,8 +210307,6 @@ entities: - type: DeviceNetwork deviceLists: - 879 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2211 @@ -204065,8 +210318,6 @@ entities: deviceLists: - 2218 - 14456 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2288 @@ -204078,8 +210329,6 @@ entities: - type: DeviceNetwork deviceLists: - 2352 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2289 @@ -204090,8 +210339,6 @@ entities: - type: DeviceNetwork deviceLists: - 2353 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2290 @@ -204103,8 +210350,6 @@ entities: - type: DeviceNetwork deviceLists: - 2351 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2291 @@ -204115,8 +210360,6 @@ entities: - type: DeviceNetwork deviceLists: - 2355 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2292 @@ -204128,8 +210371,6 @@ entities: - type: DeviceNetwork deviceLists: - 2354 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2293 @@ -204141,8 +210382,6 @@ entities: - type: DeviceNetwork deviceLists: - 2356 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2341 @@ -204153,8 +210392,6 @@ entities: - type: DeviceNetwork deviceLists: - 2358 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2342 @@ -204165,8 +210402,6 @@ entities: - type: DeviceNetwork deviceLists: - 2357 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2394 @@ -204178,8 +210413,6 @@ entities: deviceLists: - 14534 - 2398 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2447 @@ -204188,8 +210421,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2448 @@ -204197,8 +210428,6 @@ entities: - type: Transform pos: 59.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2464 @@ -204211,8 +210440,6 @@ entities: deviceLists: - 14520 - 35723 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2476 @@ -204224,8 +210451,6 @@ entities: deviceLists: - 14499 - 2481 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2496 @@ -204237,8 +210462,6 @@ entities: deviceLists: - 14498 - 48 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2508 @@ -204250,8 +210473,6 @@ entities: - type: DeviceNetwork deviceLists: - 2511 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2585 @@ -204264,8 +210485,6 @@ entities: deviceLists: - 101 - 2589 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2586 @@ -204278,8 +210497,6 @@ entities: deviceLists: - 14455 - 103 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2594 @@ -204292,8 +210509,6 @@ entities: deviceLists: - 111 - 14479 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2658 @@ -204306,8 +210521,6 @@ entities: deviceLists: - 45 - 2661 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2672 @@ -204320,8 +210533,6 @@ entities: deviceLists: - 109 - 14509 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2712 @@ -204334,8 +210545,6 @@ entities: deviceLists: - 28804 - 14505 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2717 @@ -204347,8 +210556,6 @@ entities: deviceLists: - 124 - 2719 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2741 @@ -204360,8 +210567,6 @@ entities: deviceLists: - 27106 - 2743 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2878 @@ -204374,8 +210579,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2879 @@ -204388,8 +210591,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2880 @@ -204402,8 +210603,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2881 @@ -204416,8 +210615,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2882 @@ -204430,8 +210627,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2883 @@ -204444,8 +210639,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2898 @@ -204457,8 +210650,6 @@ entities: deviceLists: - 41863 - 2904 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2941 @@ -204471,8 +210662,6 @@ entities: deviceLists: - 528 - 869 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2944 @@ -204485,8 +210674,6 @@ entities: deviceLists: - 41862 - 2953 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 2954 @@ -204498,8 +210685,6 @@ entities: - type: DeviceNetwork deviceLists: - 2967 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3008 @@ -204507,8 +210692,6 @@ entities: - type: Transform pos: 9.5,66.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3009 @@ -204517,8 +210700,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,62.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3046 @@ -204531,8 +210712,6 @@ entities: deviceLists: - 41058 - 2746 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3066 @@ -204544,8 +210723,6 @@ entities: deviceLists: - 41058 - 2746 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3075 @@ -204556,8 +210733,6 @@ entities: - type: DeviceNetwork deviceLists: - 41059 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3077 @@ -204566,8 +210741,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3153 @@ -204579,8 +210752,6 @@ entities: deviceLists: - 3216 - 45290 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3171 @@ -204592,8 +210763,6 @@ entities: deviceLists: - 45291 - 3220 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3213 @@ -204604,8 +210773,6 @@ entities: - type: DeviceNetwork deviceLists: - 67 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3245 @@ -204617,8 +210784,6 @@ entities: - type: DeviceNetwork deviceLists: - 55 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3248 @@ -204631,8 +210796,6 @@ entities: deviceLists: - 113 - 14477 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3251 @@ -204644,8 +210807,6 @@ entities: deviceLists: - 3253 - 44856 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3271 @@ -204653,8 +210814,6 @@ entities: - type: Transform pos: -28.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3292 @@ -204666,8 +210825,6 @@ entities: - type: DeviceNetwork deviceLists: - 11989 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3321 @@ -204678,8 +210835,6 @@ entities: - type: DeviceNetwork deviceLists: - 32 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3327 @@ -204691,8 +210846,6 @@ entities: - type: DeviceNetwork deviceLists: - 28 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3328 @@ -204703,8 +210856,6 @@ entities: - type: DeviceNetwork deviceLists: - 28 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3374 @@ -204716,8 +210867,6 @@ entities: - type: DeviceNetwork deviceLists: - 23018 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3383 @@ -204729,8 +210878,6 @@ entities: - type: DeviceNetwork deviceLists: - 71 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3394 @@ -204742,8 +210889,6 @@ entities: deviceLists: - 45292 - 45293 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3395 @@ -204755,8 +210900,6 @@ entities: deviceLists: - 45292 - 45293 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3400 @@ -204769,8 +210912,6 @@ entities: deviceLists: - 113 - 14477 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3404 @@ -204782,8 +210923,6 @@ entities: deviceLists: - 28267 - 45314 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3405 @@ -204796,8 +210935,6 @@ entities: deviceLists: - 28267 - 45314 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3418 @@ -204809,8 +210946,6 @@ entities: deviceLists: - 25930 - 51042 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3427 @@ -204823,8 +210958,6 @@ entities: deviceLists: - 25930 - 51042 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3528 @@ -204837,8 +210970,6 @@ entities: deviceLists: - 3530 - 44829 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3558 @@ -204850,8 +210981,6 @@ entities: - type: DeviceNetwork deviceLists: - 127 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3567 @@ -204864,8 +210993,6 @@ entities: deviceLists: - 4168 - 44128 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3568 @@ -204878,8 +211005,6 @@ entities: deviceLists: - 4168 - 44128 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3704 @@ -204890,8 +211015,6 @@ entities: - type: DeviceNetwork deviceLists: - 43546 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3715 @@ -204902,8 +211025,6 @@ entities: - type: DeviceNetwork deviceLists: - 43546 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3719 @@ -204914,9 +211035,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 3721 - - type: AtmosDevice - joinedGrid: 2 + - 47658 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3729 @@ -204928,8 +211047,6 @@ entities: deviceLists: - 72 - 114 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3740 @@ -204942,8 +211059,6 @@ entities: deviceLists: - 44853 - 3776 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3741 @@ -204955,8 +211070,6 @@ entities: deviceLists: - 44853 - 3776 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3742 @@ -204969,8 +211082,6 @@ entities: deviceLists: - 44853 - 3776 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3743 @@ -204982,8 +211093,6 @@ entities: deviceLists: - 44853 - 3776 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3769 @@ -204995,8 +211104,6 @@ entities: - type: DeviceNetwork deviceLists: - 56 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3780 @@ -205008,8 +211115,6 @@ entities: - type: DeviceNetwork deviceLists: - 3785 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3883 @@ -205021,8 +211126,6 @@ entities: - type: DeviceNetwork deviceLists: - 137 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3884 @@ -205034,8 +211137,6 @@ entities: - type: DeviceNetwork deviceLists: - 137 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3901 @@ -205047,8 +211148,6 @@ entities: - type: DeviceNetwork deviceLists: - 59 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3906 @@ -205060,8 +211159,6 @@ entities: - type: DeviceNetwork deviceLists: - 136 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3907 @@ -205073,8 +211170,6 @@ entities: - type: DeviceNetwork deviceLists: - 136 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3966 @@ -205087,8 +211182,6 @@ entities: deviceLists: - 52 - 51718 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3968 @@ -205099,8 +211192,6 @@ entities: - type: DeviceNetwork deviceLists: - 135 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3970 @@ -205111,8 +211202,6 @@ entities: - type: DeviceNetwork deviceLists: - 135 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4002 @@ -205124,8 +211213,7 @@ entities: - type: DeviceNetwork deviceLists: - 7 - - type: AtmosDevice - joinedGrid: 2 + - 43770 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4004 @@ -205137,8 +211225,6 @@ entities: deviceLists: - 72 - 114 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4011 @@ -205150,8 +211236,7 @@ entities: - type: DeviceNetwork deviceLists: - 19 - - type: AtmosDevice - joinedGrid: 2 + - 43754 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4070 @@ -205163,8 +211248,6 @@ entities: - type: DeviceNetwork deviceLists: - 131 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4071 @@ -205176,8 +211259,6 @@ entities: - type: DeviceNetwork deviceLists: - 131 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4079 @@ -205188,8 +211269,6 @@ entities: - type: DeviceNetwork deviceLists: - 134 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4086 @@ -205200,8 +211279,6 @@ entities: - type: DeviceNetwork deviceLists: - 134 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4331 @@ -205213,8 +211290,6 @@ entities: - type: DeviceNetwork deviceLists: - 138 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4332 @@ -205226,8 +211301,6 @@ entities: - type: DeviceNetwork deviceLists: - 138 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4333 @@ -205239,8 +211312,6 @@ entities: - type: DeviceNetwork deviceLists: - 132 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4334 @@ -205252,8 +211323,6 @@ entities: - type: DeviceNetwork deviceLists: - 132 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4337 @@ -205265,8 +211334,6 @@ entities: - type: DeviceNetwork deviceLists: - 140 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4338 @@ -205278,8 +211345,6 @@ entities: - type: DeviceNetwork deviceLists: - 140 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4360 @@ -205291,8 +211356,6 @@ entities: - type: DeviceNetwork deviceLists: - 139 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4361 @@ -205304,8 +211367,6 @@ entities: - type: DeviceNetwork deviceLists: - 139 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4388 @@ -205317,9 +211378,7 @@ entities: - type: DeviceNetwork deviceLists: - 14 - - 123 - - type: AtmosDevice - joinedGrid: 2 + - 45308 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4413 @@ -205332,8 +211391,6 @@ entities: deviceLists: - 69 - 14476 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4415 @@ -205346,8 +211403,6 @@ entities: deviceLists: - 69 - 14476 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4419 @@ -205360,8 +211415,6 @@ entities: deviceLists: - 31 - 14472 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4457 @@ -205373,8 +211426,6 @@ entities: deviceLists: - 31 - 14472 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4467 @@ -205383,32 +211434,24 @@ entities: rot: 3.141592653589793 rad pos: -83.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4468 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4469 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4470 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4510 components: - type: Transform @@ -205417,8 +211460,6 @@ entities: - type: DeviceNetwork deviceLists: - 23033 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4641 @@ -205431,8 +211472,6 @@ entities: deviceLists: - 11 - 43686 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4642 @@ -205444,8 +211483,6 @@ entities: deviceLists: - 74 - 43639 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4648 @@ -205457,8 +211494,6 @@ entities: deviceLists: - 112 - 14490 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4660 @@ -205470,8 +211505,6 @@ entities: deviceLists: - 74 - 43639 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4668 @@ -205483,8 +211516,6 @@ entities: deviceLists: - 4692 - 4693 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4688 @@ -205496,8 +211527,6 @@ entities: deviceLists: - 43638 - 70 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4691 @@ -205510,8 +211539,6 @@ entities: deviceLists: - 43638 - 70 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4699 @@ -205523,8 +211550,6 @@ entities: - type: DeviceNetwork deviceLists: - 716 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4715 @@ -205536,8 +211561,6 @@ entities: - type: DeviceNetwork deviceLists: - 5169 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4742 @@ -205549,8 +211572,6 @@ entities: - type: DeviceNetwork deviceLists: - 96 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4760 @@ -205561,8 +211582,6 @@ entities: - type: DeviceNetwork deviceLists: - 35737 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4810 @@ -205571,8 +211590,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4811 @@ -205581,8 +211598,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4813 @@ -205591,8 +211606,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4818 @@ -205600,8 +211613,6 @@ entities: - type: Transform pos: -42.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4836 @@ -205614,8 +211625,6 @@ entities: deviceLists: - 125 - 14506 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4837 @@ -205623,8 +211632,6 @@ entities: - type: Transform pos: -45.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4963 @@ -205635,8 +211642,6 @@ entities: - type: DeviceNetwork deviceLists: - 4974 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4964 @@ -205645,8 +211650,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4965 @@ -205655,8 +211658,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4970 @@ -205668,8 +211669,7 @@ entities: - type: DeviceNetwork deviceLists: - 24 - - type: AtmosDevice - joinedGrid: 2 + - 51695 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4971 @@ -205681,8 +211681,7 @@ entities: - type: DeviceNetwork deviceLists: - 24 - - type: AtmosDevice - joinedGrid: 2 + - 51695 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4976 @@ -205694,8 +211693,6 @@ entities: - type: DeviceNetwork deviceLists: - 149 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 4977 @@ -205707,8 +211704,6 @@ entities: - type: DeviceNetwork deviceLists: - 150 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5023 @@ -205720,8 +211715,6 @@ entities: - type: DeviceNetwork deviceLists: - 1314 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5054 @@ -205733,8 +211726,6 @@ entities: deviceLists: - 146 - 51697 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5059 @@ -205747,8 +211738,6 @@ entities: deviceLists: - 146 - 51697 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5089 @@ -205760,8 +211749,6 @@ entities: - type: DeviceNetwork deviceLists: - 32715 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5139 @@ -205774,8 +211761,6 @@ entities: deviceLists: - 146 - 51697 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5211 @@ -205786,8 +211771,6 @@ entities: - type: DeviceNetwork deviceLists: - 30669 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5215 @@ -205799,8 +211782,6 @@ entities: - type: DeviceNetwork deviceLists: - 185 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5223 @@ -205813,8 +211794,6 @@ entities: deviceLists: - 147 - 5273 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5270 @@ -205826,8 +211805,6 @@ entities: - type: DeviceNetwork deviceLists: - 185 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5275 @@ -205840,8 +211817,6 @@ entities: deviceLists: - 79 - 6818 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5282 @@ -205853,8 +211828,6 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5287 @@ -205867,8 +211840,6 @@ entities: deviceLists: - 85 - 14495 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5320 @@ -205880,8 +211851,6 @@ entities: - type: DeviceNetwork deviceLists: - 18157 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5327 @@ -205893,8 +211862,6 @@ entities: - type: DeviceNetwork deviceLists: - 63 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5344 @@ -205906,8 +211873,6 @@ entities: - type: DeviceNetwork deviceLists: - 5362 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5353 @@ -205918,8 +211883,6 @@ entities: - type: DeviceNetwork deviceLists: - 118 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5395 @@ -205932,8 +211895,6 @@ entities: deviceLists: - 94 - 14483 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5399 @@ -205946,8 +211907,6 @@ entities: deviceLists: - 94 - 14483 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5408 @@ -205960,8 +211919,6 @@ entities: deviceLists: - 93 - 92 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5425 @@ -205973,8 +211930,6 @@ entities: - type: DeviceNetwork deviceLists: - 188 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5444 @@ -205987,8 +211942,6 @@ entities: deviceLists: - 95 - 14496 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5447 @@ -206000,8 +211953,6 @@ entities: deviceLists: - 35940 - 19681 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5484 @@ -206014,8 +211965,6 @@ entities: deviceLists: - 23 - 14486 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5512 @@ -206028,8 +211977,6 @@ entities: deviceLists: - 192 - 14489 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 5669 @@ -206041,8 +211988,6 @@ entities: deviceLists: - 11610 - 11607 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 7938 @@ -206054,8 +211999,6 @@ entities: deviceLists: - 11610 - 11607 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8078 @@ -206064,8 +212007,6 @@ entities: rot: -1.5707963267948966 rad pos: -70.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 8149 components: - type: Transform @@ -206075,8 +212016,6 @@ entities: - type: DeviceNetwork deviceLists: - 12 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8166 @@ -206089,8 +212028,6 @@ entities: deviceLists: - 160 - 51722 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8187 @@ -206102,8 +212039,6 @@ entities: - type: DeviceNetwork deviceLists: - 5638 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8202 @@ -206116,8 +212051,6 @@ entities: deviceLists: - 774 - 8220 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8209 @@ -206129,8 +212062,6 @@ entities: - type: DeviceNetwork deviceLists: - 28915 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8254 @@ -206142,8 +212073,6 @@ entities: deviceLists: - 60 - 51717 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8258 @@ -206156,8 +212085,6 @@ entities: deviceLists: - 8260 - 51720 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8261 @@ -206169,8 +212096,6 @@ entities: - type: DeviceNetwork deviceLists: - 5593 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8324 @@ -206182,8 +212107,6 @@ entities: - type: DeviceNetwork deviceLists: - 177 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8325 @@ -206195,8 +212118,6 @@ entities: - type: DeviceNetwork deviceLists: - 13042 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8326 @@ -206208,8 +212129,6 @@ entities: - type: DeviceNetwork deviceLists: - 21442 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8327 @@ -206221,8 +212140,6 @@ entities: - type: DeviceNetwork deviceLists: - 144 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8333 @@ -206234,8 +212151,6 @@ entities: - type: DeviceNetwork deviceLists: - 172 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8336 @@ -206247,8 +212162,6 @@ entities: - type: DeviceNetwork deviceLists: - 174 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8359 @@ -206261,8 +212174,6 @@ entities: deviceLists: - 143 - 51723 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8421 @@ -206274,8 +212185,6 @@ entities: - type: DeviceNetwork deviceLists: - 35780 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8430 @@ -206287,8 +212196,6 @@ entities: - type: DeviceNetwork deviceLists: - 35781 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8432 @@ -206301,8 +212208,6 @@ entities: deviceLists: - 35779 - 51724 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8436 @@ -206315,8 +212220,6 @@ entities: deviceLists: - 163 - 51725 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8450 @@ -206329,8 +212232,6 @@ entities: deviceLists: - 51726 - 164 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8525 @@ -206338,8 +212239,6 @@ entities: - type: Transform pos: -49.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8529 @@ -206352,8 +212251,6 @@ entities: deviceLists: - 165 - 51727 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8531 @@ -206365,8 +212262,6 @@ entities: deviceLists: - 51728 - 51730 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8535 @@ -206378,8 +212273,6 @@ entities: - type: DeviceNetwork deviceLists: - 8522 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8547 @@ -206388,8 +212281,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8567 @@ -206401,8 +212292,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8568 @@ -206414,8 +212304,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8569 @@ -206427,8 +212316,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8570 @@ -206440,8 +212328,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8610 @@ -206452,8 +212339,6 @@ entities: - type: DeviceNetwork deviceLists: - 158 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8641 @@ -206465,8 +212350,6 @@ entities: - type: DeviceNetwork deviceLists: - 159 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8648 @@ -206477,8 +212360,6 @@ entities: - type: DeviceNetwork deviceLists: - 161 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8654 @@ -206487,8 +212368,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8667 @@ -206500,8 +212379,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8668 @@ -206513,8 +212391,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8679 @@ -206526,8 +212403,6 @@ entities: - type: DeviceNetwork deviceLists: - 47 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8769 @@ -206540,8 +212415,6 @@ entities: deviceLists: - 10 - 51735 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8775 @@ -206554,8 +212427,6 @@ entities: deviceLists: - 10 - 51735 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8778 @@ -206567,8 +212438,6 @@ entities: deviceLists: - 51734 - 51733 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8793 @@ -206579,8 +212448,6 @@ entities: - type: DeviceNetwork deviceLists: - 50 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8794 @@ -206592,8 +212459,6 @@ entities: - type: DeviceNetwork deviceLists: - 82 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8838 @@ -206605,8 +212470,6 @@ entities: - type: DeviceNetwork deviceLists: - 41 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8863 @@ -206618,8 +212481,6 @@ entities: - type: DeviceNetwork deviceLists: - 22436 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8866 @@ -206631,8 +212492,6 @@ entities: - type: DeviceNetwork deviceLists: - 22436 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8902 @@ -206644,8 +212503,6 @@ entities: - type: DeviceNetwork deviceLists: - 119 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8904 @@ -206657,8 +212514,6 @@ entities: - type: DeviceNetwork deviceLists: - 83 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8907 @@ -206667,8 +212522,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8910 @@ -206677,8 +212530,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8940 @@ -206690,8 +212541,6 @@ entities: - type: DeviceNetwork deviceLists: - 58 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9024 @@ -206703,8 +212552,6 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9025 @@ -206716,8 +212563,6 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9026 @@ -206729,8 +212574,6 @@ entities: - type: DeviceNetwork deviceLists: - 87 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9027 @@ -206742,8 +212585,6 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9068 @@ -206755,8 +212596,6 @@ entities: - type: DeviceNetwork deviceLists: - 194 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9069 @@ -206768,8 +212607,6 @@ entities: - type: DeviceNetwork deviceLists: - 193 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9080 @@ -206781,8 +212618,6 @@ entities: - type: DeviceNetwork deviceLists: - 30 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9101 @@ -206795,8 +212630,6 @@ entities: deviceLists: - 44 - 51750 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9161 @@ -206809,8 +212642,6 @@ entities: deviceLists: - 44 - 51750 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9163 @@ -206822,8 +212653,6 @@ entities: deviceLists: - 44 - 51750 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9169 @@ -206835,8 +212664,6 @@ entities: - type: DeviceNetwork deviceLists: - 80 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9190 @@ -206848,8 +212675,6 @@ entities: - type: DeviceNetwork deviceLists: - 9193 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9214 @@ -206862,8 +212687,6 @@ entities: deviceLists: - 21939 - 51751 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9217 @@ -206878,8 +212701,6 @@ entities: - 36603 - 51752 - 51751 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9228 @@ -206892,8 +212713,6 @@ entities: deviceLists: - 36603 - 51752 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9239 @@ -206905,8 +212724,6 @@ entities: - type: DeviceNetwork deviceLists: - 120 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9246 @@ -206917,8 +212734,6 @@ entities: - type: DeviceNetwork deviceLists: - 11629 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9265 @@ -206929,8 +212744,6 @@ entities: - type: DeviceNetwork deviceLists: - 90 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9289 @@ -206941,8 +212754,6 @@ entities: - type: DeviceNetwork deviceLists: - 30707 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9290 @@ -206953,8 +212764,6 @@ entities: - type: DeviceNetwork deviceLists: - 90 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9357 @@ -206966,8 +212775,6 @@ entities: - type: DeviceNetwork deviceLists: - 52151 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9360 @@ -206978,10 +212785,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 25 - 14522 - - type: AtmosDevice - joinedGrid: 2 + - 496 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9364 @@ -206992,10 +212797,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 25 - 14522 - - type: AtmosDevice - joinedGrid: 2 + - 496 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9404 @@ -207007,8 +212810,6 @@ entities: - type: DeviceNetwork deviceLists: - 35669 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9406 @@ -207021,8 +212822,6 @@ entities: deviceLists: - 39 - 41243 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9430 @@ -207035,8 +212834,6 @@ entities: deviceLists: - 23803 - 23804 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9451 @@ -207047,8 +212844,6 @@ entities: - type: DeviceNetwork deviceLists: - 81 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9465 @@ -207060,8 +212855,6 @@ entities: deviceLists: - 26 - 14521 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9474 @@ -207074,8 +212867,6 @@ entities: deviceLists: - 26 - 14521 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9494 @@ -207088,8 +212879,6 @@ entities: deviceLists: - 73 - 7898 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9500 @@ -207102,8 +212891,6 @@ entities: deviceLists: - 73 - 7898 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9546 @@ -207116,8 +212903,6 @@ entities: deviceLists: - 7767 - 14451 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9593 @@ -207129,8 +212914,6 @@ entities: deviceLists: - 2126 - 14535 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9594 @@ -207142,8 +212925,6 @@ entities: - type: DeviceNetwork deviceLists: - 9596 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9604 @@ -207156,8 +212937,6 @@ entities: deviceLists: - 45 - 2661 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 10342 @@ -207165,8 +212944,6 @@ entities: - type: Transform pos: 61.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22775 @@ -207179,8 +212956,6 @@ entities: deviceLists: - 30609 - 36239 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 34927 @@ -207191,8 +212966,6 @@ entities: - type: DeviceNetwork deviceLists: - 33790 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 37254 @@ -207204,8 +212977,6 @@ entities: deviceLists: - 21706 - 35493 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47316 @@ -207213,8 +212984,6 @@ entities: - type: Transform pos: -0.5,4.5 parent: 32764 - - type: AtmosDevice - joinedGrid: 32764 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47359 @@ -207225,8 +212994,6 @@ entities: - type: DeviceNetwork deviceLists: - 32931 - - type: AtmosDevice - joinedGrid: 32764 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47473 @@ -207234,8 +213001,6 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 44868 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47474 @@ -207243,8 +213008,6 @@ entities: - type: Transform pos: 4.5,-1.5 parent: 44868 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47475 @@ -207256,8 +213019,6 @@ entities: - type: DeviceNetwork deviceLists: - 44871 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47476 @@ -207269,8 +213030,6 @@ entities: - type: DeviceNetwork deviceLists: - 44872 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47477 @@ -207282,8 +213041,6 @@ entities: - type: DeviceNetwork deviceLists: - 44870 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47481 @@ -207294,8 +213051,6 @@ entities: - type: DeviceNetwork deviceLists: - 44869 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47547 @@ -207306,8 +213061,6 @@ entities: - type: DeviceNetwork deviceLists: - 56109 - - type: AtmosDevice - joinedGrid: 56108 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47548 @@ -207318,8 +213071,6 @@ entities: - type: DeviceNetwork deviceLists: - 56110 - - type: AtmosDevice - joinedGrid: 56108 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47549 @@ -207330,8 +213081,204 @@ entities: - type: DeviceNetwork deviceLists: - 56110 - - type: AtmosDevice - joinedGrid: 56108 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36878 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36877 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36876 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36875 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36874 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36863 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36862 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36864 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36865 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36866 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36867 + - 37348 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37347 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36869 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36873 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50832 + components: + - type: Transform + pos: 6.5,18.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36873 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37346 + - 36870 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50841 + components: + - type: Transform + pos: 9.5,19.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36872 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 50842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,14.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36871 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasVentScrubber @@ -207345,8 +213292,6 @@ entities: - type: DeviceNetwork deviceLists: - 5593 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22 @@ -207359,8 +213304,6 @@ entities: deviceLists: - 26 - 14521 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 66 @@ -207373,8 +213316,6 @@ entities: deviceLists: - 30609 - 36239 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 105 @@ -207383,8 +213324,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 128 @@ -207396,8 +213335,6 @@ entities: - type: DeviceNetwork deviceLists: - 6071 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 486 @@ -207409,8 +213346,6 @@ entities: deviceLists: - 30783 - 35494 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 573 @@ -207422,8 +213357,6 @@ entities: deviceLists: - 23 - 14486 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 840 @@ -207435,8 +213368,6 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 874 @@ -207447,8 +213378,6 @@ entities: - type: DeviceNetwork deviceLists: - 2967 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 946 @@ -207460,8 +213389,6 @@ entities: - type: DeviceNetwork deviceLists: - 1386 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 1028 @@ -207472,8 +213399,6 @@ entities: - type: DeviceNetwork deviceLists: - 4974 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 1437 @@ -207486,8 +213411,6 @@ entities: deviceLists: - 14512 - 24441 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 1682 @@ -207500,8 +213423,6 @@ entities: deviceLists: - 178 - 14475 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 1797 @@ -207514,8 +213435,6 @@ entities: deviceLists: - 41862 - 2953 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 1852 @@ -207527,8 +213446,6 @@ entities: - type: DeviceNetwork deviceLists: - 1582 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 1873 @@ -207540,8 +213457,6 @@ entities: - type: DeviceNetwork deviceLists: - 1601 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 1879 @@ -207553,8 +213468,6 @@ entities: - type: DeviceNetwork deviceLists: - 1580 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 1994 @@ -207566,8 +213479,6 @@ entities: deviceLists: - 28267 - 45314 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2022 @@ -207579,8 +213490,6 @@ entities: deviceLists: - 51651 - 14462 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2052 @@ -207592,8 +213501,6 @@ entities: - type: DeviceNetwork deviceLists: - 170 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2125 @@ -207606,8 +213513,6 @@ entities: deviceLists: - 2127 - 2128 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2180 @@ -207619,8 +213524,6 @@ entities: - type: DeviceNetwork deviceLists: - 879 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2210 @@ -207632,8 +213535,6 @@ entities: deviceLists: - 2218 - 14456 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2214 @@ -207645,8 +213546,6 @@ entities: deviceLists: - 106 - 2518 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2294 @@ -207658,8 +213557,6 @@ entities: - type: DeviceNetwork deviceLists: - 2356 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2295 @@ -207670,8 +213567,6 @@ entities: - type: DeviceNetwork deviceLists: - 2355 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2296 @@ -207682,8 +213577,6 @@ entities: - type: DeviceNetwork deviceLists: - 2353 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2297 @@ -207695,8 +213588,6 @@ entities: - type: DeviceNetwork deviceLists: - 2351 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2298 @@ -207708,8 +213599,6 @@ entities: - type: DeviceNetwork deviceLists: - 2352 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2299 @@ -207721,8 +213610,6 @@ entities: - type: DeviceNetwork deviceLists: - 2354 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2337 @@ -207733,8 +213620,6 @@ entities: - type: DeviceNetwork deviceLists: - 2357 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2339 @@ -207745,8 +213630,6 @@ entities: - type: DeviceNetwork deviceLists: - 2358 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2395 @@ -207758,8 +213641,6 @@ entities: deviceLists: - 14534 - 2398 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2457 @@ -207768,8 +213649,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2458 @@ -207778,8 +213657,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2465 @@ -207792,8 +213669,6 @@ entities: deviceLists: - 14520 - 35723 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2479 @@ -207805,8 +213680,6 @@ entities: deviceLists: - 14499 - 2481 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2509 @@ -207818,8 +213691,6 @@ entities: - type: DeviceNetwork deviceLists: - 2511 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2521 @@ -207828,8 +213699,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2583 @@ -207842,8 +213711,6 @@ entities: deviceLists: - 14455 - 103 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2584 @@ -207856,8 +213723,6 @@ entities: deviceLists: - 101 - 2589 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2593 @@ -207870,8 +213735,6 @@ entities: deviceLists: - 111 - 14479 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2648 @@ -207884,8 +213747,6 @@ entities: deviceLists: - 48 - 14498 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2671 @@ -207898,8 +213759,6 @@ entities: deviceLists: - 109 - 14509 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2713 @@ -207912,8 +213771,6 @@ entities: deviceLists: - 28804 - 14505 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2715 @@ -207925,8 +213782,6 @@ entities: deviceLists: - 124 - 2719 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2740 @@ -207938,8 +213793,6 @@ entities: deviceLists: - 27106 - 2743 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2747 @@ -207952,8 +213805,6 @@ entities: deviceLists: - 65 - 14482 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2872 @@ -207966,8 +213817,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2873 @@ -207980,8 +213829,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2874 @@ -207993,8 +213840,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2875 @@ -208007,8 +213852,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2876 @@ -208021,8 +213864,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2877 @@ -208034,8 +213875,6 @@ entities: deviceLists: - 41856 - 2884 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2897 @@ -208047,8 +213886,6 @@ entities: deviceLists: - 41863 - 2904 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 2949 @@ -208061,8 +213898,6 @@ entities: deviceLists: - 528 - 869 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3036 @@ -208071,8 +213906,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3039 @@ -208081,8 +213914,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,65.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3047 @@ -208095,8 +213926,6 @@ entities: deviceLists: - 41058 - 2746 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3067 @@ -208108,8 +213937,6 @@ entities: deviceLists: - 41058 - 2746 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3076 @@ -208120,8 +213947,6 @@ entities: - type: DeviceNetwork deviceLists: - 41059 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3142 @@ -208133,8 +213958,6 @@ entities: deviceLists: - 3216 - 45290 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3173 @@ -208146,8 +213969,6 @@ entities: deviceLists: - 45291 - 3220 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3214 @@ -208158,8 +213979,6 @@ entities: - type: DeviceNetwork deviceLists: - 67 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3244 @@ -208171,8 +213990,6 @@ entities: - type: DeviceNetwork deviceLists: - 55 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3247 @@ -208185,8 +214002,6 @@ entities: deviceLists: - 113 - 14477 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3250 @@ -208198,8 +214013,6 @@ entities: deviceLists: - 3253 - 44856 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3272 @@ -208207,8 +214020,6 @@ entities: - type: Transform pos: -26.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3293 @@ -208220,8 +214031,6 @@ entities: - type: DeviceNetwork deviceLists: - 11989 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3322 @@ -208232,8 +214041,6 @@ entities: - type: DeviceNetwork deviceLists: - 32 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3324 @@ -208245,8 +214052,6 @@ entities: - type: DeviceNetwork deviceLists: - 28 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3329 @@ -208257,8 +214062,6 @@ entities: - type: DeviceNetwork deviceLists: - 28 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3370 @@ -208270,8 +214073,6 @@ entities: - type: DeviceNetwork deviceLists: - 23018 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3392 @@ -208283,8 +214084,6 @@ entities: - type: DeviceNetwork deviceLists: - 71 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3396 @@ -208296,8 +214095,6 @@ entities: deviceLists: - 45292 - 45293 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3397 @@ -208309,8 +214106,6 @@ entities: deviceLists: - 45292 - 45293 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3401 @@ -208323,8 +214118,6 @@ entities: deviceLists: - 113 - 14477 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3403 @@ -208336,8 +214129,6 @@ entities: deviceLists: - 28267 - 45314 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3419 @@ -208349,8 +214140,6 @@ entities: deviceLists: - 25930 - 51042 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3420 @@ -208363,8 +214152,6 @@ entities: deviceLists: - 25930 - 51042 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3527 @@ -208377,8 +214164,6 @@ entities: deviceLists: - 3530 - 44829 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3531 @@ -208390,8 +214175,6 @@ entities: - type: DeviceNetwork deviceLists: - 126 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3557 @@ -208403,8 +214186,6 @@ entities: - type: DeviceNetwork deviceLists: - 127 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3569 @@ -208417,8 +214198,6 @@ entities: deviceLists: - 4168 - 44128 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3570 @@ -208431,8 +214210,6 @@ entities: deviceLists: - 4168 - 44128 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3609 @@ -208444,8 +214221,6 @@ entities: - type: DeviceNetwork deviceLists: - 56 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3703 @@ -208456,8 +214231,6 @@ entities: - type: DeviceNetwork deviceLists: - 43546 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3714 @@ -208468,8 +214241,6 @@ entities: - type: DeviceNetwork deviceLists: - 43546 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3717 @@ -208480,9 +214251,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 3721 - - type: AtmosDevice - joinedGrid: 2 + - 47658 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3744 @@ -208494,8 +214263,6 @@ entities: deviceLists: - 44853 - 3776 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3745 @@ -208508,8 +214275,6 @@ entities: deviceLists: - 44853 - 3776 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3746 @@ -208522,8 +214287,6 @@ entities: deviceLists: - 44853 - 3776 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3747 @@ -208535,8 +214298,6 @@ entities: deviceLists: - 44853 - 3776 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3783 @@ -208548,8 +214309,6 @@ entities: - type: DeviceNetwork deviceLists: - 3785 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3895 @@ -208561,8 +214320,6 @@ entities: - type: DeviceNetwork deviceLists: - 137 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3896 @@ -208574,8 +214331,6 @@ entities: - type: DeviceNetwork deviceLists: - 137 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3903 @@ -208587,8 +214342,6 @@ entities: - type: DeviceNetwork deviceLists: - 59 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3904 @@ -208600,8 +214353,6 @@ entities: - type: DeviceNetwork deviceLists: - 136 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3905 @@ -208613,8 +214364,6 @@ entities: - type: DeviceNetwork deviceLists: - 136 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3965 @@ -208625,8 +214374,6 @@ entities: - type: DeviceNetwork deviceLists: - 135 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3969 @@ -208637,8 +214384,6 @@ entities: - type: DeviceNetwork deviceLists: - 135 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3972 @@ -208651,8 +214396,6 @@ entities: deviceLists: - 52 - 51718 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4005 @@ -208664,8 +214407,6 @@ entities: deviceLists: - 72 - 114 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4006 @@ -208677,8 +214418,6 @@ entities: deviceLists: - 72 - 114 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4008 @@ -208690,8 +214429,7 @@ entities: - type: DeviceNetwork deviceLists: - 7 - - type: AtmosDevice - joinedGrid: 2 + - 43770 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4010 @@ -208703,8 +214441,7 @@ entities: - type: DeviceNetwork deviceLists: - 19 - - type: AtmosDevice - joinedGrid: 2 + - 43754 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4072 @@ -208716,8 +214453,6 @@ entities: - type: DeviceNetwork deviceLists: - 131 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4073 @@ -208729,8 +214464,6 @@ entities: - type: DeviceNetwork deviceLists: - 131 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4336 @@ -208741,8 +214474,6 @@ entities: - type: DeviceNetwork deviceLists: - 134 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4339 @@ -208753,8 +214484,6 @@ entities: - type: DeviceNetwork deviceLists: - 134 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4344 @@ -208766,8 +214495,6 @@ entities: - type: DeviceNetwork deviceLists: - 138 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4349 @@ -208779,8 +214506,6 @@ entities: - type: DeviceNetwork deviceLists: - 138 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4350 @@ -208792,8 +214517,6 @@ entities: - type: DeviceNetwork deviceLists: - 132 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4351 @@ -208805,8 +214528,6 @@ entities: - type: DeviceNetwork deviceLists: - 132 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4352 @@ -208818,8 +214539,6 @@ entities: - type: DeviceNetwork deviceLists: - 140 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4359 @@ -208831,8 +214550,6 @@ entities: - type: DeviceNetwork deviceLists: - 140 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4362 @@ -208844,8 +214561,6 @@ entities: - type: DeviceNetwork deviceLists: - 139 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4363 @@ -208858,8 +214573,6 @@ entities: deviceLists: - 69 - 14476 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4387 @@ -208871,9 +214584,7 @@ entities: - type: DeviceNetwork deviceLists: - 14 - - 123 - - type: AtmosDevice - joinedGrid: 2 + - 45308 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4414 @@ -208886,8 +214597,6 @@ entities: deviceLists: - 69 - 14476 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4420 @@ -208900,8 +214609,6 @@ entities: deviceLists: - 31 - 14472 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4458 @@ -208913,8 +214620,6 @@ entities: deviceLists: - 31 - 14472 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4501 @@ -208922,31 +214627,23 @@ entities: - type: Transform pos: -90.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4502 components: - type: Transform pos: -83.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4503 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4504 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4509 components: - type: Transform @@ -208955,8 +214652,6 @@ entities: - type: DeviceNetwork deviceLists: - 23033 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4546 @@ -208968,8 +214663,6 @@ entities: deviceLists: - 74 - 43639 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4547 @@ -208981,8 +214674,6 @@ entities: deviceLists: - 74 - 43639 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4548 @@ -208994,8 +214685,6 @@ entities: deviceLists: - 43638 - 70 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4549 @@ -209008,8 +214697,6 @@ entities: deviceLists: - 43638 - 70 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4645 @@ -209022,8 +214709,6 @@ entities: deviceLists: - 11 - 43686 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4647 @@ -209035,8 +214720,6 @@ entities: deviceLists: - 112 - 14490 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4679 @@ -209048,8 +214731,6 @@ entities: deviceLists: - 4692 - 4693 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4700 @@ -209061,8 +214742,6 @@ entities: - type: DeviceNetwork deviceLists: - 716 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4716 @@ -209074,8 +214753,6 @@ entities: - type: DeviceNetwork deviceLists: - 5169 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4743 @@ -209087,8 +214764,6 @@ entities: - type: DeviceNetwork deviceLists: - 96 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4761 @@ -209099,8 +214774,6 @@ entities: - type: DeviceNetwork deviceLists: - 35737 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4776 @@ -209108,8 +214781,6 @@ entities: - type: Transform pos: -43.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4793 @@ -209121,8 +214792,6 @@ entities: deviceLists: - 45 - 2661 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4808 @@ -209135,8 +214804,6 @@ entities: deviceLists: - 125 - 14506 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4815 @@ -209145,8 +214812,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4816 @@ -209155,8 +214820,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4817 @@ -209165,8 +214828,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4819 @@ -209174,8 +214835,6 @@ entities: - type: Transform pos: -46.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4966 @@ -209184,8 +214843,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4967 @@ -209194,8 +214851,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4968 @@ -209207,8 +214862,7 @@ entities: - type: DeviceNetwork deviceLists: - 24 - - type: AtmosDevice - joinedGrid: 2 + - 51695 - type: AtmosPipeColor color: '#FF0000FF' - uid: 4969 @@ -209220,8 +214874,7 @@ entities: - type: DeviceNetwork deviceLists: - 24 - - type: AtmosDevice - joinedGrid: 2 + - 51695 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5026 @@ -209233,8 +214886,6 @@ entities: - type: DeviceNetwork deviceLists: - 150 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5030 @@ -209246,8 +214897,6 @@ entities: - type: DeviceNetwork deviceLists: - 149 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5031 @@ -209259,8 +214908,6 @@ entities: - type: DeviceNetwork deviceLists: - 1314 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5053 @@ -209272,8 +214919,6 @@ entities: deviceLists: - 146 - 51697 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5056 @@ -209285,8 +214930,6 @@ entities: deviceLists: - 146 - 51697 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5090 @@ -209298,8 +214941,6 @@ entities: - type: DeviceNetwork deviceLists: - 32715 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5138 @@ -209312,8 +214953,6 @@ entities: deviceLists: - 146 - 51697 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5186 @@ -209324,8 +214963,6 @@ entities: - type: DeviceNetwork deviceLists: - 30669 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5191 @@ -209337,8 +214974,6 @@ entities: - type: DeviceNetwork deviceLists: - 18157 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5222 @@ -209351,8 +214986,6 @@ entities: deviceLists: - 147 - 5273 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5224 @@ -209364,8 +214997,6 @@ entities: - type: DeviceNetwork deviceLists: - 185 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5272 @@ -209377,8 +215008,6 @@ entities: - type: DeviceNetwork deviceLists: - 185 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5274 @@ -209391,8 +215020,6 @@ entities: deviceLists: - 79 - 6818 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5286 @@ -209405,8 +215032,6 @@ entities: deviceLists: - 85 - 14495 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5328 @@ -209418,8 +215043,6 @@ entities: - type: DeviceNetwork deviceLists: - 63 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5343 @@ -209431,8 +215054,6 @@ entities: - type: DeviceNetwork deviceLists: - 5362 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5354 @@ -209443,8 +215064,6 @@ entities: - type: DeviceNetwork deviceLists: - 118 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5365 @@ -209456,8 +215075,6 @@ entities: - type: DeviceNetwork deviceLists: - 188 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5396 @@ -209470,8 +215087,6 @@ entities: deviceLists: - 94 - 14483 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5400 @@ -209484,8 +215099,6 @@ entities: deviceLists: - 94 - 14483 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5409 @@ -209498,8 +215111,6 @@ entities: deviceLists: - 93 - 92 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5445 @@ -209512,8 +215123,6 @@ entities: deviceLists: - 95 - 14496 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5465 @@ -209525,8 +215134,6 @@ entities: deviceLists: - 35940 - 19681 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5515 @@ -209539,8 +215146,6 @@ entities: deviceLists: - 192 - 14489 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5670 @@ -209552,8 +215157,6 @@ entities: deviceLists: - 11610 - 11607 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5789 @@ -209561,8 +215164,6 @@ entities: - type: Transform pos: -0.5,2.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5790 @@ -209571,8 +215172,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5791 @@ -209581,8 +215180,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5792 @@ -209591,8 +215188,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5793 @@ -209601,8 +215196,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,2.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5794 @@ -209611,8 +215204,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,4.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5795 @@ -209621,8 +215212,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,4.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5796 @@ -209630,8 +215219,6 @@ entities: - type: Transform pos: -0.5,4.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5797 @@ -209639,8 +215226,6 @@ entities: - type: Transform pos: 1.5,4.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5798 @@ -209648,8 +215233,6 @@ entities: - type: Transform pos: 1.5,2.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5799 @@ -209658,8 +215241,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,4.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5800 @@ -209668,8 +215249,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5801 @@ -209678,8 +215257,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5802 @@ -209688,8 +215265,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5805 @@ -209698,8 +215273,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5806 @@ -209708,8 +215281,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#FF0000FF' - uid: 5982 @@ -209717,164 +215288,122 @@ entities: - type: Transform pos: 10.5,42.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 5983 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,42.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 5984 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,42.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 5985 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,40.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 5986 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,40.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 5987 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,40.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6020 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,43.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6021 components: - type: Transform pos: -0.5,42.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6022 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,45.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6051 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,34.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6052 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,33.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6053 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,28.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6054 components: - type: Transform pos: -11.5,36.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6130 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,46.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6145 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,28.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6148 components: - type: Transform pos: -13.5,28.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6149 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,28.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6151 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,33.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6152 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,33.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6153 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,33.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 6157 components: - type: Transform pos: -13.5,33.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - uid: 7826 components: - type: Transform @@ -209884,8 +215413,6 @@ entities: deviceLists: - 11610 - 11607 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 7912 @@ -209897,8 +215424,6 @@ entities: - type: DeviceNetwork deviceLists: - 9596 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8155 @@ -209910,8 +215435,6 @@ entities: - type: DeviceNetwork deviceLists: - 12 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8167 @@ -209924,8 +215447,6 @@ entities: deviceLists: - 160 - 51722 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8186 @@ -209937,8 +215458,6 @@ entities: - type: DeviceNetwork deviceLists: - 5638 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8203 @@ -209951,8 +215470,6 @@ entities: deviceLists: - 774 - 8220 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8210 @@ -209964,8 +215481,6 @@ entities: - type: DeviceNetwork deviceLists: - 28915 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8253 @@ -209977,8 +215492,6 @@ entities: deviceLists: - 60 - 51717 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8256 @@ -209991,8 +215504,6 @@ entities: deviceLists: - 8260 - 51720 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8320 @@ -210004,8 +215515,6 @@ entities: - type: DeviceNetwork deviceLists: - 177 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8321 @@ -210017,8 +215526,6 @@ entities: - type: DeviceNetwork deviceLists: - 13042 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8322 @@ -210030,8 +215537,6 @@ entities: - type: DeviceNetwork deviceLists: - 21442 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8323 @@ -210043,8 +215548,6 @@ entities: - type: DeviceNetwork deviceLists: - 144 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8332 @@ -210055,8 +215558,6 @@ entities: - type: DeviceNetwork deviceLists: - 172 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8335 @@ -210068,8 +215569,6 @@ entities: - type: DeviceNetwork deviceLists: - 174 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8353 @@ -210082,8 +215581,6 @@ entities: deviceLists: - 143 - 51723 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8420 @@ -210095,8 +215592,6 @@ entities: - type: DeviceNetwork deviceLists: - 35780 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8429 @@ -210108,8 +215603,6 @@ entities: - type: DeviceNetwork deviceLists: - 35781 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8433 @@ -210122,8 +215615,6 @@ entities: deviceLists: - 35779 - 51724 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8435 @@ -210136,8 +215627,6 @@ entities: deviceLists: - 163 - 51725 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8449 @@ -210150,8 +215639,6 @@ entities: deviceLists: - 51726 - 164 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8526 @@ -210159,8 +215646,6 @@ entities: - type: Transform pos: -47.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8528 @@ -210173,8 +215658,6 @@ entities: deviceLists: - 165 - 51727 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8532 @@ -210186,8 +215669,6 @@ entities: deviceLists: - 51728 - 51730 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8536 @@ -210199,8 +215680,6 @@ entities: - type: DeviceNetwork deviceLists: - 8522 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8548 @@ -210209,8 +215688,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8563 @@ -210222,8 +215699,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8564 @@ -210235,8 +215711,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8565 @@ -210248,8 +215723,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8566 @@ -210261,8 +215735,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8609 @@ -210273,8 +215746,6 @@ entities: - type: DeviceNetwork deviceLists: - 158 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8640 @@ -210286,8 +215757,6 @@ entities: - type: DeviceNetwork deviceLists: - 159 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8649 @@ -210298,8 +215767,6 @@ entities: - type: DeviceNetwork deviceLists: - 161 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8655 @@ -210308,8 +215775,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8669 @@ -210321,8 +215786,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8670 @@ -210334,8 +215798,7 @@ entities: - type: DeviceNetwork deviceLists: - 17 - - type: AtmosDevice - joinedGrid: 2 + - 51731 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8678 @@ -210347,8 +215810,6 @@ entities: - type: DeviceNetwork deviceLists: - 47 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8770 @@ -210361,8 +215822,6 @@ entities: deviceLists: - 10 - 51735 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8774 @@ -210375,8 +215834,6 @@ entities: deviceLists: - 10 - 51735 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8779 @@ -210388,8 +215845,6 @@ entities: deviceLists: - 51734 - 51733 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8796 @@ -210401,8 +215856,6 @@ entities: - type: DeviceNetwork deviceLists: - 82 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8798 @@ -210413,8 +215866,6 @@ entities: - type: DeviceNetwork deviceLists: - 50 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8839 @@ -210426,8 +215877,6 @@ entities: - type: DeviceNetwork deviceLists: - 41 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8864 @@ -210439,8 +215888,6 @@ entities: - type: DeviceNetwork deviceLists: - 22436 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8865 @@ -210452,8 +215899,6 @@ entities: - type: DeviceNetwork deviceLists: - 22436 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8901 @@ -210465,8 +215910,6 @@ entities: - type: DeviceNetwork deviceLists: - 119 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8905 @@ -210478,8 +215921,6 @@ entities: - type: DeviceNetwork deviceLists: - 83 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8908 @@ -210488,8 +215929,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8909 @@ -210498,8 +215937,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 8939 @@ -210511,8 +215948,6 @@ entities: - type: DeviceNetwork deviceLists: - 58 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9019 @@ -210524,8 +215959,6 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9020 @@ -210537,8 +215970,6 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9021 @@ -210550,8 +215981,6 @@ entities: - type: DeviceNetwork deviceLists: - 87 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9022 @@ -210563,8 +215992,6 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9065 @@ -210576,8 +216003,6 @@ entities: - type: DeviceNetwork deviceLists: - 194 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9067 @@ -210589,8 +216014,6 @@ entities: - type: DeviceNetwork deviceLists: - 193 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9079 @@ -210602,8 +216025,6 @@ entities: - type: DeviceNetwork deviceLists: - 30 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9102 @@ -210616,8 +216037,6 @@ entities: deviceLists: - 44 - 51750 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9165 @@ -210629,8 +216048,6 @@ entities: deviceLists: - 44 - 51750 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9166 @@ -210643,8 +216060,6 @@ entities: deviceLists: - 44 - 51750 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9170 @@ -210656,8 +216071,6 @@ entities: - type: DeviceNetwork deviceLists: - 80 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9191 @@ -210669,8 +216082,6 @@ entities: - type: DeviceNetwork deviceLists: - 9193 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9215 @@ -210683,8 +216094,6 @@ entities: deviceLists: - 21939 - 51751 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9218 @@ -210699,8 +216108,6 @@ entities: - 36603 - 51752 - 51751 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9229 @@ -210713,8 +216120,6 @@ entities: deviceLists: - 36603 - 51752 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9241 @@ -210726,8 +216131,6 @@ entities: - type: DeviceNetwork deviceLists: - 120 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9247 @@ -210738,8 +216141,6 @@ entities: - type: DeviceNetwork deviceLists: - 11629 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9266 @@ -210750,8 +216151,6 @@ entities: - type: DeviceNetwork deviceLists: - 90 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9288 @@ -210762,8 +216161,6 @@ entities: - type: DeviceNetwork deviceLists: - 30707 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9291 @@ -210774,8 +216171,6 @@ entities: - type: DeviceNetwork deviceLists: - 90 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9356 @@ -210787,8 +216182,6 @@ entities: - type: DeviceNetwork deviceLists: - 52151 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9358 @@ -210799,10 +216192,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 25 - 14522 - - type: AtmosDevice - joinedGrid: 2 + - 496 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9365 @@ -210813,10 +216204,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 25 - 14522 - - type: AtmosDevice - joinedGrid: 2 + - 496 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9403 @@ -210828,8 +216217,6 @@ entities: - type: DeviceNetwork deviceLists: - 35669 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9407 @@ -210842,8 +216229,6 @@ entities: deviceLists: - 39 - 41243 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9431 @@ -210856,8 +216241,6 @@ entities: deviceLists: - 23803 - 23804 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9452 @@ -210868,8 +216251,6 @@ entities: - type: DeviceNetwork deviceLists: - 81 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9466 @@ -210881,8 +216262,6 @@ entities: deviceLists: - 26 - 14521 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9497 @@ -210895,8 +216274,6 @@ entities: deviceLists: - 73 - 7898 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9499 @@ -210909,8 +216286,6 @@ entities: deviceLists: - 73 - 7898 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9545 @@ -210923,8 +216298,6 @@ entities: deviceLists: - 7767 - 14451 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9591 @@ -210936,8 +216309,6 @@ entities: deviceLists: - 2126 - 14535 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9603 @@ -210950,8 +216321,14 @@ entities: deviceLists: - 45 - 2661 - - type: AtmosDevice - joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-22.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 26793 @@ -210962,8 +216339,6 @@ entities: - type: DeviceNetwork deviceLists: - 33790 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 36304 @@ -210971,8 +216346,6 @@ entities: - type: Transform pos: 59.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47360 @@ -210983,8 +216356,6 @@ entities: - type: DeviceNetwork deviceLists: - 32931 - - type: AtmosDevice - joinedGrid: 32764 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47361 @@ -210992,8 +216363,6 @@ entities: - type: Transform pos: 1.5,4.5 parent: 32764 - - type: AtmosDevice - joinedGrid: 32764 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47429 @@ -211001,8 +216370,6 @@ entities: - type: Transform pos: -3.5,-1.5 parent: 44868 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47430 @@ -211010,8 +216377,6 @@ entities: - type: Transform pos: 6.5,-1.5 parent: 44868 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47431 @@ -211023,8 +216388,6 @@ entities: - type: DeviceNetwork deviceLists: - 44872 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47433 @@ -211036,8 +216399,6 @@ entities: - type: DeviceNetwork deviceLists: - 44871 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47447 @@ -211048,8 +216409,6 @@ entities: - type: DeviceNetwork deviceLists: - 44869 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47449 @@ -211058,8 +216417,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 44868 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47452 @@ -211071,8 +216428,6 @@ entities: - type: DeviceNetwork deviceLists: - 44870 - - type: AtmosDevice - joinedGrid: 44868 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47543 @@ -211083,8 +216438,6 @@ entities: - type: DeviceNetwork deviceLists: - 56109 - - type: AtmosDevice - joinedGrid: 56108 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47545 @@ -211096,8 +216449,6 @@ entities: - type: DeviceNetwork deviceLists: - 56110 - - type: AtmosDevice - joinedGrid: 56108 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47546 @@ -211108,8 +216459,14 @@ entities: - type: DeviceNetwork deviceLists: - 56110 - - type: AtmosDevice - joinedGrid: 56108 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 47706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-29.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 47767 @@ -211121,8 +216478,228 @@ entities: deviceLists: - 21706 - 35493 - - type: AtmosDevice - joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48507 + components: + - type: Transform + pos: 71.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 48510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,17.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36873 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36873 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36869 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,13.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36871 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50882 + components: + - type: Transform + pos: 10.5,19.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36872 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37346 + - 36870 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36864 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 50898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 37347 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36863 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36862 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36866 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36865 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36878 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36877 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36876 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36875 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36874 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 51313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 36861 + - type: DeviceNetwork + deviceLists: + - 36867 + - 37348 - type: AtmosPipeColor color: '#FF0000FF' - proto: Gateway @@ -211989,11 +217566,6 @@ entities: - type: Transform pos: 63.5,31.5 parent: 2 - - uid: 5998 - components: - - type: Transform - pos: 53.5,15.5 - parent: 2 - uid: 5999 components: - type: Transform @@ -212066,11 +217638,6 @@ entities: - type: Transform pos: 4.5,61.5 parent: 2 - - uid: 7037 - components: - - type: Transform - pos: 53.5,19.5 - parent: 2 - uid: 7039 components: - type: Transform @@ -216200,11 +221767,6 @@ entities: - type: Transform pos: 21.5,-12.5 parent: 2 - - uid: 23808 - components: - - type: Transform - pos: 53.5,21.5 - parent: 2 - uid: 23941 components: - type: Transform @@ -216280,12 +221842,6 @@ entities: - type: Transform pos: -30.5,-59.5 parent: 2 - - uid: 24173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 2 - uid: 24224 components: - type: Transform @@ -216327,11 +221883,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,60.5 parent: 2 - - uid: 24336 - components: - - type: Transform - pos: 53.5,13.5 - parent: 2 - uid: 24434 components: - type: Transform @@ -216357,11 +221908,6 @@ entities: - type: Transform pos: 66.5,-38.5 parent: 2 - - uid: 24555 - components: - - type: Transform - pos: 53.5,17.5 - parent: 2 - uid: 24620 components: - type: Transform @@ -216751,6 +222297,11 @@ entities: - type: Transform pos: 63.5,22.5 parent: 2 + - uid: 29621 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 - uid: 29689 components: - type: Transform @@ -216797,6 +222348,11 @@ entities: - type: Transform pos: -9.5,62.5 parent: 2 + - uid: 30130 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 - uid: 30441 components: - type: Transform @@ -216823,24 +222379,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-25.5 parent: 2 - - uid: 31408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-2.5 - parent: 2 - - uid: 31413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-2.5 - parent: 2 - - uid: 31414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-2.5 - parent: 2 - uid: 31419 components: - type: Transform @@ -216870,6 +222408,11 @@ entities: rot: 3.141592653589793 rad pos: 29.5,39.5 parent: 2 + - uid: 32697 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 - uid: 32817 components: - type: Transform @@ -217080,6 +222623,11 @@ entities: rot: 3.141592653589793 rad pos: 68.5,-10.5 parent: 2 + - uid: 34597 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 - uid: 35101 components: - type: Transform @@ -217232,6 +222780,11 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-46.5 parent: 2 + - uid: 36079 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 - uid: 36135 components: - type: Transform @@ -218328,6 +223881,26 @@ entities: - type: Transform pos: -61.5,54.5 parent: 2 + - uid: 43001 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 43008 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 43036 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 43050 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 - uid: 43217 components: - type: Transform @@ -219261,6 +224834,11 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,52.5 parent: 2 + - uid: 4913 + components: + - type: Transform + pos: 31.5,72.5 + parent: 2 - uid: 7053 components: - type: Transform @@ -221277,6 +226855,12 @@ entities: rot: 3.141592653589793 rad pos: 3.5,43.5 parent: 45711 + - uid: 51634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,71.5 + parent: 2 - uid: 52360 components: - type: Transform @@ -221798,15 +227382,6 @@ entities: - type: Transform pos: 103.74526,53.45561 parent: 2 -- proto: GunpetInstrument - entities: - - uid: 12249 - components: - - type: Transform - parent: 12247 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: GunSafe entities: - uid: 21266 @@ -221820,8 +227395,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8978093 - - 7.139378 + - 1.8978151 + - 7.1394 - 0 - 0 - 0 @@ -221838,9 +227413,9 @@ entities: showEnts: False occludes: True ents: - - 15164 - - 21902 - 21267 + - 21902 + - 15164 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -222012,17 +227587,16 @@ entities: parent: 2 - proto: HandLabeler entities: - - uid: 11122 + - uid: 1657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.37199032,-57.530846 + pos: 1.4228808,6.9021335 parent: 2 - - uid: 21278 + - uid: 11122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.3303261,6.087846 + rot: 1.5707963267948966 rad + pos: -0.37199032,-57.530846 parent: 2 - uid: 21280 components: @@ -222065,6 +227639,13 @@ entities: - type: Transform pos: 12.476355,-63.433025 parent: 2 +- proto: HeadHuman + entities: + - uid: 22241 + components: + - type: Transform + pos: 22.925323,-43.544758 + parent: 2 - proto: HeadSkeleton entities: - uid: 35115 @@ -222084,6 +227665,11 @@ entities: parent: 2 - proto: HeadVulpkanin entities: + - uid: 4914 + components: + - type: Transform + pos: -31.921516,-74.89904 + parent: 2 - uid: 41699 components: - type: Transform @@ -222095,13 +227681,6 @@ entities: - type: Transform pos: -23.486053,42.312134 parent: 45711 -- proto: HelicopterInstrument - entities: - - uid: 24312 - components: - - type: Transform - pos: -43.4302,0.7071971 - parent: 2 - proto: Hemostat entities: - uid: 21282 @@ -222244,15 +227823,15 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-69.5 parent: 2 - - uid: 5808 + - uid: 12302 components: - type: Transform - pos: -16.5,43.5 + pos: -31.5,-38.5 parent: 2 - - uid: 12302 + - uid: 14052 components: - type: Transform - pos: -31.5,-38.5 + pos: -16.5,43.5 parent: 2 - uid: 18726 components: @@ -222486,6 +228065,11 @@ entities: - type: Transform pos: -48.5,-12.5 parent: 2 + - uid: 11457 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 - uid: 14056 components: - type: Transform @@ -222506,6 +228090,11 @@ entities: - type: Transform pos: 32.5,-5.5 parent: 2 + - uid: 28012 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 2 - uid: 44802 components: - type: Transform @@ -222674,24 +228263,6 @@ entities: - type: Transform pos: -13.5,-59.5 parent: 2 - - uid: 21356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-53.5 - parent: 2 - - uid: 21357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-53.5 - parent: 2 - - uid: 21358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-53.5 - parent: 2 - uid: 21457 components: - type: Transform @@ -222717,6 +228288,24 @@ entities: - type: Transform pos: -24.5,41.5 parent: 2 +- proto: HydroponicsTrayEmpty + entities: + - uid: 12529 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 2 + - uid: 22147 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 2 + - uid: 27866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-49.5 + parent: 2 - proto: HydroponicsTrayMachineCircuitboard entities: - uid: 52105 @@ -223155,15 +228744,11 @@ entities: parent: 34641 - proto: IntercomAll entities: - - uid: 31813 - components: - - type: Transform - pos: -2.5,2.5 - parent: 2 - - uid: 32010 + - uid: 22067 components: - type: Transform - pos: -46.5,-25.5 + rot: 3.141592653589793 rad + pos: -2.5,-1.5 parent: 2 - proto: IntercomAssesmbly entities: @@ -223322,16 +228907,76 @@ entities: - uid: 35982 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27677 + - type: UnpoweredFlashlight + toggleActionEntity: 27677 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - uid: 35985 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 31958 + - type: UnpoweredFlashlight + toggleActionEntity: 31958 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: JanitorServiceLight entities: @@ -223369,14 +229014,6 @@ entities: - type: DeviceLinkSink links: - 24462 - - uid: 19432 - components: - - type: Transform - pos: -14.5,34.5 - parent: 2 - - type: DeviceLinkSink - links: - - 19445 - uid: 19557 components: - type: Transform @@ -223385,15 +229022,6 @@ entities: - type: DeviceLinkSink links: - 24462 - - uid: 19562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,0.5 - parent: 2 - - type: DeviceLinkSink - links: - - 44831 - uid: 20163 components: - type: Transform @@ -223446,23 +229074,22 @@ entities: - type: DeviceLinkSink links: - 23585 - - uid: 31503 + - uid: 41081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: -12.5,23.5 parent: 2 - type: DeviceLinkSink links: - - 44831 - - uid: 41081 + - 41080 + - uid: 51544 components: - type: Transform - pos: -12.5,23.5 + pos: -14.5,34.5 parent: 2 - type: DeviceLinkSink links: - - 41080 + - 51545 - proto: JetpackBlackFilled entities: - uid: 21387 @@ -223500,6 +229127,27 @@ entities: rot: -1.5707963267948966 rad pos: -47.364468,-40.473324 parent: 2 + - uid: 11934 + components: + - type: Transform + pos: -36.531326,-29.505741 + parent: 2 + - uid: 14573 + components: + - type: Transform + pos: -37.455555,-29.505625 + parent: 2 + - type: GasTank + toggleActionEntity: 15233 + - type: Jetpack + toggleActionEntity: 14574 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 14574 + - 15233 - uid: 29135 components: - type: Transform @@ -223594,11 +229242,6 @@ entities: parent: 2 - proto: KitchenElectricGrill entities: - - uid: 14317 - components: - - type: Transform - pos: -27.5,25.5 - parent: 2 - uid: 36406 components: - type: Transform @@ -223612,18 +229255,33 @@ entities: - type: ItemPlacer placedEntities: - 42697 + - uid: 53242 + components: + - type: Transform + pos: -27.5,28.5 + parent: 2 + - uid: 55871 + components: + - type: Transform + pos: -80.5,-10.5 + parent: 2 - proto: KitchenKnife entities: - - uid: 21400 + - uid: 1811 components: - type: Transform - pos: -29.636513,26.787477 + rot: 0.000553772842977196 rad + pos: -26.30234,31.683191 parent: 2 - - uid: 21401 + - uid: 11489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.573814,-47.35694 + pos: 23.730417,-43.40294 + parent: 2 + - uid: 11863 + components: + - type: Transform + pos: 23.961292,-43.414482 parent: 2 - uid: 21403 components: @@ -223651,20 +229309,30 @@ entities: parent: 45711 - proto: KitchenMicrowave entities: + - uid: 11486 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 - uid: 12141 components: - type: Transform pos: -33.5,-38.5 parent: 2 + - uid: 12555 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 - uid: 14373 components: - type: Transform pos: -14.5,-37.5 parent: 2 - - uid: 21404 + - uid: 15295 components: - type: Transform - pos: -29.5,27.5 + pos: -29.5,25.5 parent: 2 - uid: 21405 components: @@ -223676,21 +229344,11 @@ entities: - type: Transform pos: -27.5,-2.5 parent: 2 - - uid: 21407 - components: - - type: Transform - pos: 25.5,-43.5 - parent: 2 - uid: 21408 components: - type: Transform pos: 46.5,-62.5 parent: 2 - - uid: 21411 - components: - - type: Transform - pos: -25.5,31.5 - parent: 2 - uid: 21412 components: - type: Transform @@ -223726,6 +229384,16 @@ entities: - type: Transform pos: -55.5,25.5 parent: 2 + - uid: 51095 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 52984 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 - uid: 53309 components: - type: Transform @@ -223743,40 +229411,30 @@ entities: - type: Transform pos: -26.5,36.5 parent: 2 - - uid: 19363 - components: - - type: Transform - pos: -27.5,31.5 - parent: 2 - - uid: 21413 - components: - - type: Transform - pos: -29.5,25.5 - parent: 2 - - uid: 21415 + - uid: 21417 components: - type: Transform - pos: 26.5,-41.5 + pos: 45.5,-62.5 parent: 2 - - uid: 21416 + - uid: 23951 components: - type: Transform - pos: 23.5,-43.5 + pos: 23.5,-47.5 parent: 2 - - uid: 21417 + - uid: 24467 components: - type: Transform - pos: 45.5,-62.5 + pos: 12.5,-36.5 parent: 2 - - uid: 24467 + - uid: 24992 components: - type: Transform - pos: 12.5,-36.5 + pos: -27.5,27.5 parent: 2 - - uid: 30223 + - uid: 32294 components: - type: Transform - pos: -18.5,39.5 + pos: -18.5,43.5 parent: 2 - uid: 36159 components: @@ -223785,20 +229443,25 @@ entities: parent: 2 - proto: KitchenSpike entities: - - uid: 21421 + - uid: 11158 components: - type: Transform - pos: -35.5,30.5 + pos: -32.5,-74.5 parent: 2 - - uid: 21422 + - uid: 12789 components: - type: Transform - pos: -34.5,30.5 + pos: -32.5,30.5 parent: 2 - - uid: 21423 + - uid: 14390 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 2 + - uid: 24019 components: - type: Transform - pos: 21.5,-46.5 + pos: -32.5,27.5 parent: 2 - uid: 44703 components: @@ -223835,6 +229498,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.564855,24.594208 parent: 45711 + - uid: 53253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.4581394,-5.229946 + parent: 2 - uid: 54376 components: - type: Transform @@ -223850,6 +229519,11 @@ entities: parent: 43176 - proto: KukriKnife entities: + - uid: 26106 + components: + - type: Transform + pos: 31.130161,-36.573048 + parent: 2 - uid: 36026 components: - type: Transform @@ -223883,6 +229557,27 @@ entities: - type: Transform pos: 10.499706,-57.382557 parent: 2 + - uid: 11220 + components: + - type: Transform + pos: 40.639366,3.6871724 + parent: 2 + - type: HandheldLight + toggleActionEntity: 11221 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 11221 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 21128 components: - type: Transform @@ -223992,26 +229687,28 @@ entities: - type: Transform pos: 1.3809942,-2.2092319 parent: 2 - - uid: 2179 + - uid: 2133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.3851886,40.677032 + rot: -1.5707963267948966 rad + pos: 0.3054883,1.9629426 parent: 2 - - uid: 19263 + - uid: 2179 components: - type: Transform - pos: -4.61556,47.41538 + rot: 1.5707963267948966 rad + pos: 3.3851886,40.677032 parent: 2 - - uid: 21443 + - uid: 10000 components: - type: Transform - pos: -4.786478,-4.704101 + rot: 1.5707963267948966 rad + pos: -1.0851368,4.916068 parent: 2 - - uid: 21444 + - uid: 19263 components: - type: Transform - pos: -4.755228,-3.3447266 + pos: -4.61556,47.41538 parent: 2 - uid: 32291 components: @@ -224036,11 +229733,11 @@ entities: - type: Transform pos: -10.985476,41.795887 parent: 2 - - uid: 43104 + - uid: 43125 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.477753,-3.3314402 + pos: -18.524658,-4.433512 parent: 2 - uid: 48696 components: @@ -224079,6 +229776,11 @@ entities: - type: Transform pos: 22.732178,57.68683 parent: 45711 + - uid: 12543 + components: + - type: Transform + pos: 38.496704,4.526138 + parent: 2 - uid: 21447 components: - type: Transform @@ -224186,6 +229888,11 @@ entities: - type: Transform pos: -7.117131,16.510233 parent: 45711 + - uid: 51372 + components: + - type: Transform + pos: 39.49485,3.4811528 + parent: 2 - uid: 52221 components: - type: MetaData @@ -224456,15 +230163,16 @@ entities: parent: 2 - proto: LargeBeaker entities: - - uid: 20988 + - uid: 10004 components: - type: Transform - pos: -31.564892,42.92156 + rot: 0.000553772842977196 rad + pos: -27.161568,31.598589 parent: 2 - - uid: 21459 + - uid: 20988 components: - type: Transform - pos: -28.352417,25.71399 + pos: -31.564892,42.92156 parent: 2 - uid: 35948 components: @@ -224559,16 +230267,76 @@ entities: - uid: 35995 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 31413 + - type: UnpoweredFlashlight + toggleActionEntity: 31413 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - uid: 35997 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27684 + - type: UnpoweredFlashlight + toggleActionEntity: 27684 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: LeavesCannabisDried entities: @@ -224577,6 +230345,16 @@ entities: - type: Transform pos: -11.46758,65.60345 parent: 45711 +- proto: LedLightBulb + entities: + - uid: 47713 + components: + - type: Transform + parent: 47712 + - type: LightBulb + color: '#FF70B5FF' + - type: Physics + canCollide: False - proto: Left4ZedChemistryBottle entities: - uid: 50632 @@ -224584,6 +230362,14 @@ entities: - type: Transform pos: -31.338348,43.74135 parent: 2 +- proto: LeftArmHuman + entities: + - uid: 24873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.519075,-43.31038 + parent: 2 - proto: LeftFootSkeleton entities: - uid: 33901 @@ -224648,22 +230434,95 @@ entities: - type: Transform pos: -64.472786,1.6569042 parent: 2 + - uid: 54214 + components: + - type: Transform + pos: -65.50614,17.567162 + parent: 2 - proto: LibrarianPDA entities: - uid: 35993 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27682 + - type: UnpoweredFlashlight + toggleActionEntity: 27682 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - uid: 35994 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27688 + - type: UnpoweredFlashlight + toggleActionEntity: 27688 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage +- proto: LightBulbBroken + entities: + - uid: 26831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.70863,-40.746735 + parent: 2 - proto: Lighter entities: - uid: 21462 @@ -224798,6 +230657,30 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 11815 + components: + - type: Transform + parent: 11102 + - type: Physics + canCollide: False + - uid: 23195 + components: + - type: Transform + parent: 12913 + - type: Physics + canCollide: False + - uid: 53878 + components: + - type: Transform + parent: 53877 + - type: Physics + canCollide: False + - uid: 53880 + components: + - type: Transform + parent: 53879 + - type: Physics + canCollide: False - proto: LightTubeCrystalPink entities: - uid: 7963 @@ -224819,42 +230702,42 @@ entities: - uid: 784 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 785 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 788 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 844 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 964 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 1234 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage @@ -224872,6 +230755,106 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 18945 + components: + - type: Transform + pos: -43.631172,30.635303 + parent: 2 + - uid: 32264 + components: + - type: Transform + pos: -43.615547,30.635303 + parent: 2 + - uid: 32275 + components: + - type: Transform + pos: -43.615547,30.635303 + parent: 2 + - uid: 32279 + components: + - type: Transform + pos: -43.615547,30.635303 + parent: 2 + - uid: 32285 + components: + - type: Transform + pos: -43.615547,30.635303 + parent: 2 + - uid: 32287 + components: + - type: Transform + pos: -43.615547,30.635303 + parent: 2 + - uid: 32288 + components: + - type: Transform + pos: -43.615547,30.635303 + parent: 2 + - uid: 32296 + components: + - type: Transform + pos: -43.615547,30.635303 + parent: 2 + - uid: 32297 + components: + - type: Transform + pos: -43.615547,30.635303 + parent: 2 + - uid: 32308 + components: + - type: Transform + pos: -43.615547,30.635303 + parent: 2 + - uid: 53861 + components: + - type: Transform + pos: 6.381109,27.59476 + parent: 2 + - uid: 53862 + components: + - type: Transform + pos: 6.381109,27.59476 + parent: 2 + - uid: 53863 + components: + - type: Transform + pos: 6.381109,27.59476 + parent: 2 + - uid: 53864 + components: + - type: Transform + pos: 6.381109,27.59476 + parent: 2 + - uid: 53865 + components: + - type: Transform + pos: 6.381109,27.59476 + parent: 2 + - uid: 53866 + components: + - type: Transform + pos: 6.381109,27.59476 + parent: 2 + - uid: 53867 + components: + - type: Transform + pos: 6.381109,27.59476 + parent: 2 + - uid: 53868 + components: + - type: Transform + pos: 6.381109,27.59476 + parent: 2 + - uid: 53869 + components: + - type: Transform + pos: 6.381109,27.59476 + parent: 2 + - uid: 53870 + components: + - type: Transform + pos: 6.381109,27.59476 + parent: 2 - proto: LiquidCarbonDioxideCanister entities: - uid: 11756 @@ -224879,8 +230862,6 @@ entities: - type: Transform pos: 3.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: LiquidNitrogenCanister entities: - uid: 11799 @@ -224888,8 +230869,6 @@ entities: - type: Transform pos: 2.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: LiquidOxygenCanister entities: - uid: 11759 @@ -224897,22 +230876,16 @@ entities: - type: Transform pos: 3.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 32427 components: - type: Transform pos: 44.5,-55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 56046 components: - type: Transform pos: 17.5,46.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - proto: LockableButtonArmory entities: - uid: 51058 @@ -224938,6 +230911,15 @@ entities: 239: - Pressed: AutoClose - Pressed: Open + 51326: + - Pressed: Open + - Pressed: AutoClose + 51335: + - Pressed: Open + - Pressed: AutoClose + 51327: + - Pressed: Open + - Pressed: AutoClose - uid: 51059 components: - type: MetaData @@ -224981,7 +230963,7 @@ entities: - Pressed: Toggle - proto: LockableButtonBar entities: - - uid: 51029 + - uid: 18695 components: - type: MetaData desc: Эта кнопка активирует ставни на стойке бара. @@ -224992,13 +230974,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 51030: + 51556: + - Pressed: Toggle + 51557: - Pressed: Toggle - 51031: + 51598: - Pressed: Toggle - 51032: + 51602: - Pressed: Toggle - 51033: + 51546: + - Pressed: Toggle + 51603: - Pressed: Toggle - proto: LockableButtonCaptain entities: @@ -225684,65 +231670,45 @@ entities: - Pressed: Toggle - proto: LockableButtonCommand entities: - - uid: 17492 + - uid: 12262 components: - type: MetaData desc: Эта кнопка активирует гермозатворы и ставни на левом входе мостика. name: кнопка с замком "левые гермозатворы и ставни" - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,5.5 + pos: -2.5,6.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 7449: - - Pressed: Toggle - 14363: + 51759: - Pressed: Toggle 7450: - Pressed: Toggle - 51759: + 14363: + - Pressed: Toggle + 7449: - Pressed: Toggle 51758: - Pressed: Toggle - - uid: 21116 + - uid: 16442 components: - type: MetaData - desc: Эта кнопка активирует гермозатворы и ставни на правом входе мостика. - name: кнопка с замком "правые гермозатворы и ставни" + desc: Эта кнопка активирует ставни на окнах в комнате отдыха. + name: кнопка с замком "ставни" - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,5.5 + pos: -2.5,-3.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 9892: - - Pressed: Toggle - 26458: - - Pressed: Toggle - 32751: - - Pressed: Toggle - 51760: - - Pressed: Toggle - 51761: + 30183: - Pressed: Toggle - - uid: 24892 - components: - - type: MetaData - name: кнопка с замком "ставни" - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-7.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 24891: + 24879: - Pressed: Toggle 24889: - Pressed: Toggle - 24879: - - Pressed: Toggle - 30183: + 24891: - Pressed: Toggle - uid: 24944 components: @@ -225819,6 +231785,27 @@ entities: - Pressed: Toggle 32235: - Pressed: Toggle + - uid: 53060 + components: + - type: MetaData + desc: Эта кнопка активирует гермозатворы и ставни на правом входе мостика. + name: кнопка с замком "правые гермозатворы и ставни" + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.4999996,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 51760: + - Pressed: Toggle + 9892: + - Pressed: Toggle + 26458: + - Pressed: Toggle + 32751: + - Pressed: Toggle + 51761: + - Pressed: Toggle - proto: LockableButtonDetective entities: - uid: 1099 @@ -225869,22 +231856,26 @@ entities: - Pressed: Toggle - proto: LockableButtonHeadOfPersonnel entities: - - uid: 32238 + - uid: 10151 components: + - type: MetaData + desc: Эта кнопка активирует ставни на стойке вашего офиса. + name: кнопка с замком "ставни" - type: Transform - pos: -12.5,-2.5 + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 24880: + 22230: - Pressed: Toggle - 24493: + 51899: - Pressed: Toggle - 24886: + 1693: - Pressed: Toggle - 24882: + 51949: - Pressed: Toggle - 24888: + 18653: - Pressed: Toggle - proto: LockableButtonHeadOfSecurity entities: @@ -226666,8 +232657,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -226684,11 +232675,11 @@ entities: showEnts: False occludes: True ents: - - 43287 - - 43288 - - 43289 - - 43290 - 43292 + - 43290 + - 43289 + - 43288 + - 43287 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -226768,10 +232759,12 @@ entities: - type: Transform pos: -24.5,50.5 parent: 2 - - uid: 20193 +- proto: LockerBotanistLoot + entities: + - uid: 1631 components: - type: Transform - pos: 28.5,-51.5 + pos: 26.5,-53.5 parent: 2 - proto: LockerBrigmedic entities: @@ -227356,11 +233349,6 @@ entities: parent: 2 - proto: LockerFreezer entities: - - uid: 10554 - components: - - type: Transform - pos: -26.5,33.5 - parent: 2 - uid: 14100 components: - type: Transform @@ -227401,29 +233389,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 21520 - components: - - type: Transform - pos: 21.5,-47.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 20.73429 - - 78.00041 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 33712 components: - type: Transform @@ -227474,53 +233439,16 @@ entities: showEnts: False occludes: True ent: null - - uid: 35969 - components: - - type: Transform - pos: -32.5,30.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 234.9972 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 35970 - - 35971 - - 35972 - - 35973 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 36032 + - uid: 53369 components: - type: Transform - pos: -26.5,25.5 + pos: -29.5,33.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1465 + temperature: 293.14673 moles: - 1.7459903 - 6.568249 @@ -227540,9 +233468,9 @@ entities: showEnts: False occludes: True ents: - - 36033 - - 36034 - - 36035 + - 53370 + - 53371 + - 53372 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -227653,10 +233581,10 @@ entities: ent: null - proto: LockerHeadOfPersonnelFilled entities: - - uid: 36011 + - uid: 51905 components: - type: Transform - pos: -18.5,-8.5 + pos: -18.5,-9.5 parent: 2 - proto: LockerHeadOfSecurityFilled entities: @@ -228246,10 +234174,16 @@ entities: parent: 1778 - type: Physics canCollide: False - - uid: 43107 + - uid: 26994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.8318709,4.628944 + parent: 2 + - uid: 32123 components: - type: Transform - pos: -18.310204,-4.1393576 + pos: -18.310537,-5.6788697 parent: 2 - proto: Machete entities: @@ -228342,10 +234276,10 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 - - uid: 15747 + - uid: 12791 components: - type: Transform - pos: 62.5,44.5 + pos: -27.5,45.5 parent: 2 - uid: 16114 components: @@ -228353,16 +234287,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,46.5 parent: 2 - - uid: 19395 - components: - - type: Transform - pos: 59.5,43.5 - parent: 2 - - uid: 19807 - components: - - type: Transform - pos: 61.5,38.5 - parent: 2 - uid: 20891 components: - type: Transform @@ -228378,11 +234302,6 @@ entities: - type: Transform pos: -46.5,-69.5 parent: 2 - - uid: 21764 - components: - - type: Transform - pos: -27.5,45.5 - parent: 2 - uid: 22944 components: - type: Transform @@ -228462,11 +234381,6 @@ entities: - type: Transform pos: 32.5,-29.5 parent: 2 - - uid: 21581 - components: - - type: Transform - pos: 21.5,-52.5 - parent: 2 - uid: 21582 components: - type: Transform @@ -228690,149 +234604,163 @@ entities: parent: 2 - proto: MagazinePistol entities: - - uid: 21592 + - uid: 21596 components: - type: Transform - pos: -31.537575,-23.332996 + pos: -33.427547,-23.519728 parent: 2 - - uid: 21595 + - uid: 21597 components: - type: Transform - pos: -31.537575,-23.207996 + pos: -33.427547,-23.519728 parent: 2 - - uid: 21596 + - uid: 21605 components: - type: Transform - pos: -31.350079,-23.192371 + pos: -33.427547,-23.519728 parent: 2 - - uid: 21597 + - uid: 21607 components: - type: Transform - pos: -31.350079,-23.317371 + pos: -33.427547,-23.519728 parent: 2 -- proto: MagazinePistolCaselessRifle - entities: - - uid: 53008 + - uid: 48477 components: - type: Transform - pos: 1.5581055,82.42755 - parent: 45711 -- proto: MagazinePistolRubber - entities: - - uid: 14439 + pos: -32.521297,-23.519728 + parent: 2 + - uid: 48478 components: - type: Transform - pos: -33.199028,-23.279797 + pos: -32.521297,-23.519728 parent: 2 - - uid: 14440 + - uid: 48479 components: - type: Transform - pos: -33.199028,-23.279797 + pos: -32.521297,-23.519728 parent: 2 - - uid: 14441 + - uid: 48480 components: - type: Transform - pos: -33.511524,-23.654797 + pos: -32.521297,-23.519728 parent: 2 - - uid: 14578 + - uid: 48481 components: - type: Transform - pos: -33.511524,-23.654797 + pos: -31.521297,-23.519728 parent: 2 - - uid: 21601 + - uid: 48482 components: - type: Transform - pos: -33.718338,-23.204046 + pos: -31.521297,-23.519728 parent: 2 - - uid: 21602 + - uid: 48483 components: - type: Transform - pos: -33.483963,-23.204046 + pos: -31.521297,-23.519728 parent: 2 - - uid: 21605 + - uid: 48484 components: - type: Transform - pos: -33.483963,-23.297796 + pos: -31.521297,-23.519728 parent: 2 - - uid: 21607 +- proto: MagazinePistolCaselessRifle + entities: + - uid: 53008 components: - type: Transform - pos: -33.687088,-23.297796 - parent: 2 + pos: 1.5581055,82.42755 + parent: 45711 - proto: MagazinePistolSubMachineGun entities: - - uid: 9879 + - uid: 47039 components: - type: Transform - pos: -31.513645,-27.481964 + pos: -31.50184,-27.584347 parent: 2 - - uid: 14155 + - uid: 47040 components: - type: Transform - pos: -31.513645,-27.481964 + pos: -31.50184,-27.584347 parent: 2 - - uid: 53004 + - uid: 47812 components: - type: Transform - parent: 53002 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazinePistolSubMachineGunRubber - entities: - - uid: 11732 + pos: -31.50184,-27.584347 + parent: 2 + - uid: 47813 components: - type: Transform - pos: -31.482399,-27.49759 + pos: -31.50184,-27.584347 parent: 2 - - uid: 14160 + - uid: 48496 components: - type: Transform - pos: -31.482399,-27.49759 + pos: -31.50184,-27.584347 parent: 2 - - uid: 14339 + - uid: 48499 components: - type: Transform - pos: -31.482399,-27.49759 + pos: -31.50184,-27.584347 parent: 2 - - uid: 14340 + - uid: 48500 components: - type: Transform - pos: -31.482399,-27.49759 + pos: -31.50184,-27.584347 parent: 2 + - uid: 48501 + components: + - type: Transform + pos: -31.50184,-27.584347 + parent: 2 + - uid: 53004 + components: + - type: Transform + parent: 53002 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazineRifle entities: - - uid: 21621 + - uid: 14367 components: - type: Transform - pos: -33.42728,-27.394236 + pos: -33.42738,-27.584764 parent: 2 - - uid: 21622 + - uid: 14440 components: - type: Transform - pos: -33.661655,-27.394236 + pos: -33.42738,-27.584764 parent: 2 -- proto: MagazineRifleRubber - entities: - - uid: 14362 + - uid: 14441 components: - type: Transform - pos: -33.62547,-27.660402 + pos: -33.42738,-27.584764 parent: 2 - - uid: 14364 + - uid: 14578 components: - type: Transform - pos: -33.391094,-27.644777 + pos: -33.42738,-27.584764 parent: 2 - - uid: 21623 + - uid: 15747 components: - type: Transform - pos: -33.64603,-27.612986 + pos: -33.42738,-27.584764 parent: 2 - - uid: 21625 + - uid: 22454 + components: + - type: Transform + pos: -33.42738,-27.60039 + parent: 2 + - uid: 22497 + components: + - type: Transform + pos: -33.42738,-27.584764 + parent: 2 + - uid: 26662 components: - type: Transform - pos: -33.411655,-27.59736 + pos: -33.42738,-27.584764 parent: 2 - proto: MagicDiceBag entities: @@ -228841,11 +234769,6 @@ entities: - type: Transform pos: -6.1787977,32.265247 parent: 2 - - uid: 21627 - components: - - type: Transform - pos: -19.956059,29.51243 - parent: 2 - proto: MailingUnit entities: - uid: 21628 @@ -228890,10 +234813,10 @@ entities: parent: 2 - type: MailingUnit tag: Bridge - - uid: 43138 + - uid: 43115 components: - type: Transform - pos: -16.5,-5.5 + pos: -16.5,-6.5 parent: 2 - type: MailingUnit tag: HeadOfPersonnel @@ -229152,6 +235075,11 @@ entities: - type: Transform pos: 5.5,12.5 parent: 33049 + - uid: 35742 + components: + - type: Transform + pos: -45.5,-31.5 + parent: 2 - uid: 41287 components: - type: Transform @@ -229192,10 +235120,10 @@ entities: - type: Transform pos: 26.5,-11.5 parent: 2 - - uid: 47713 + - uid: 56130 components: - type: Transform - pos: -41.5,-27.5 + pos: -41.5,-28.5 parent: 2 - proto: MaintenanceWeaponSpawner entities: @@ -229235,11 +235163,6 @@ entities: - type: Transform pos: 34.5,-10.5 parent: 2 - - uid: 21684 - components: - - type: Transform - pos: -45.5,-24.5 - parent: 2 - uid: 21685 components: - type: Transform @@ -229276,6 +235199,11 @@ entities: - type: Transform pos: 34.5,55.5 parent: 45711 + - uid: 56127 + components: + - type: Transform + pos: -46.5,-24.5 + parent: 2 - proto: MakeshiftShield entities: - uid: 16206 @@ -229350,6 +235278,13 @@ entities: rot: 1.5707963267948966 rad pos: 45.573868,-54.66159 parent: 2 +- proto: MaterialCardboard1 + entities: + - uid: 47796 + components: + - type: Transform + pos: 26.513271,4.6211166 + parent: 2 - proto: MaterialCloth entities: - uid: 11809 @@ -229360,10 +235295,19 @@ entities: - uid: 21271 components: - type: Transform - pos: -18.528915,-7.5213737 + rot: 0.000553772842977196 rad + pos: -18.511194,-8.23597 parent: 2 - proto: MaterialCloth1 entities: + - uid: 22872 + components: + - type: MetaData + desc: Мягкое хлопковое полотенце. + name: полотенце + - type: Transform + pos: -13.525872,39.35518 + parent: 2 - uid: 33916 components: - type: MetaData @@ -229451,7 +235395,8 @@ entities: - uid: 51051 components: - type: Transform - pos: -18.513287,-7.4744987 + rot: 0.000553772842977196 rad + pos: -18.542444,-8.470345 parent: 2 - proto: MaterialHideBear entities: @@ -229760,32 +235705,152 @@ entities: - uid: 35986 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27685 + - type: UnpoweredFlashlight + toggleActionEntity: 27685 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - uid: 35987 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 29069 + - type: UnpoweredFlashlight + toggleActionEntity: 29069 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: MedicalPDA entities: - uid: 35989 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27687 + - type: UnpoweredFlashlight + toggleActionEntity: 27687 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - uid: 35990 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 32238 + - type: UnpoweredFlashlight + toggleActionEntity: 32238 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: MedicalScanner entities: @@ -230151,14 +236216,6 @@ entities: parent: 45711 - proto: Memorial entities: - - uid: 21750 - components: - - type: MetaData - desc: Увековечивает честь погибших, кто первые исследовал глубины космического пространства. - name: памятник первооткрывателям фронтира - - type: Transform - pos: -83.5,-4.5 - parent: 2 - uid: 35138 components: - type: Transform @@ -230818,10 +236875,8 @@ entities: referenceDistance: 1 rolloffFactor: 1 maxDistance: 20 - busName: Master pitch: 1 volume: 0 - attenuation: LinearDistanceClamped path: /Audio/Machines/beep.ogg devices: 'UID: 60665': 15125 @@ -230904,16 +236959,76 @@ entities: - uid: 35976 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 31414 + - type: UnpoweredFlashlight + toggleActionEntity: 31414 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - uid: 35980 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 31988 + - type: UnpoweredFlashlight + toggleActionEntity: 31988 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: NettleSeeds entities: @@ -230948,6 +237063,16 @@ entities: - type: Transform pos: 25.850248,-25.351418 parent: 2 + - uid: 28377 + components: + - type: Transform + pos: -41.506054,-0.14039415 + parent: 2 + - uid: 28430 + components: + - type: Transform + pos: -41.49043,1.8596056 + parent: 2 - proto: NitrogenCanister entities: - uid: 11762 @@ -230955,155 +237080,111 @@ entities: - type: Transform pos: 8.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11795 components: - type: Transform pos: 9.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 18318 components: - type: Transform pos: 56.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 20494 components: - type: Transform pos: 14.5,58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21802 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21803 components: - type: Transform pos: 18.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21804 components: - type: Transform pos: -41.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21806 components: - type: Transform pos: 69.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21808 components: - type: Transform pos: 6.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21809 components: - type: Transform pos: 23.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21811 components: - type: Transform pos: 17.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21815 components: - type: Transform pos: 10.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21816 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21818 components: - type: Transform pos: -47.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21819 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 22666 components: - type: Transform pos: 64.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28473 components: - type: Transform pos: 40.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 36167 components: - type: Transform pos: -35.5,-72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 36327 components: - type: Transform pos: -33.5,-86.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 37683 components: - type: Transform pos: 6.5,-0.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 - uid: 43129 components: - type: Transform pos: 44.5,73.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 48765 components: - type: Transform pos: -15.5,38.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - proto: NitrogenTankFilled entities: - uid: 901 @@ -231195,15 +237276,11 @@ entities: - type: Transform pos: -40.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 31982 components: - type: Transform pos: 4.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NitrousOxideTank entities: - uid: 21831 @@ -231548,6 +237625,11 @@ entities: parent: 2 - proto: OrganHumanHeart entities: + - uid: 1074 + components: + - type: Transform + pos: 23.387087,-43.31865 + parent: 2 - uid: 21849 components: - type: Transform @@ -231569,225 +237651,161 @@ entities: - type: Transform pos: 10.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 1221 components: - type: Transform pos: 9.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6186 components: - type: Transform pos: 56.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 8681 components: - type: Transform pos: -40.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11597 components: - type: Transform pos: 18.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11761 components: - type: Transform pos: 8.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 20495 components: - type: Transform pos: 13.5,59.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21851 components: - type: Transform pos: -38.5,-72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21852 components: - type: Transform pos: 11.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21853 components: - type: Transform pos: -33.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21855 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21856 components: - type: Transform pos: 22.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21858 components: - type: Transform pos: 16.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21863 components: - type: Transform pos: 18.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21866 components: - type: Transform pos: -40.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21867 components: - type: Transform pos: -16.5,-59.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21869 components: - type: Transform pos: -67.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21870 components: - type: Transform pos: -87.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21871 components: - type: Transform pos: 70.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21872 components: - type: Transform pos: -48.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 26294 components: - type: Transform pos: 26.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 33018 components: - type: Transform pos: 67.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 33932 components: - type: Transform pos: -8.5,-18.5 parent: 33049 - - type: AtmosDevice - joinedGrid: 33049 - uid: 33933 components: - type: Transform pos: -7.5,-18.5 parent: 33049 - - type: AtmosDevice - joinedGrid: 33049 - uid: 33934 components: - type: Transform pos: 1.5,-19.5 parent: 33049 - - type: AtmosDevice - joinedGrid: 33049 - uid: 36328 components: - type: Transform pos: -31.5,-86.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 37691 components: - type: Transform pos: 10.5,17.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 - uid: 37692 components: - type: Transform pos: 7.5,-0.5 parent: 36861 - - type: AtmosDevice - joinedGrid: 36861 - uid: 41246 components: - type: Transform pos: 43.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 43128 components: - type: Transform pos: 44.5,75.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 47642 components: - type: Transform pos: 65.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 48777 components: - type: Transform pos: -17.5,38.5 parent: 45711 - - type: AtmosDevice - joinedGrid: 45711 - proto: OxygenTankFilled entities: - uid: 207 @@ -231957,12 +237975,6 @@ entities: - type: Transform pos: 11.374706,-57.413807 parent: 2 - - uid: 1657 - components: - - type: Transform - parent: 1656 - - type: Physics - canCollide: False - uid: 1679 components: - type: Transform @@ -232008,7 +238020,7 @@ entities: - uid: 2246 components: - type: Transform - pos: -36.496227,-19.388264 + pos: -36.513985,-19.357878 parent: 2 - type: Paper stampState: paper_stamp-centcom @@ -232032,17 +238044,11 @@ entities: --------------------------------------[bold]Амуниция[/bold]------------------------------------- - [bullet] Магазин .35 авто пистолетный (ЛЕТ) - 4 штуки; + [bullet] Магазин .35 авто пистолетный (ЛЕТ) - 12 штук; - [bullet] Магазин .35 авто пистолетный (РЕЗ) - 8 штук; + [bullet] Магазин .35 авто ПП (ЛЕТ) - 8 штук; - [bullet] Магазин .35 авто ПП (ЛЕТ) - 2 штуки; - - [bullet] Магазин .35 авто ПП (РЕЗ) - 4 штуки; - - [bullet] Магазин .20 винтовочные (ЛЕТ) - 2 штуки; - - [bullet] Магазин .20 винтовочные (РЕЗ) - 4 штуки; + [bullet] Магазин .20 винтовочные (ЛЕТ) - 8 штуки; [bullet] Ящик патронов .20 винтовочные (ЛЕТ)- 1 штука; @@ -232060,57 +238066,69 @@ entities: ----------------------------------------[bold]Оружие[/bold]---------------------------------------- - [bullet] Дубинка-шокер - 3 штуки; + [bullet] Дубинка-шокер - 4 штуки; - [bullet] Дубинка летального действия - 3 штуки; + [bullet] Дубинка летального действия - 4 штуки; - [bullet] Станнер - 3 штуки; + [bullet] Станнер - 5 штук; - [bullet] Дробовик "Каммерер" - 3 штуки; + [bullet] Пистолет "МК 58" с обоймой внутри - 6 штук; - [bullet] Двуствольное ружьё - 3 штуки; + [bullet] Пистолет-пулемёт "Дрозд" - 2 штуки; - [bullet] Пистолет "МК 58" с обоймой внутри - 4 штуки; + [bullet] Двуствольное ружьё - 3 штуки; - [bullet] Штурмовая винтовка "Лектер" - 2 штуки; + [bullet] Дробовик "Каммерер" - 3 штуки; [bullet] Автоматический дробовик "Силовик" - 2 штуки; - [bullet] Лазерный бластер - 3 штуки; + [bullet] Штурмовая винтовка "Лектер" - 2 штуки; - [bullet] Лазерная винтовка - 1 штука; + [bullet] Лазерный бластер - 3 штуки; - [bullet] Лазерная пушка - 1 штука; + [bullet] Лазерная пушка - 2 штуки; [bullet] ПКСВ "Христов" - 1 штука; -------------------[bold]Обмундирование и снаряжение[/bold]------------------- - [bullet] Предупредительный конус - 10 штук; + [bullet] РПС Охраны - 6 штук; + + [bullet] Бронижелет типа I - 4 штуки; + + [bullet] Бронижелет типа III - 4 штуки; + + [bullet] Отражающий бронежилет - 3 штуки; + + [bullet] Шлем - 6 штук; + + [bullet] Противоударная броня - 4 штуки; + + [bullet] Противоударный шлем - 4 штуки; [bullet] Скафандр СБ - 4 штуки; [bullet] Противогаз СБ - 4 штуки; - [bullet] Тяжёлый бронекостюм - 2 штуки; + [bullet] Джетбак СБ - 2 штуки; - [bullet] Противоударныя броня - 4 штуки; + [bullet] Ботинки спецназа - 2 штуки; - [bullet] Противоударный шлем - 6 штук; + [bullet] Тяжёлый бронекостюм - 2 штуки; - [bullet] Противоударный щит - 4 штуки; + [bullet] Противогаз спецназа - 2 штуки; - [bullet] Противопульный щит - 2 штуки; + [bullet] Шлем спецназа - 2 штуки; - [bullet] Противолазерный щит - 2 штуки; + [bullet] Боевые перчатки - 2 штуки; - [bullet] Отражающий бронежилет - 2 штуки; + [bullet] Противоударный щит - 4 штуки; - [bullet] Бронижелет типа III - 3 штуки; + [bullet] Противопульный щит - 3 штуки; - [bullet] Бронижелет типа I - 3 штуки; + [bullet] Противолазерный щит - 3 штуки; - [bullet] Шлем - 6 штук; + [bullet] Предупредительный конус - 10 штук; [bullet] Барьер стационарный - 8 штук; @@ -232127,6 +238145,47 @@ entities: ==================================================== Подпись:[italic] Syx[/italic] [italic]Место для печатей[/italic] + - uid: 4915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.596336,4.2451744 + parent: 2 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate + content: >- + [color=#B50F1D] ███░██████░███[/color] + + [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] + + [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] + + [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]NTSY Avrite ПД-СИН[/bold] + + [color=#B50F1D] ███░██████░███[/color] + + ============================================= + ОТЧЁТ О ВЫПОЛНЕНИИ ЦЕЛЕЙ + ============================================= + + [bold]Время от начала смены и дата:[/bold] [italic]01:54:22 29.03.3024[/italic] + + [bold]Позывной агента:[/bold] [italic]Агент Лексингтон[/italic] + + + Я, [color=red][bold]Агент Лексингтон[/bold][/color], успешно выполнил поставленные передо мной руководством Синдиката цели. Прошу принять отчёт о выполнении. + + [bold]Отчёт:[/bold] + + В ходе операции на объекте [color=blue][bold]NanoTrasen[/bold][/color] была установлена слежка за целью, в лице [color=#d4a03f][bold]Квартирмейстера[/color] [color=#a31c1c]Д.Виеш[/color][/bold]. Искомое устройство находится при ней. Передаю дело по краже в руки другого Агента Синдиката. + + В ходе операции пришлось устранить невиновного грузчика, дабы получить доступы и форму. Тело было утилизировано в соответствии с методичкой организации. + + ============================================= + [italic]Место для печатей[/italic] - uid: 5517 components: - type: Transform @@ -232187,6 +238246,145 @@ entities: - type: Transform pos: 11.437207,-57.460682 parent: 2 + - uid: 11284 + components: + - type: MetaData + name: Опись арсенала от ЦК + - type: Transform + parent: 1899 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: > + [color=#C41E3A]███░███░░░░██░░░░[/color] + + [color=#C41E3A]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#C41E3A]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#C41E3A]░░░░██░░██░██░██░[/color] [bold] ЦК - СБ[/bold] + + [color=#C41E3A]░░░░██░░░████░███[/color] + + ============================================= + [bold]ОПИСЬ СОДЕРЖИМОГО АРСЕНАЛА[/bold] + ============================================= + + --------------------------------------[bold]Амуниция[/bold]------------------------------------- + + [bullet] Магазин .35 авто пистолетный (ЛЕТ) - 12 штук; + + [bullet] Магазин .35 авто ПП (ЛЕТ) - 8 штук; + + [bullet] Магазин .20 винтовочные (ЛЕТ) - 8 штуки; + + [bullet] Ящик патронов .20 винтовочные (ЛЕТ)- 1 штука; + + [bullet] Коробка ружейных патронов (ЛЕТ) - 3 штуки; + + [bullet] Коробка ружейных патронов (ТРАВМ) - 3 штуки; + + [bullet] Коробка ружейных патронов (ТРАНКВ) - 2 штуки; + + [bullet] Коробка ружейных патронов (ПУЛИ) - 2 штуки; + + [bullet] Коробка ружейных патронов (ЗАЖИГ) - 1 штука. + + [bullet] Коробка крупнокалиберных патронов .60 - 1 штука. + + ----------------------------------------[bold]Оружие[/bold]---------------------------------------- + + [bullet] Дубинка-шокер - 4 штуки; + + [bullet] Дубинка летального действия - 4 штуки; + + [bullet] Станнер - 5 штук; + + [bullet] Пистолет "МК 58" с обоймой внутри - 6 штук; + + [bullet] Пистолет-пулемёт "Дрозд" - 2 штуки; + + [bullet] Двуствольное ружьё - 3 штуки; + + [bullet] Дробовик "Каммерер" - 3 штуки; + + [bullet] Автоматический дробовик "Силовик" - 2 штуки; + + [bullet] Штурмовая винтовка "Лектер" - 2 штуки; + + [bullet] Лазерный бластер - 3 штуки; + + [bullet] Лазерная пушка - 2 штуки; + + [bullet] ПКСВ "Христов" - 1 штука; + + -------------------[bold]Обмундирование и снаряжение[/bold]------------------- + + [bullet] РПС Охраны - 6 штук; + + [bullet] Бронижелет типа I - 4 штуки; + + [bullet] Бронижелет типа III - 4 штуки; + + [bullet] Отражающий бронежилет - 3 штуки; + + [bullet] Шлем - 6 штук; + + [bullet] Противоударная броня - 4 штуки; + + [bullet] Противоударный шлем - 4 штуки; + + [bullet] Скафандр СБ - 4 штуки; + + [bullet] Противогаз СБ - 4 штуки; + + [bullet] Джетбак СБ - 2 штуки; + + [bullet] Ботинки спецназа - 2 штуки; + + [bullet] Тяжёлый бронекостюм - 2 штуки; + + [bullet] Противогаз спецназа - 2 штуки; + + [bullet] Шлем спецназа - 2 штуки; + + [bullet] Боевые перчатки - 2 штуки; + + [bullet] Противоударный щит - 4 штуки; + + [bullet] Противопульный щит - 3 штуки; + + [bullet] Противолазерный щит - 3 штуки; + + [bullet] Предупредительный конус - 10 штук; + + [bullet] Барьер стационарный - 8 штук; + + [bullet] Стационарная вспышка - 4 штуки; + + [bullet] Костюм L3 полный - 4 штуки; + + [bullet] Костюм L4 полный - 2 штуки; + + [bullet] Набор инструментов - 3 штуки; + + --------------------------------------------------------------------------------------------- + + ==================================================== + Подпись:[italic] Syx[/italic] + [italic]Место для печатей[/italic] + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12386 + components: + - type: Transform + pos: -31.205236,30.579105 + parent: 2 + - type: Paper + content: ИНВАЛИДЫ, ГДЕ МОИ ЯЙЦА?! - uid: 14421 components: - type: Transform @@ -232202,8 +238400,8 @@ entities: - uid: 15493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.584479,-4.1690207 + rot: 0.9604848614398585 rad + pos: -18.394508,-5.0011687 parent: 2 - type: Paper stampState: paper_stamp-deny @@ -232236,6 +238434,70 @@ entities: parent: 1778 - type: Physics canCollide: False + - uid: 19473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.399658,-5.542887 + parent: 2 + - uid: 19556 + components: + - type: Transform + parent: 44845 + - type: Paper + content: >2- + + [head=2]Приглашаем на экскурсию по кухне[/head] + + Приходите на кухню в тех помещениях и да узрейте все прелести готовки + + + + p.s. На экскурсии нужны исключительно представители расы людей + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 19633 - uid: 19699 components: - type: Transform @@ -232456,11 +238718,6 @@ entities: Вы потеряли больше половины сотрудников СБ на Экспедиции!? Вот как?! И вы думаете, я этому поверю, ГСБ? Вот она правда: вы допустили потерю лучшего отряда на всей галактике. Стоимость их жизней будет вычтена из вашего жалованья, и вы будете служить, пока вам не исполнится пятьсот десять лет, потому что вам понадобится именно столько лет, чтобы оплатить жизни Отряда Сотрудников СБ, который вы потеряли! Доложите об этом Капитану, получите новый отряд, а потом вернитесь и доложите мне, ГСБ! Свободны! Ждём ответа по консоли! - - uid: 21945 - components: - - type: Transform - pos: -18.839748,28.642263 - parent: 2 - uid: 21965 components: - type: Transform @@ -232637,23 +238894,6 @@ entities: stampedName: stamp-component-stamped-name-cmo content: > 9 билет - - uid: 21997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.524773,29.333263 - parent: 2 - - uid: 21998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.446651,29.239513 - parent: 2 - - uid: 21999 - components: - - type: Transform - pos: -18.730377,28.595388 - parent: 2 - uid: 22000 components: - type: MetaData @@ -232783,6 +239023,12 @@ entities: Мимо гидропоники шёл АВД. АВД посмотрел на огурцы, огурцы посмотрели на АВД, и АВД понял, что мутаген вещь очень интересная. + - uid: 24880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.540285,-5.4647627 + parent: 2 - uid: 25198 components: - type: Transform @@ -232923,6 +239169,55 @@ entities: - type: Transform pos: 7.475094,30.510248 parent: 2 + - uid: 32522 + components: + - type: Transform + pos: 25.808218,-46.795475 + parent: 2 + - type: Paper + content: ' [head=3] Хах ты попался считай это ваш последний текст который вы прочитаете, надеюсь из вас получатся хорошие котлеты..... [/head]' + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 32523 - uid: 35546 components: - type: Transform @@ -233055,24 +239350,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 43036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.421944,-4.5581083 - parent: 2 - - uid: 43050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.369862,-4.7456083 - parent: 2 - - uid: 43098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.626146,-4.5092983 - parent: 2 - uid: 43941 components: - type: Transform @@ -233367,7 +239644,7 @@ entities: pos: -12.4731655,-4.5057964 parent: 45711 - type: Paper - content: 'Сегодня нам поступил приказ от целого аж командования, а то мы тут сидим и прохлаждаем свои задницы на этой базе. Максимум снабжаем наших, тестируем примочки и рейдим караванны. Ску-ко-та.. Ещё и шифр дурацкий там.. Ви.. Ви-же.. Виженера?.. Ай, в пизду.. Пойду выпью пива. ' + content: 'Сегодня нам поступил приказ от целого аж командования, а то мы тут сидим и прохлаждаем свои задницы на этой базе. Максимум снабжаем наших, тестируем примочки и рейдим караванны. Ску-ко-та... Ещё и шифр дурацкий там.. Ви.. Ви-же.. Виженера?.. Ай, в пизду.. Пойду выпью пива. ' - uid: 48784 components: - type: Transform @@ -233626,6 +239903,104 @@ entities: [italic] Еврею от Инструктора ЛГБТ[/italic] Слушай, убедись пожалуйста в проводке, а так-же и в трубах. А то нынче эта часть базы самая проблемная, блятские ебланы со своими экспериментами. Скоро и эти насосы не выдержат и взлетим к хуям собачьим. + - uid: 53057 + components: + - type: MetaData + desc: Лист бумаги с небольшими следами краски + name: предупреждение об неожиданности + - type: Transform + rot: 0.000553772842977196 rad + pos: -14.468124,1.4385738 + parent: 2 + - type: Paper + stampState: paper_stamp-cap + stampedBy: + - stampedColor: '#BB3232FF' + stampedName: Администрация станции + content: >2 + + [color=red] [head=1] Осторожно![/head] [/color] + + + [color=red] [head=1] Окрашено![/head] [/color] + + + + + + + + + + + + + + + + + + + + + С уважением строители станции. + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 53058 + - uid: 53062 + components: + - type: Transform + rot: 0.000553772842977196 rad + pos: -26.483917,46.648815 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >- + Поздравляем! Ваша гидропоника была оборудована новейшей системой доставки продуктов прямо на кухню! Просто упакуйте их в данный утилизационный блок и нажмите рычаг. Готово! Все овощи и фрукты будут отправлены прямо на стойку к поварам. + + Убедительная просьба, не путайте утилизационные блоки, во избежание бессмысленной пропажи продуктов! - uid: 53542 components: - type: Transform @@ -233738,13 +240113,6 @@ entities: [bullet]В случае, если ОГ не справится с устраненичем ЧС - территория объекта №517 будет заблокирована до прихода "MI13".[/bold] -- proto: PaperBin - entities: - - uid: 22002 - components: - - type: Transform - pos: -2.4973056,6.023276 - parent: 2 - proto: PaperBin10 entities: - uid: 723 @@ -233757,6 +240125,11 @@ entities: - type: Transform pos: 15.5,17.5 parent: 2 + - uid: 19363 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 - uid: 22003 components: - type: Transform @@ -233827,6 +240200,17 @@ entities: - type: Transform pos: -35.5,-21.5 parent: 2 + - uid: 25647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - uid: 25844 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 - uid: 26618 components: - type: Transform @@ -233970,13 +240354,6 @@ entities: - type: Transform pos: 59.628136,-12.270894 parent: 2 -- proto: ParchisBoard - entities: - - uid: 22019 - components: - - type: Transform - pos: -19.528687,28.981012 - parent: 2 - proto: ParticleAcceleratorControlBoxUnfinished entities: - uid: 22401 @@ -234008,11 +240385,34 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 21620 + - uid: 48401 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 48402 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,37.5 + pos: 61.5,38.5 + parent: 2 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 48400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,38.5 + parent: 2 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 18826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,40.5 parent: 2 - proto: PartRodMetal entities: @@ -234130,11 +240530,22 @@ entities: rot: 1.5707963267948966 rad pos: -44.381477,-13.865186 parent: 2 + - uid: 4874 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: 40.67289,4.004446 + parent: 2 - uid: 5551 components: - type: Transform pos: -33.514355,-4.449411 parent: 2 + - uid: 9999 + components: + - type: Transform + pos: -13.65164,1.483705 + parent: 2 - uid: 11046 components: - type: Transform @@ -234145,6 +240556,11 @@ entities: - type: Transform pos: -42.38953,-19.93092 parent: 2 + - uid: 14173 + components: + - type: Transform + pos: -13.52664,1.53058 + parent: 2 - uid: 15464 components: - type: Transform @@ -234161,6 +240577,11 @@ entities: - type: Transform pos: 8.517543,50.247486 parent: 2 + - uid: 21443 + components: + - type: Transform + pos: -13.58914,1.6868298 + parent: 2 - uid: 22032 components: - type: Transform @@ -234214,23 +240635,12 @@ entities: rot: 3.141592653589793 rad pos: 10.4148,35.40581 parent: 2 - - uid: 22055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.223978,-4.735351 - parent: 2 - uid: 22056 components: - type: Transform rot: 3.141592653589793 rad pos: -0.024095774,-38.446632 parent: 2 - - uid: 22059 - components: - - type: Transform - pos: -5.083353,-5.532226 - parent: 2 - uid: 22060 components: - type: Transform @@ -234243,23 +240653,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.423821,-39.509872 parent: 2 - - uid: 22062 - components: - - type: Transform - pos: -5.723978,-5.485351 - parent: 2 - - uid: 22066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.292317,-3.3309913 - parent: 2 - - uid: 22067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.052103,-3.3291016 - parent: 2 - uid: 22068 components: - type: Transform @@ -234276,11 +240669,6 @@ entities: - type: Transform pos: 17.310741,27.49849 parent: 2 - - uid: 22073 - components: - - type: Transform - pos: -20.24744,28.684135 - parent: 2 - uid: 22074 components: - type: Transform @@ -234402,12 +240790,19 @@ entities: rot: 1.5707963267948966 rad pos: 2.2590332,74.58588 parent: 45711 + - uid: 55519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.591824,1.6111109 + parent: 2 - proto: PersonalAI entities: - uid: 22078 components: - type: Transform - pos: 1.564348,6.744096 + rot: 0.000553772842977196 rad + pos: 1.5358621,7.4646144 parent: 2 - uid: 35566 components: @@ -234463,27 +240858,14 @@ entities: parent: 2 - proto: PianoInstrument entities: - - uid: 22084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-36.5 - parent: 2 - - uid: 29901 + - uid: 22819 components: - type: Transform - rot: 1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -13.5,27.5 parent: 2 - proto: Pickaxe entities: - - uid: 11824 - components: - - type: Transform - parent: 11822 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 33935 components: - type: Transform @@ -234760,36 +241142,26 @@ entities: - type: Transform pos: 56.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9626 components: - type: Transform pos: 17.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 23075 components: - type: Transform pos: 30.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 24855 components: - type: Transform pos: 84.5,58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 33016 components: - type: Transform pos: 68.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 157 @@ -235682,6 +242054,13 @@ entities: rot: -1.5707963267948966 rad pos: 67.42764,-50.463238 parent: 2 +- proto: PlushieArachind + entities: + - uid: 19165 + components: + - type: Transform + pos: -2.501378,7.5262265 + parent: 2 - proto: PlushieAtmosian entities: - uid: 30114 @@ -235692,6 +242071,14 @@ entities: - type: Transform pos: 30.50338,17.558052 parent: 2 + - uid: 32531 + components: + - type: MetaData + desc: Мягкая игрушка человека в скафандре атмосферного техника, думаю он только учится но глаза наполнени решимостью. + name: kvant8 + - type: Transform + pos: 16.490244,53.576572 + parent: 2 - uid: 37702 components: - type: Transform @@ -235731,11 +242118,6 @@ entities: parent: 2 - proto: PlushieDiona entities: - - uid: 22131 - components: - - type: Transform - pos: -81.370415,-5.2366066 - parent: 2 - uid: 35580 components: - type: MetaData @@ -235744,6 +242126,11 @@ entities: - type: Transform pos: -90.238205,-1.5701213 parent: 2 + - uid: 56054 + components: + - type: Transform + pos: -85.293205,-5.9208126 + parent: 2 - proto: PlushieHampter entities: - uid: 20262 @@ -235771,6 +242158,16 @@ entities: - type: Transform pos: 50.489025,69.4441 parent: 2 + - uid: 43440 + components: + - type: Transform + pos: -88.49397,-10.682213 + parent: 2 + - uid: 51889 + components: + - type: Transform + pos: -56.684208,3.9686882 + parent: 2 - proto: PlushieHuman entities: - uid: 18158 @@ -235827,7 +242224,8 @@ entities: - type: MetaData desc: Инструкторы покинули нас... "F" - type: Transform - pos: -46.679516,-22.279867 + rot: 0.000553772842977196 rad + pos: -47.266926,-22.786392 parent: 2 - uid: 22136 components: @@ -235843,7 +242241,7 @@ entities: desc: Просто милый красавчик name: плюшевый Боули - type: Transform - pos: -39.616802,-4.478723 + pos: -39.522186,-4.475595 parent: 2 - uid: 22138 components: @@ -235880,6 +242278,19 @@ entities: - type: Transform pos: -12.552542,-33.32144 parent: 2 + - uid: 32300 + components: + - type: MetaData + desc: Йааааррр! + name: Yufim + - type: Transform + pos: 36.52676,-36.463123 + parent: 2 + - uid: 53888 + components: + - type: Transform + pos: -89.54448,-11.1083765 + parent: 2 - proto: PlushieMoth entities: - uid: 25961 @@ -235973,8 +242384,7 @@ entities: - type: MetaData desc: 'Висит бирка гласящие: "Сделан на заказ Колониальных морпехов для повышения боевой эффективности за счёт запоминания своего злейшего врага." Он выглядит мило.' - type: Transform - rot: -1.5707963267948966 rad - pos: -21.485374,54.78877 + pos: -21.494644,54.556293 parent: 2 - proto: PlushieSharkBlue entities: @@ -236185,6 +242595,11 @@ entities: parent: 2 - proto: PortableGeneratorJrPacman entities: + - uid: 10605 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 - uid: 18535 components: - type: Transform @@ -236195,10 +242610,10 @@ entities: - type: Transform pos: 45.5,18.5 parent: 2 - - uid: 35742 + - uid: 32010 components: - type: Transform - pos: -45.5,-22.5 + pos: -46.5,-22.5 parent: 2 - uid: 35747 components: @@ -236220,11 +242635,6 @@ entities: - type: Transform pos: 62.5,-50.5 parent: 2 - - uid: 50640 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 2 - uid: 50641 components: - type: Transform @@ -236414,6 +242824,11 @@ entities: parent: 45711 - proto: PosterContrabandEAT entities: + - uid: 23350 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 - uid: 33947 components: - type: Transform @@ -236484,11 +242899,6 @@ entities: parent: 2 - proto: PosterContrabandKudzu entities: - - uid: 22198 - components: - - type: Transform - pos: 29.5,5.5 - parent: 2 - uid: 22199 components: - type: Transform @@ -236615,14 +243025,6 @@ entities: - type: Transform pos: 1.5,-74.5 parent: 2 -- proto: PosterContrabandRobustSoftdrinks - entities: - - uid: 22210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 2 - proto: PosterContrabandSpaceUp entities: - uid: 22211 @@ -236646,6 +243048,12 @@ entities: parent: 45711 - proto: PosterContrabandSyndicateRecruitment entities: + - uid: 6888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,5.5 + parent: 2 - uid: 35863 components: - type: Transform @@ -236673,14 +243081,6 @@ entities: - type: Transform pos: 68.5,-27.5 parent: 2 -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 22220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,3.5 - parent: 2 - proto: PosterLegitDickGumshue entities: - uid: 22221 @@ -236702,6 +243102,13 @@ entities: - type: Transform pos: 37.5,-5.5 parent: 2 +- proto: PosterLegitFruitBowl + entities: + - uid: 22108 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 - proto: PosterLegitGetYourLEGS entities: - uid: 22224 @@ -236757,25 +243164,17 @@ entities: - type: Transform pos: -13.5,-18.5 parent: 2 -- proto: PosterLegitIan - entities: - - uid: 22230 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 2 - proto: PosterLegitLoveIan entities: - - uid: 22231 + - uid: 22232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-6.5 + pos: -31.5,-66.5 parent: 2 - - uid: 22232 + - uid: 50640 components: - type: Transform - pos: -31.5,-66.5 + pos: -16.5,-7.5 parent: 2 - proto: PosterLegitNanomichiAd entities: @@ -236814,15 +243213,15 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-35.5 parent: 2 - - uid: 22237 + - uid: 51019 components: - type: Transform - pos: -44.5,4.5 + pos: 48.5,-11.5 parent: 2 - - uid: 51019 + - uid: 53871 components: - type: Transform - pos: 48.5,-11.5 + pos: -44.5,4.5 parent: 2 - proto: PosterLegitNTTGC entities: @@ -236833,16 +243232,16 @@ entities: parent: 34641 - proto: PosterLegitPDAAd entities: - - uid: 22238 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 2 - uid: 45430 components: - type: Transform pos: 4.5,-0.5 parent: 43176 + - uid: 51904 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 - proto: PosterLegitReportCrimes entities: - uid: 22239 @@ -236850,11 +243249,6 @@ entities: - type: Transform pos: -23.5,-1.5 parent: 2 - - uid: 22241 - components: - - type: Transform - pos: 33.5,2.5 - parent: 2 - uid: 23166 components: - type: Transform @@ -236940,6 +243334,12 @@ entities: - type: Transform pos: -18.5,44.5 parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19445 - uid: 22256 components: - type: Transform @@ -237004,6 +243404,11 @@ entities: showEnts: False occludes: True ent: 37711 + - uid: 43767 + components: + - type: Transform + pos: -32.403866,51.514908 + parent: 2 - uid: 48818 components: - type: Transform @@ -237048,6 +243453,11 @@ entities: - type: Transform pos: -13.5,18.5 parent: 2 + - uid: 15314 + components: + - type: Transform + pos: -17.602686,1.7164409 + parent: 2 - uid: 22266 components: - type: Transform @@ -237099,6 +243509,11 @@ entities: - type: Transform pos: -12.5,-6.5 parent: 45711 + - uid: 51897 + components: + - type: Transform + pos: -11.308119,29.774948 + parent: 2 - uid: 52100 components: - type: Transform @@ -237159,6 +243574,11 @@ entities: ent: 35722 - proto: PottedPlant21 entities: + - uid: 5808 + components: + - type: Transform + pos: -16.009964,32.31675 + parent: 2 - uid: 7948 components: - type: Transform @@ -237179,15 +243599,25 @@ entities: - type: Transform pos: -59.5,11.5 parent: 2 - - uid: 43471 + - uid: 51715 components: - type: Transform - pos: -32.5,49.5 + pos: -36.5,2.5 parent: 2 - - uid: 43540 + - uid: 51782 components: - type: Transform - pos: -34.5,49.5 + pos: -46.5,2.5 + parent: 2 + - uid: 51862 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 51864 + components: + - type: Transform + pos: -36.5,-1.5 parent: 2 - uid: 52382 components: @@ -237226,6 +243656,11 @@ entities: - type: Transform pos: 24.5,-23.5 parent: 2 + - uid: 51537 + components: + - type: Transform + pos: -13.385274,25.273613 + parent: 2 - uid: 52171 components: - type: Transform @@ -237405,6 +243840,16 @@ entities: - type: Transform pos: -17.5,2.5 parent: 45711 + - uid: 51536 + components: + - type: Transform + pos: -21.485888,25.267773 + parent: 2 + - uid: 51895 + components: + - type: Transform + pos: -74.5,-8.5 + parent: 2 - uid: 52172 components: - type: Transform @@ -237443,6 +243888,11 @@ entities: showEnts: False occludes: True ent: 53136 + - uid: 55520 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 - uid: 56034 components: - type: Transform @@ -237522,8 +243972,24 @@ entities: - type: Transform pos: -2.8167007,27.151072 parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19556 + - uid: 51613 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 - proto: PottedPlantAlt6 entities: + - uid: 12067 + components: + - type: Transform + pos: -74.5,-11.5 + parent: 2 - uid: 53083 components: - type: Transform @@ -237639,11 +244105,6 @@ entities: - type: Transform pos: 26.5,32.5 parent: 2 - - uid: 3925 - components: - - type: Transform - pos: -21.5,32.5 - parent: 2 - uid: 4622 components: - type: Transform @@ -237679,35 +244140,35 @@ entities: - type: Transform pos: 2.5,-51.5 parent: 2 - - uid: 9949 + - uid: 12942 components: - type: Transform - pos: -21.5,25.5 + pos: 29.5,-51.5 parent: 2 - - uid: 21572 + - uid: 12997 components: - type: Transform - pos: -31.5,-31.5 + pos: 28.5,-52.5 parent: 2 - - uid: 22294 + - uid: 14946 components: - type: Transform - pos: -1.5,-51.5 + pos: 28.5,-53.5 parent: 2 - - uid: 22295 + - uid: 21572 components: - type: Transform - pos: -2.5,7.5 + pos: -31.5,-31.5 parent: 2 - - uid: 22296 + - uid: 22294 components: - type: Transform - pos: 5.5,6.5 + pos: -1.5,-51.5 parent: 2 - - uid: 22297 + - uid: 22296 components: - type: Transform - pos: 1.5,7.5 + pos: 5.5,6.5 parent: 2 - uid: 22298 components: @@ -237844,6 +244305,11 @@ entities: - type: Transform pos: 54.5,-24.5 parent: 2 + - uid: 32282 + components: + - type: Transform + pos: 24.5,-51.5 + parent: 2 - uid: 34634 components: - type: Transform @@ -237906,11 +244372,6 @@ entities: - type: Transform pos: 2.5,-4.5 parent: 36861 - - uid: 41878 - components: - - type: Transform - pos: -74.5,-11.5 - parent: 2 - uid: 42558 components: - type: Transform @@ -238158,11 +244619,6 @@ entities: - type: Transform pos: -12.5,-15.5 parent: 2 - - uid: 22372 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 2 - uid: 22376 components: - type: Transform @@ -238213,11 +244669,6 @@ entities: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 30017 - components: - - type: Transform - pos: 29.5,-42.5 - parent: 2 - uid: 33949 components: - type: Transform @@ -238238,6 +244689,11 @@ entities: - type: Transform pos: 29.5,-48.5 parent: 2 + - uid: 43084 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 - uid: 43184 components: - type: Transform @@ -238647,6 +245103,33 @@ entities: - type: Transform pos: 3.640188,-13.263225 parent: 33049 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 32899 + components: + - type: Transform + pos: 74.5,33.5 + parent: 2 + - uid: 35594 + components: + - type: Transform + pos: 74.5,43.5 + parent: 2 + - uid: 35969 + components: + - type: Transform + pos: 84.5,43.5 + parent: 2 + - uid: 35970 + components: + - type: Transform + pos: 84.5,33.5 + parent: 2 + - uid: 51539 + components: + - type: Transform + pos: 32.5,71.5 + parent: 2 - proto: Poweredlight entities: - uid: 179 @@ -238718,11 +245201,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-13.5 parent: 2 - - uid: 1074 - components: - - type: Transform - pos: -69.5,-3.5 - parent: 2 - uid: 1077 components: - type: Transform @@ -238969,12 +245447,6 @@ entities: - type: DeviceLinkSink links: - 26035 - - uid: 11253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-33.5 - parent: 2 - uid: 11322 components: - type: Transform @@ -238986,11 +245458,11 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-19.5 parent: 2 - - uid: 11453 + - uid: 11477 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-33.5 + pos: -41.5,-2.5 parent: 2 - uid: 11738 components: @@ -239123,6 +245595,11 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,29.5 parent: 2 + - uid: 14968 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 - uid: 15126 components: - type: Transform @@ -239143,17 +245620,10 @@ entities: - type: Transform pos: -54.5,29.5 parent: 2 - - uid: 15935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-8.5 - parent: 2 - - uid: 15936 + - uid: 16562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-8.5 + pos: -17.5,-8.5 parent: 2 - uid: 18060 components: @@ -239251,6 +245721,17 @@ entities: - type: Transform pos: -19.5,23.5 parent: 2 + - uid: 21470 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 21767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-4.5 + parent: 2 - uid: 22035 components: - type: Transform @@ -239263,11 +245744,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,38.5 parent: 2 - - uid: 22255 - components: - - type: Transform - pos: -62.5,5.5 - parent: 2 - uid: 22403 components: - type: Transform @@ -239330,13 +245806,6 @@ entities: - type: DeviceLinkSink links: - 26035 - - uid: 22412 - components: - - type: Transform - pos: -36.5,-23.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22414 components: - type: Transform @@ -239365,14 +245834,6 @@ entities: rot: 1.5707963267948966 rad pos: -77.5,28.5 parent: 2 - - uid: 22419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-1.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22420 components: - type: Transform @@ -239449,14 +245910,6 @@ entities: - type: DeviceLinkSink links: - 22713 - - uid: 22440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22444 components: - type: Transform @@ -239613,22 +246066,6 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 22485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-0.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-2.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22488 components: - type: Transform @@ -239971,14 +246408,6 @@ entities: - type: DeviceLinkSink links: - 24898 - - uid: 22548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-62.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22549 components: - type: Transform @@ -240328,35 +246757,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-8.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22607 - components: - - type: Transform - pos: -17.5,-7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22608 - components: - - type: Transform - pos: -44.5,3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22609 - components: - - type: Transform - pos: -37.5,3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22610 components: - type: Transform @@ -240745,11 +247145,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,31.5 parent: 2 - - uid: 22691 - components: - - type: Transform - pos: -23.5,30.5 - parent: 2 - uid: 22692 components: - type: Transform @@ -240761,14 +247156,6 @@ entities: - type: DeviceLinkSink links: - 22713 - - uid: 22694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-44.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22695 components: - type: Transform @@ -240788,19 +247175,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,25.5 - parent: 2 - - uid: 22700 - components: - - type: Transform - pos: -28.5,-58.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22701 components: - type: Transform @@ -240816,12 +247190,6 @@ entities: - type: DeviceLinkSink links: - 51914 - - uid: 22703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-43.5 - parent: 2 - uid: 22705 components: - type: Transform @@ -241163,18 +247531,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,39.5 parent: 2 - - uid: 22765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,25.5 - parent: 2 - - uid: 22766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,33.5 - parent: 2 - uid: 22767 components: - type: Transform @@ -241211,13 +247567,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22773 - components: - - type: Transform - pos: -34.5,1.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22774 components: - type: Transform @@ -241229,12 +247578,6 @@ entities: - type: DeviceLinkSink links: - 51793 - - uid: 22776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,33.5 - parent: 2 - uid: 22777 components: - type: Transform @@ -241521,14 +247864,6 @@ entities: - type: DeviceLinkSink links: - 51793 - - uid: 22812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-46.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22813 components: - type: Transform @@ -241553,31 +247888,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-0.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 22820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-4.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22821 components: - type: Transform @@ -241770,37 +248080,6 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: RgbLightController - - uid: 22851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22853 - components: - - type: Transform - pos: -99.5,-3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-11.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22856 components: - type: Transform @@ -241841,92 +248120,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-11.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-11.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22867 - components: - - type: Transform - pos: -85.5,-3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22868 - components: - - type: Transform - pos: -81.5,-3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-14.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22878 components: - type: Transform @@ -242150,14 +248343,6 @@ entities: - type: DeviceLinkSink links: - 26035 - - uid: 22927 - components: - - type: Transform - pos: -32.5,-23.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - uid: 22928 components: - type: Transform @@ -242174,21 +248359,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-29.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22932 - components: - - type: Transform - pos: -36.5,-27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22933 components: - type: Transform @@ -242435,6 +248605,12 @@ entities: - type: DeviceLinkSink links: - 51914 + - uid: 24035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 2 - uid: 24303 components: - type: Transform @@ -242574,11 +248750,6 @@ entities: - type: Transform pos: -46.5,-33.5 parent: 2 - - uid: 26839 - components: - - type: Transform - pos: -50.5,5.5 - parent: 2 - uid: 26953 components: - type: Transform @@ -242668,11 +248839,6 @@ entities: - type: DeviceLinkSink links: - 51914 - - uid: 28622 - components: - - type: Transform - pos: -58.5,11.5 - parent: 2 - uid: 29720 components: - type: Transform @@ -243953,12 +250119,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-3.5 parent: 44868 - - uid: 45294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,36.5 - parent: 2 - uid: 45362 components: - type: Transform @@ -244293,6 +250453,18 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-45.5 parent: 2 + - uid: 51495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 2 + - uid: 51497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,3.5 + parent: 2 - uid: 51548 components: - type: Transform @@ -244353,6 +250525,12 @@ entities: - type: DeviceLinkSink links: - 51914 + - uid: 51953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 2 - uid: 52179 components: - type: Transform @@ -244552,6 +250730,18 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-2.5 parent: 56108 +- proto: PoweredlightBlue + entities: + - uid: 22930 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 22932 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 - proto: PoweredlightEmpty entities: - uid: 10358 @@ -244770,14 +250960,15 @@ entities: - type: Transform pos: -24.5,12.5 parent: 34641 -- proto: PoweredlightLED +- proto: PoweredlightGreen entities: - - uid: 959 + - uid: 26839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,0.5 + pos: -50.5,5.5 parent: 2 +- proto: PoweredlightLED + entities: - uid: 11833 components: - type: Transform @@ -244895,8 +251086,203 @@ entities: - type: Transform pos: 30.5,29.5 parent: 2 + - uid: 51349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 44868 + - uid: 51350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 44868 - proto: PoweredlightOrange entities: + - uid: 12249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,-9.5 + parent: 2 + - uid: 12250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,-5.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,-11.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + pos: -99.5,-3.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 20460 + components: + - type: Transform + pos: -69.5,-3.5 + parent: 2 + - uid: 21081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-33.5 + parent: 2 + - uid: 21117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-33.5 + parent: 2 + - uid: 21138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 + - uid: 21139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-8.5 + parent: 2 + - uid: 21356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-1.5 + parent: 2 + - uid: 21357 + components: + - type: Transform + pos: -62.5,5.5 + parent: 2 + - uid: 21358 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 21401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-0.5 + parent: 2 + - uid: 21404 + components: + - type: Transform + pos: -23.5,30.5 + parent: 2 + - uid: 21407 + components: + - type: Transform + pos: -41.5,-58.5 + parent: 2 + - uid: 21411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,25.5 + parent: 2 + - uid: 21413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,25.5 + parent: 2 + - uid: 21415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-62.5 + parent: 2 + - uid: 21416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-62.5 + parent: 2 + - uid: 21421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,33.5 + parent: 2 + - uid: 21422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,33.5 + parent: 2 + - uid: 21423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-44.5 + parent: 2 + - uid: 21520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 2 + - uid: 21581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,3.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-0.5 + parent: 2 + - uid: 21997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-9.5 + parent: 2 + - uid: 21998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-5.5 + parent: 2 + - uid: 21999 + components: + - type: Transform + pos: -58.5,11.5 + parent: 2 + - uid: 22073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,0.5 + parent: 2 + - uid: 30232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-1.5 + parent: 2 + - uid: 51896 + components: + - type: Transform + pos: -28.5,-58.5 + parent: 2 - uid: 53358 components: - type: Transform @@ -244923,11 +251309,21 @@ entities: parent: 45711 - proto: PoweredlightPink entities: - - uid: 23350 + - uid: 12916 + components: + - type: Transform + pos: -85.5,-13.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + pos: -81.5,-13.5 + parent: 2 + - uid: 32401 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,27.5 + pos: -13.5,26.5 parent: 2 - proto: PoweredLightPostSmall entities: @@ -244956,6 +251352,11 @@ entities: - type: Transform pos: -61.5,-74.5 parent: 2 + - uid: 32099 + components: + - type: Transform + pos: 67.5,50.5 + parent: 2 - uid: 34544 components: - type: Transform @@ -245001,6 +251402,21 @@ entities: - type: Transform pos: -4.5,8.5 parent: 34641 + - uid: 35972 + components: + - type: Transform + pos: 91.5,50.5 + parent: 2 + - uid: 35973 + components: + - type: Transform + pos: 91.5,26.5 + parent: 2 + - uid: 36032 + components: + - type: Transform + pos: 67.5,26.5 + parent: 2 - uid: 36718 components: - type: Transform @@ -245167,6 +251583,34 @@ entities: parent: 45711 - proto: PoweredLightPostSmallEmpty entities: + - uid: 11102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,-8.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 11815 + - type: ApcPowerReceiver + powerLoad: 60 + - uid: 12913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,-4.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23195 + - type: ApcPowerReceiver + powerLoad: 60 - uid: 35155 components: - type: Transform @@ -245182,6 +251626,34 @@ entities: - type: Transform pos: 4.5,-12.5 parent: 45711 + - uid: 53877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,-5.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 53878 + - type: ApcPowerReceiver + powerLoad: 60 + - uid: 53879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-11.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 53880 + - type: ApcPowerReceiver + powerLoad: 60 - proto: PoweredlightRed entities: - uid: 956 @@ -245404,6 +251876,18 @@ entities: - 26035 - type: Stealth lastVisibility: -1 + - uid: 23271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-29.5 + parent: 2 + - uid: 23273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-29.5 + parent: 2 - uid: 29759 components: - type: Transform @@ -247615,6 +254099,12 @@ entities: rot: 3.141592653589793 rad pos: 30.5,23.5 parent: 45711 + - uid: 51325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-35.5 + parent: 2 - uid: 51550 components: - type: Transform @@ -247680,6 +254170,11 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,50.5 parent: 2 + - uid: 1452 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 - uid: 1576 components: - type: Transform @@ -247697,12 +254192,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,31.5 parent: 2 - - uid: 3860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-53.5 - parent: 2 - uid: 6387 components: - type: Transform @@ -247808,6 +254297,11 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,27.5 parent: 2 + - uid: 11124 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 - uid: 11144 components: - type: Transform @@ -247836,6 +254330,12 @@ entities: rot: 3.141592653589793 rad pos: -17.5,41.5 parent: 2 + - uid: 16140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-23.5 + parent: 2 - uid: 17396 components: - type: Transform @@ -247917,6 +254417,18 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,45.5 parent: 2 + - uid: 22198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 2 + - uid: 22255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-50.5 + parent: 2 - uid: 22673 components: - type: Transform @@ -248146,14 +254658,6 @@ entities: - type: DeviceLinkSink links: - 25006 - - uid: 23041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,4.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 23046 components: - type: Transform @@ -248254,14 +254758,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 23066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-39.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 23069 components: - type: Transform @@ -248367,14 +254863,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 23099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 23101 components: - type: Transform @@ -248382,22 +254870,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 23102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 23104 components: - type: Transform @@ -248431,13 +254903,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 23116 - components: - - type: Transform - pos: -13.5,-10.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 23118 components: - type: Transform @@ -248475,23 +254940,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 23124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-46.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-52.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - uid: 23128 components: - type: Transform @@ -248717,34 +255165,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 23192 - components: - - type: Transform - pos: -85.5,-13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23193 - components: - - type: Transform - pos: -81.5,-13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23194 - components: - - type: Transform - pos: -84.5,-13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23195 - components: - - type: Transform - pos: -82.5,-13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 23196 components: - type: Transform @@ -248935,14 +255355,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 23224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-23.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 23225 components: - type: Transform @@ -249357,12 +255769,24 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,57.5 parent: 2 + - uid: 32397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-44.5 + parent: 2 - uid: 32449 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-34.5 parent: 2 + - uid: 32524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-47.5 + parent: 2 - uid: 32760 components: - type: Transform @@ -249475,12 +255899,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,64.5 parent: 2 - - uid: 42834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,53.5 - parent: 2 - uid: 43022 components: - type: Transform @@ -250186,6 +256604,12 @@ entities: parent: 56108 - proto: PoweredSmallLightEmpty entities: + - uid: 19432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-53.5 + parent: 2 - uid: 23292 components: - type: Transform @@ -250283,6 +256707,23 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,49.5 parent: 2 + - uid: 47712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,50.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 47713 + - type: ApcPowerReceiver + powerLoad: 6 + - type: DeviceLinkSink + links: + - 56132 - uid: 48924 components: - type: Transform @@ -250387,15 +256828,15 @@ entities: - type: Transform pos: 2.5,3.5 parent: 2 - - uid: 25854 + - uid: 26886 components: - type: Transform - pos: -15.5,-5.5 + pos: 5.5,37.5 parent: 2 - - uid: 26886 + - uid: 43114 components: - type: Transform - pos: 5.5,37.5 + pos: -15.5,-6.5 parent: 2 - proto: Protolathe entities: @@ -250486,24 +256927,12 @@ entities: - type: Transform pos: 64.5,-15.5 parent: 2 -- proto: PuddleFlour +- proto: PuddleEgg entities: - - uid: 23311 - components: - - type: Transform - pos: 24.5,-44.5 - parent: 2 - - uid: 23312 - components: - - type: MetaData - desc: Это точно мука? - - type: Transform - pos: 22.5,-46.5 - parent: 2 - - uid: 23313 + - uid: 10002 components: - type: Transform - pos: 24.5,-46.5 + pos: -31.5,29.5 parent: 2 - proto: PuddleTomato entities: @@ -250525,11 +256954,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-30.5 parent: 2 - - uid: 23317 - components: - - type: Transform - pos: 22.5,-45.5 - parent: 2 - proto: Rack entities: - uid: 168 @@ -250623,11 +257047,6 @@ entities: - type: Transform pos: -38.5,-20.5 parent: 2 - - uid: 9309 - components: - - type: Transform - pos: -29.5,30.5 - parent: 2 - uid: 10089 components: - type: Transform @@ -250639,6 +257058,12 @@ entities: - type: Transform pos: -39.5,30.5 parent: 2 + - uid: 11359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,4.5 + parent: 2 - uid: 11688 components: - type: Transform @@ -250741,6 +257166,11 @@ entities: - type: Transform pos: 70.5,-19.5 parent: 2 + - uid: 22776 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 - uid: 22966 components: - type: Transform @@ -250794,11 +257224,6 @@ entities: - type: Transform pos: -32.5,-23.5 parent: 2 - - uid: 23337 - components: - - type: Transform - pos: -37.5,-27.5 - parent: 2 - uid: 23338 components: - type: Transform @@ -250814,11 +257239,6 @@ entities: - type: Transform pos: -36.5,-29.5 parent: 2 - - uid: 23341 - components: - - type: Transform - pos: -35.5,-27.5 - parent: 2 - uid: 23343 components: - type: Transform @@ -251126,11 +257546,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-25.5 parent: 2 - - uid: 23438 - components: - - type: Transform - pos: -36.5,-27.5 - parent: 2 - uid: 23439 components: - type: Transform @@ -251212,6 +257627,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-67.5 parent: 2 + - uid: 23647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 - uid: 24222 components: - type: Transform @@ -251248,11 +257669,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,41.5 parent: 2 - - uid: 26669 - components: - - type: Transform - pos: -26.5,-23.5 - parent: 2 - uid: 26954 components: - type: Transform @@ -251303,6 +257719,11 @@ entities: - type: Transform pos: 42.5,-12.5 parent: 2 + - uid: 30583 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 - uid: 31033 components: - type: Transform @@ -251803,6 +258224,26 @@ entities: - type: Transform pos: 35.5,32.5 parent: 2 + - uid: 48393 + components: + - type: Transform + pos: 87.5,37.5 + parent: 2 + - uid: 48404 + components: + - type: Transform + pos: 77.5,46.5 + parent: 2 + - uid: 48473 + components: + - type: Transform + pos: 71.5,36.5 + parent: 2 + - uid: 48474 + components: + - type: Transform + pos: 87.5,39.5 + parent: 2 - uid: 50726 components: - type: Transform @@ -251888,16 +258329,21 @@ entities: parent: 2 - proto: RagItem entities: - - uid: 31366 + - uid: 21459 components: - type: Transform - pos: -13.624939,37.91647 + pos: -6.327606,-4.9740105 parent: 2 - uid: 48950 components: - type: Transform pos: 11.558048,28.70389 parent: 45711 + - uid: 53056 + components: + - type: Transform + pos: -29.476658,32.593704 + parent: 2 - proto: Railing entities: - uid: 18 @@ -252000,6 +258446,11 @@ entities: rot: 3.141592653589793 rad pos: 45.5,38.5 parent: 2 + - uid: 6789 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 - uid: 6794 components: - type: Transform @@ -252136,6 +258587,17 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,59.5 parent: 2 + - uid: 12649 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,30.5 + parent: 2 - uid: 13041 components: - type: Transform @@ -252160,6 +258622,17 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,60.5 parent: 2 + - uid: 13916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,29.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: -18.5,33.5 + parent: 2 - uid: 14679 components: - type: Transform @@ -252172,6 +258645,11 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,61.5 parent: 2 + - uid: 14711 + components: + - type: Transform + pos: -31.5,30.5 + parent: 2 - uid: 15055 components: - type: Transform @@ -252212,6 +258690,12 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,31.5 parent: 2 + - uid: 18850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,27.5 + parent: 2 - uid: 19690 components: - type: Transform @@ -252242,6 +258726,12 @@ entities: rot: 3.141592653589793 rad pos: 43.5,38.5 parent: 2 + - uid: 23377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-8.5 + parent: 2 - uid: 23477 components: - type: Transform @@ -252505,6 +258995,11 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,36.5 parent: 2 + - uid: 26624 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 - uid: 27597 components: - type: Transform @@ -252569,6 +259064,23 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,38.5 parent: 2 + - uid: 31188 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 32278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-1.5 + parent: 2 + - uid: 32280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-1.5 + parent: 2 - uid: 34028 components: - type: Transform @@ -252850,6 +259362,11 @@ entities: - type: Transform pos: -11.5,-30.5 parent: 2 + - uid: 35974 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 - uid: 36832 components: - type: Transform @@ -252943,6 +259460,11 @@ entities: - type: Transform pos: 73.5,-24.5 parent: 2 + - uid: 47230 + components: + - type: Transform + pos: -34.5,51.5 + parent: 2 - uid: 47726 components: - type: Transform @@ -253177,17 +259699,116 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,34.5 parent: 45711 - - uid: 51005 + - uid: 51178 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,28.5 + pos: -37.5,1.5 parent: 2 - - uid: 51006 + - uid: 51188 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - uid: 51351 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,26.5 + pos: -37.5,-0.5 + parent: 2 + - uid: 51357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-1.5 + parent: 2 + - uid: 51358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-1.5 + parent: 2 + - uid: 51359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + - uid: 51362 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 51363 + components: + - type: Transform + pos: -43.5,2.5 + parent: 2 + - uid: 51365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,1.5 + parent: 2 + - uid: 51366 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 51490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-1.5 + parent: 2 + - uid: 51649 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 51650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-1.5 + parent: 2 + - uid: 51653 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 51660 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 51663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-1.5 + parent: 2 + - uid: 51871 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 51873 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 51874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,0.5 + parent: 2 + - uid: 51876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,0.5 parent: 2 - uid: 52418 components: @@ -253311,6 +259932,12 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,73.5 parent: 45711 + - uid: 53006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,30.5 + parent: 2 - uid: 53259 components: - type: Transform @@ -253653,6 +260280,42 @@ entities: rot: 3.141592653589793 rad pos: 12.5,49.5 parent: 45711 + - uid: 54177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,23.5 + parent: 2 + - uid: 54178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,23.5 + parent: 2 + - uid: 54180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,23.5 + parent: 2 + - uid: 54181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,23.5 + parent: 2 + - uid: 54188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,23.5 + parent: 2 + - uid: 54192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,23.5 + parent: 2 - uid: 54225 components: - type: Transform @@ -253690,6 +260353,12 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-16.5 parent: 2 + - uid: 11125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,32.5 + parent: 2 - uid: 12138 components: - type: Transform @@ -253732,6 +260401,12 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,62.5 parent: 2 + - uid: 14176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,29.5 + parent: 2 - uid: 15175 components: - type: Transform @@ -253749,6 +260424,23 @@ entities: rot: 3.141592653589793 rad pos: -35.5,62.5 parent: 2 + - uid: 22485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,32.5 + parent: 2 + - uid: 22656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,32.5 + parent: 2 + - uid: 22818 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 - uid: 23593 components: - type: Transform @@ -253765,6 +260457,23 @@ entities: - type: Transform pos: 33.5,-64.5 parent: 2 + - uid: 25046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,32.5 + parent: 2 + - uid: 26158 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 26160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,27.5 + parent: 2 - uid: 34550 components: - type: Transform @@ -253793,6 +260502,12 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-24.5 parent: 2 + - uid: 45352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,50.5 + parent: 2 - uid: 48990 components: - type: Transform @@ -253964,6 +260679,12 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,63.5 parent: 2 + - uid: 12787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,30.5 + parent: 2 - uid: 19990 components: - type: Transform @@ -253987,6 +260708,17 @@ entities: rot: 3.141592653589793 rad pos: 16.5,64.5 parent: 2 + - uid: 23066 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - uid: 23099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,31.5 + parent: 2 - uid: 23597 components: - type: Transform @@ -254022,6 +260754,41 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 + - uid: 25577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - uid: 26295 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 26338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,31.5 + parent: 2 + - uid: 26823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - uid: 27118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 2 + - uid: 28119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,32.5 + parent: 2 - uid: 28769 components: - type: Transform @@ -254033,6 +260800,41 @@ entities: - type: Transform pos: 22.5,58.5 parent: 2 + - uid: 32117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,26.5 + parent: 2 + - uid: 32257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,2.5 + parent: 2 + - uid: 32271 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 32277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,2.5 + parent: 2 + - uid: 32281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + - uid: 32942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-0.5 + parent: 2 - uid: 34038 components: - type: Transform @@ -254085,6 +260887,12 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,64.5 parent: 2 + - uid: 47148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,51.5 + parent: 2 - uid: 49001 components: - type: Transform @@ -254179,6 +260987,18 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,35.5 parent: 45711 + - uid: 51946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-0.5 + parent: 2 + - uid: 51947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 2 - uid: 52599 components: - type: Transform @@ -254248,6 +261068,11 @@ entities: - type: Transform pos: -24.5,47.5 parent: 45711 + - uid: 53051 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 - uid: 53795 components: - type: Transform @@ -254419,25 +261244,38 @@ entities: rot: 3.141592653589793 rad pos: -58.5,73.5 parent: 2 + - uid: 51869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,0.5 + parent: 2 + - uid: 51870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - uid: 51893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,0.5 + parent: 2 - uid: 53937 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,51.5 parent: 45711 -- proto: RandomArcade - entities: - - uid: 23608 - components: - - type: Transform - pos: 28.5,-36.5 - parent: 2 - - uid: 23609 + - uid: 54205 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,25.5 + pos: -21.5,53.5 parent: 2 +- proto: RandomArcade + entities: - uid: 44633 components: - type: Transform @@ -254561,6 +261399,11 @@ entities: parent: 2 - proto: RandomDrinkGlass entities: + - uid: 248 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 - uid: 4871 components: - type: Transform @@ -254571,12 +261414,7 @@ entities: - type: Transform pos: -19.5,-37.5 parent: 2 - - uid: 23620 - components: - - type: Transform - pos: -18.5,35.5 - parent: 2 - - uid: 23621 + - uid: 22019 components: - type: Transform pos: -16.5,35.5 @@ -254606,11 +261444,6 @@ entities: - type: Transform pos: -54.5,23.5 parent: 2 - - uid: 23627 - components: - - type: Transform - pos: -57.5,4.5 - parent: 2 - uid: 52001 components: - type: Transform @@ -254684,11 +261517,6 @@ entities: - type: Transform pos: -24.5,27.5 parent: 2 - - uid: 23633 - components: - - type: Transform - pos: 22.5,-43.5 - parent: 2 - uid: 36436 components: - type: Transform @@ -254741,20 +261569,15 @@ entities: - type: Transform pos: -62.5,13.5 parent: 2 - - uid: 23647 - components: - - type: Transform - pos: -55.5,2.5 - parent: 2 - uid: 23649 components: - type: Transform pos: -70.5,-21.5 parent: 2 - - uid: 32711 + - uid: 23864 components: - type: Transform - pos: -17.5,25.5 + pos: -14.5,29.5 parent: 2 - uid: 37773 components: @@ -254807,24 +261630,6 @@ entities: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 21129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,30.5 - parent: 2 - - uid: 21140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,32.5 - parent: 2 - - uid: 21397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,31.5 - parent: 2 - uid: 23652 components: - type: Transform @@ -254852,6 +261657,29 @@ entities: - type: Transform pos: -9.5,44.5 parent: 2 + - uid: 33434 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - uid: 33491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,29.5 + parent: 2 + - uid: 33492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,30.5 + parent: 2 + - uid: 33493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,33.5 + parent: 2 - uid: 35511 components: - type: Transform @@ -255139,12 +261967,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,49.5 parent: 2 - - uid: 43767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,47.5 - parent: 2 - uid: 43769 components: - type: Transform @@ -255486,12 +262308,6 @@ entities: - type: Transform pos: -31.5,45.5 parent: 2 - - uid: 23702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,29.5 - parent: 2 - uid: 23705 components: - type: Transform @@ -255507,21 +262323,11 @@ entities: - type: Transform pos: 2.5,-31.5 parent: 2 - - uid: 23708 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 2 - uid: 23709 components: - type: Transform pos: -23.5,19.5 parent: 2 - - uid: 23711 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 - uid: 23714 components: - type: Transform @@ -255640,6 +262446,16 @@ entities: - type: Transform pos: 18.5,5.5 parent: 2 + - uid: 53872 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 53873 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 - uid: 56310 components: - type: Transform @@ -255729,11 +262545,6 @@ entities: parent: 45711 - proto: RandomSnacks entities: - - uid: 23726 - components: - - type: Transform - pos: 23.5,-47.5 - parent: 2 - uid: 23727 components: - type: Transform @@ -255808,6 +262619,11 @@ entities: parent: 2 - proto: RandomSpawner entities: + - uid: 294 + components: + - type: Transform + pos: -28.5,32.5 + parent: 2 - uid: 403 components: - type: Transform @@ -255910,11 +262726,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,27.5 parent: 2 - - uid: 23744 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 2 - uid: 23748 components: - type: Transform @@ -256173,11 +262984,6 @@ entities: - type: Transform pos: -0.5,32.5 parent: 2 - - uid: 23817 - components: - - type: Transform - pos: 30.5,4.5 - parent: 2 - uid: 23818 components: - type: Transform @@ -256223,11 +263029,6 @@ entities: - type: Transform pos: -13.5,0.5 parent: 2 - - uid: 23829 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 2 - uid: 23833 components: - type: Transform @@ -256336,18 +263137,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-51.5 parent: 2 - - uid: 23863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-46.5 - parent: 2 - - uid: 23864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-52.5 - parent: 2 - uid: 23869 components: - type: Transform @@ -256371,12 +263160,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-26.5 parent: 2 - - uid: 23876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,29.5 - parent: 2 - uid: 23877 components: - type: Transform @@ -256431,11 +263214,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-65.5 parent: 2 - - uid: 23899 - components: - - type: Transform - pos: -17.5,26.5 - parent: 2 - uid: 23900 components: - type: Transform @@ -256467,11 +263245,6 @@ entities: - type: Transform pos: -68.5,22.5 parent: 2 - - uid: 23906 - components: - - type: Transform - pos: -65.5,16.5 - parent: 2 - uid: 23907 components: - type: Transform @@ -256593,11 +263366,6 @@ entities: - type: Transform pos: -49.5,-22.5 parent: 2 - - uid: 23935 - components: - - type: Transform - pos: -42.5,-27.5 - parent: 2 - uid: 23936 components: - type: Transform @@ -256629,11 +263397,6 @@ entities: rot: 3.141592653589793 rad pos: 74.5,-2.5 parent: 2 - - uid: 23943 - components: - - type: Transform - pos: -43.5,-29.5 - parent: 2 - uid: 23944 components: - type: Transform @@ -256671,16 +263434,6 @@ entities: rot: -1.5707963267948966 rad pos: -64.5,-23.5 parent: 2 - - uid: 23951 - components: - - type: Transform - pos: -21.5,31.5 - parent: 2 - - uid: 23952 - components: - - type: Transform - pos: -16.5,31.5 - parent: 2 - uid: 23953 components: - type: Transform @@ -256806,11 +263559,22 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-75.5 parent: 2 + - uid: 25966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,28.5 + parent: 2 - uid: 28246 components: - type: Transform pos: 26.5,19.5 parent: 2 + - uid: 32156 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 - uid: 33474 components: - type: Transform @@ -257336,6 +264100,11 @@ entities: - type: Transform pos: -15.5,9.5 parent: 45711 + - uid: 51321 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 2 - uid: 52765 components: - type: Transform @@ -258189,11 +264958,6 @@ entities: - type: Transform pos: 27.5,21.5 parent: 2 - - uid: 23978 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 2 - uid: 23979 components: - type: Transform @@ -258314,6 +265078,11 @@ entities: - type: Transform pos: -48.5,24.5 parent: 2 + - uid: 55521 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 - proto: RandomVendingDrinks entities: - uid: 9307 @@ -258351,11 +265120,6 @@ entities: - type: Transform pos: -3.5,-33.5 parent: 2 - - uid: 24005 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 2 - uid: 24006 components: - type: Transform @@ -258431,6 +265195,16 @@ entities: - type: Transform pos: -36.5,64.5 parent: 2 + - uid: 51696 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 + - uid: 53344 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 - uid: 54145 components: - type: Transform @@ -258468,11 +265242,6 @@ entities: - type: Transform pos: 1.5,35.5 parent: 2 - - uid: 24019 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 - uid: 24021 components: - type: Transform @@ -258508,6 +265277,11 @@ entities: - type: Transform pos: 24.5,36.5 parent: 2 + - uid: 28381 + components: + - type: Transform + pos: -23.5,30.5 + parent: 2 - uid: 29155 components: - type: Transform @@ -258523,6 +265297,11 @@ entities: - type: Transform pos: 57.5,-22.5 parent: 2 + - uid: 37441 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 - uid: 37784 components: - type: Transform @@ -258563,6 +265342,11 @@ entities: - type: Transform pos: -8.5,14.5 parent: 45711 + - uid: 53345 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 - uid: 54144 components: - type: Transform @@ -258593,17 +265377,24 @@ entities: - type: Transform pos: 16.679344,14.3583975 parent: 2 +- proto: ReagentContainerCornmeal + entities: + - uid: 22766 + components: + - type: Transform + pos: -26.59426,25.907188 + parent: 2 - proto: ReagentContainerFlour entities: - - uid: 16762 + - uid: 295 components: - type: Transform - pos: -26.288616,30.591894 + pos: -26.375511,25.688438 parent: 2 - - uid: 24035 + - uid: 51030 components: - type: Transform - pos: -25.930801,30.757761 + pos: 26.372646,4.480491 parent: 2 - proto: ReagentContainerMayo entities: @@ -258614,6 +265405,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ReagentContainerSugarSmall + entities: + - uid: 37437 + components: + - type: Transform + pos: 26.638271,4.5742416 + parent: 2 - proto: Recycler entities: - uid: 20508 @@ -259237,11 +266035,6 @@ entities: - type: Transform pos: 33.5,23.5 parent: 2 - - uid: 1644 - components: - - type: Transform - pos: 53.5,17.5 - parent: 2 - uid: 1647 components: - type: Transform @@ -259252,11 +266045,6 @@ entities: - type: Transform pos: 33.5,22.5 parent: 2 - - uid: 1654 - components: - - type: Transform - pos: 53.5,22.5 - parent: 2 - uid: 3202 components: - type: Transform @@ -259489,6 +266277,11 @@ entities: - type: Transform pos: 53.5,-35.5 parent: 2 + - uid: 14326 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 - uid: 14401 components: - type: Transform @@ -259520,6 +266313,16 @@ entities: - type: Transform pos: 43.5,27.5 parent: 2 + - uid: 16566 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 16567 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 - uid: 18568 components: - type: Transform @@ -259535,11 +266338,6 @@ entities: - type: Transform pos: 41.5,27.5 parent: 2 - - uid: 19355 - components: - - type: Transform - pos: 53.5,19.5 - parent: 2 - uid: 19356 components: - type: Transform @@ -259558,24 +266356,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-18.5 parent: 2 - - uid: 19439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-4.5 - parent: 2 - - uid: 19444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-6.5 - parent: 2 - - uid: 19473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 2 - uid: 19475 components: - type: Transform @@ -259760,12 +266540,6 @@ entities: - type: Transform pos: 74.5,-11.5 parent: 2 - - uid: 23423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 2 - uid: 23484 components: - type: Transform @@ -259778,12 +266552,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-25.5 parent: 2 - - uid: 23489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-5.5 - parent: 2 - uid: 23524 components: - type: Transform @@ -259831,12 +266599,6 @@ entities: - type: Transform pos: -21.5,-3.5 parent: 2 - - uid: 24081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-2.5 - parent: 2 - uid: 24082 components: - type: Transform @@ -259862,12 +266624,6 @@ entities: - type: Transform pos: 3.5,10.5 parent: 2 - - uid: 24089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-2.5 - parent: 2 - uid: 24090 components: - type: Transform @@ -259893,12 +266649,6 @@ entities: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 24096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-2.5 - parent: 2 - uid: 24097 components: - type: Transform @@ -261481,6 +268231,11 @@ entities: rot: 3.141592653589793 rad pos: 4.5,72.5 parent: 2 + - uid: 26903 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 - uid: 27100 components: - type: Transform @@ -261546,6 +268301,11 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-40.5 parent: 2 + - uid: 28778 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 - uid: 28797 components: - type: Transform @@ -261600,11 +268360,6 @@ entities: - type: Transform pos: -9.5,63.5 parent: 2 - - uid: 29592 - components: - - type: Transform - pos: 53.5,21.5 - parent: 2 - uid: 29688 components: - type: Transform @@ -261649,11 +268404,6 @@ entities: - type: Transform pos: -9.5,67.5 parent: 2 - - uid: 30130 - components: - - type: Transform - pos: 53.5,13.5 - parent: 2 - uid: 30460 components: - type: Transform @@ -261708,6 +268458,21 @@ entities: - type: Transform pos: 63.5,-53.5 parent: 2 + - uid: 32698 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 32700 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 + - uid: 32702 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 - uid: 34075 components: - type: Transform @@ -261773,6 +268538,16 @@ entities: rot: 3.141592653589793 rad pos: 66.5,-9.5 parent: 2 + - uid: 34584 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 34600 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 - uid: 35068 components: - type: Transform @@ -261848,11 +268623,6 @@ entities: - type: Transform pos: 53.5,16.5 parent: 2 - - uid: 36099 - components: - - type: Transform - pos: 53.5,15.5 - parent: 2 - uid: 36138 components: - type: Transform @@ -262135,6 +268905,11 @@ entities: - type: Transform pos: 20.5,-37.5 parent: 2 + - uid: 43002 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 - uid: 43235 components: - type: Transform @@ -262588,6 +269363,11 @@ entities: - type: Transform pos: -42.906635,-54.695183 parent: 2 + - uid: 32402 + components: + - type: Transform + pos: 22.534698,-43.49788 + parent: 2 - proto: RightArmSkeleton entities: - uid: 34083 @@ -262637,6 +269417,11 @@ entities: parent: 45711 - proto: RiotBulletShield entities: + - uid: 3381 + components: + - type: Transform + pos: -35.75695,-23.564682 + parent: 2 - uid: 12292 components: - type: Transform @@ -262660,6 +269445,11 @@ entities: parent: 45711 - proto: RiotLaserShield entities: + - uid: 3380 + components: + - type: Transform + pos: -35.4132,-23.564684 + parent: 2 - uid: 18592 components: - type: Transform @@ -262720,6 +269510,13 @@ entities: rot: -1.5707963267948966 rad pos: 17.549374,-74.53919 parent: 2 +- proto: RitualDagger + entities: + - uid: 25778 + components: + - type: Transform + pos: -33.49503,-77.466644 + parent: 2 - proto: RollerBed entities: - uid: 23130 @@ -262754,6 +269551,13 @@ entities: - type: Transform pos: -4.2531586,51.96808 parent: 45711 +- proto: RollingPin + entities: + - uid: 52661 + components: + - type: Transform + pos: 26.415905,3.5428784 + parent: 2 - proto: RubberStampApproved entities: - uid: 14488 @@ -262764,12 +269568,14 @@ entities: - uid: 24734 components: - type: Transform - pos: -12.664147,-3.7684908 + rot: 0.000553772842977196 rad + pos: -12.706777,-4.8968635 parent: 2 - uid: 44844 components: - type: Transform - pos: -2.733772,5.737014 + rot: 0.000553772842977196 rad + pos: -2.657628,6.9012265 parent: 2 - proto: RubberStampClown entities: @@ -262788,12 +269594,14 @@ entities: - uid: 24737 components: - type: Transform - pos: -12.286887,-3.7296238 + rot: 0.000553772842977196 rad + pos: -12.363027,-4.8968635 parent: 2 - uid: 51040 components: - type: Transform - pos: -2.5306473,5.5807643 + rot: 0.000553772842977196 rad + pos: -2.345128,6.9012275 parent: 2 - proto: RubberStampSyndicate entities: @@ -262839,6 +269647,16 @@ entities: parent: 45711 - proto: SalvageHumanCorpseSpawner entities: + - uid: 12066 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 26277 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 2 - uid: 41440 components: - type: Transform @@ -263201,11 +270019,6 @@ entities: - type: Transform pos: -38.5,-54.5 parent: 2 - - uid: 45320 - components: - - type: Transform - pos: -40.5,4.5 - parent: 2 - uid: 45322 components: - type: Transform @@ -263226,11 +270039,6 @@ entities: - type: Transform pos: 52.5,1.5 parent: 2 - - uid: 45327 - components: - - type: Transform - pos: 29.5,2.5 - parent: 2 - uid: 45328 components: - type: Transform @@ -263296,6 +270104,12 @@ entities: - type: Transform pos: -82.5,24.5 parent: 2 + - uid: 51519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 2 - uid: 51974 components: - type: Transform @@ -263306,7 +270120,7 @@ entities: - uid: 783 components: - type: Transform - pos: -40.509903,-8.644318 + pos: -40.540585,-8.552762 parent: 2 - uid: 20207 components: @@ -263423,28 +270237,81 @@ entities: rot: 1.5707963267948966 rad pos: -32.2408,29.566345 parent: 45711 -- proto: SeashellInstrument - entities: - - uid: 24766 - components: - - type: Transform - pos: 26.382706,-45.3069 - parent: 2 - proto: SecurityPDA entities: - uid: 35979 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 32182 + - type: UnpoweredFlashlight + toggleActionEntity: 32182 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - uid: 35984 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 32181 + - type: UnpoweredFlashlight + toggleActionEntity: 32181 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: SecurityTechFab entities: @@ -263465,36 +270332,156 @@ entities: - uid: 24566 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 32131 + - type: UnpoweredFlashlight + toggleActionEntity: 32131 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: SeniorOfficerPDA entities: - uid: 28632 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 32130 + - type: UnpoweredFlashlight + toggleActionEntity: 32130 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: SeniorPhysicianPDA entities: - uid: 24719 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 32345 + - type: UnpoweredFlashlight + toggleActionEntity: 32345 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: SeniorResearcherPDA entities: - uid: 25578 components: - type: Transform - parent: 35974 + parent: 27671 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 32132 + - type: UnpoweredFlashlight + toggleActionEntity: 32132 - type: Physics canCollide: False + - type: ActionsContainer - type: InsideEntityStorage - proto: ShadowKudzuWeak entities: @@ -263582,6 +270569,36 @@ entities: parent: 45711 - type: Fixtures fixtures: {} +- proto: ShadowTree02 + entities: + - uid: 6796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.340004,-3.908831 + parent: 2 +- proto: ShadowTree03 + entities: + - uid: 18364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.885956,-5.2829766 + parent: 2 + - uid: 23102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.40059,-11.01912 + parent: 2 +- proto: ShadowTree04 + entities: + - uid: 22864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.86519,-8.256164 + parent: 2 - proto: ShadowTree06 entities: - uid: 26293 @@ -263711,11 +270728,6 @@ entities: rot: 3.141592653589793 rad pos: 26.694498,-35.72797 parent: 2 - - uid: 24791 - components: - - type: Transform - pos: -45.935986,-24.392344 - parent: 2 - uid: 24792 components: - type: Transform @@ -263927,6 +270939,11 @@ entities: - type: Transform pos: 29.29152,49.58026 parent: 45711 + - uid: 56128 + components: + - type: Transform + pos: -47.14193,-24.036396 + parent: 2 - proto: ShardGlassPlasma entities: - uid: 1348 @@ -264115,14 +271132,14 @@ entities: - uid: 847 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 1304 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage @@ -264241,6 +271258,13 @@ entities: - type: Transform pos: 12.508866,-35.385597 parent: 2 + - uid: 48409 + components: + - type: Transform + pos: 17.492786,63.540344 + parent: 2 + - type: Stack + count: 10 - proto: SheetPlasteel entities: - uid: 10489 @@ -264392,14 +271416,14 @@ entities: - uid: 857 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 1020 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage @@ -264418,13 +271442,6 @@ entities: - type: Transform pos: 28.615871,-24.554539 parent: 2 - - uid: 12250 - components: - - type: Transform - parent: 12247 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 21546 components: - type: Transform @@ -264461,10 +271478,11 @@ entities: parent: 45711 - proto: SheetPlastic10 entities: - - uid: 26220 + - uid: 45280 components: - type: Transform - pos: -43.37042,-27.431894 + rot: 0.000553772842977196 rad + pos: -43.329918,-30.46934 parent: 2 - uid: 53549 components: @@ -264476,7 +271494,7 @@ entities: - uid: 1243 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage @@ -264527,14 +271545,14 @@ entities: - uid: 949 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 1078 components: - type: Transform - parent: 776 + parent: 47705 - type: Physics canCollide: False - type: InsideEntityStorage @@ -264841,15 +271859,16 @@ entities: - type: Transform pos: -93.6264,36.611107 parent: 2 - - uid: 36631 + - uid: 37223 components: - type: Transform - pos: -43.542297,-27.416267 + pos: 54.56108,-27.424482 parent: 2 - - uid: 37223 + - uid: 43010 components: - type: Transform - pos: 54.56108,-27.424482 + rot: 0.000553772842977196 rad + pos: -43.658043,-30.313087 parent: 2 - uid: 47608 components: @@ -264878,6 +271897,11 @@ entities: - type: Transform pos: 19.741726,31.582317 parent: 2 + - uid: 9879 + components: + - type: Transform + pos: 19.583525,31.585814 + parent: 2 - uid: 46597 components: - type: Transform @@ -264893,15 +271917,6 @@ entities: - type: Transform pos: 19.44582,31.574554 parent: 2 -- proto: SheetUranium1 - entities: - - uid: 51379 - components: - - type: Transform - pos: 19.461445,31.67776 - parent: 2 - - type: Stack - count: 10 - proto: ShellShotgun entities: - uid: 24016 @@ -265026,11 +272041,6 @@ entities: parent: 45711 - proto: Shovel entities: - - uid: 24873 - components: - - type: Transform - pos: 24.285158,-49.424847 - parent: 2 - uid: 24875 components: - type: Transform @@ -265084,11 +272094,6 @@ entities: parent: 45711 - proto: ShuttersFrame entities: - - uid: 21139 - components: - - type: Transform - pos: 20.5,-52.5 - parent: 2 - uid: 24878 components: - type: Transform @@ -265099,11 +272104,6 @@ entities: - type: Transform pos: -42.5,39.5 parent: 2 - - uid: 27473 - components: - - type: Transform - pos: 20.5,-46.5 - parent: 2 - uid: 49189 components: - type: Transform @@ -265370,6 +272370,14 @@ entities: links: - 7871 - 1535 + - uid: 1693 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10151 - uid: 1793 components: - type: Transform @@ -265594,19 +272602,22 @@ entities: - type: DeviceLinkSink links: - 25881 - - uid: 20775 + - uid: 18653 components: - type: Transform - pos: -15.5,-42.5 + pos: -13.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 15382 - - uid: 21138 + - 10151 + - uid: 20775 components: - type: Transform - pos: 20.5,-51.5 + pos: -15.5,-42.5 parent: 2 + - type: DeviceLinkSink + links: + - 15382 - uid: 21986 components: - type: Transform @@ -265615,6 +272626,14 @@ entities: - type: DeviceLinkSink links: - 25881 + - uid: 22230 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10151 - uid: 22952 components: - type: Transform @@ -265624,55 +272643,71 @@ entities: links: - 51799 - 51793 - - uid: 24493 + - uid: 23531 components: - type: Transform - pos: -16.5,-2.5 + pos: 34.5,1.5 parent: 2 - type: DeviceLinkSink links: - - 32238 - - uid: 24879 + - 51520 + - uid: 23608 components: - type: Transform - pos: -7.5,-4.5 + pos: 33.5,1.5 parent: 2 - type: DeviceLinkSink links: - - 24892 - - 24898 - - uid: 24880 + - 51520 + - uid: 23609 components: - type: Transform - pos: -17.5,-2.5 + pos: 35.5,1.5 parent: 2 - type: DeviceLinkSink links: - - 32238 - - uid: 24882 + - 51520 + - uid: 23620 components: - type: Transform - pos: -14.5,-2.5 + pos: 30.5,1.5 parent: 2 - type: DeviceLinkSink links: - - 32238 - - uid: 24886 + - 51520 + - uid: 23621 components: - type: Transform - pos: -15.5,-2.5 + pos: 32.5,1.5 parent: 2 - type: DeviceLinkSink links: - - 32238 - - uid: 24888 + - 51520 + - uid: 23633 components: - type: Transform - pos: -13.5,-2.5 + pos: 31.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 51520 + - uid: 23726 + components: + - type: Transform + pos: 36.5,1.5 parent: 2 - type: DeviceLinkSink links: - - 32238 + - 51520 + - uid: 24879 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16442 + - 24898 - uid: 24889 components: - type: Transform @@ -265680,7 +272715,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24892 + - 16442 - 24898 - uid: 24891 components: @@ -265689,7 +272724,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24892 + - 16442 - 24898 - uid: 24894 components: @@ -266114,7 +273149,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24892 + - 16442 - 24898 - uid: 30406 components: @@ -266323,7 +273358,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 17492 + - 12262 - 24898 - uid: 51759 components: @@ -266332,7 +273367,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 17492 + - 12262 - 24898 - uid: 51760 components: @@ -266341,7 +273376,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 21116 + - 53060 - 24898 - uid: 51761 components: @@ -266350,7 +273385,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 21116 + - 53060 - 24898 - uid: 51795 components: @@ -266370,6 +273405,14 @@ entities: links: - 51799 - 51793 + - uid: 51899 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10151 - uid: 51911 components: - type: Transform @@ -266388,6 +273431,14 @@ entities: links: - 22713 - 98 + - uid: 51949 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10151 - uid: 54128 components: - type: Transform @@ -266645,38 +273696,56 @@ entities: - type: DeviceLinkSink links: - 45167 - - uid: 51030 + - uid: 51546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18695 + - uid: 51556 components: - type: Transform pos: -18.5,35.5 parent: 2 - type: DeviceLinkSink links: - - 51029 - - uid: 51031 + - 18695 + - uid: 51557 components: - type: Transform pos: -17.5,35.5 parent: 2 - type: DeviceLinkSink links: - - 51029 - - uid: 51032 + - 18695 + - uid: 51598 components: - type: Transform pos: -16.5,35.5 parent: 2 - type: DeviceLinkSink links: - - 51029 - - uid: 51033 + - 18695 + - uid: 51602 components: - type: Transform pos: -15.5,35.5 parent: 2 - type: DeviceLinkSink links: - - 51029 + - 18695 + - uid: 51603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18695 - proto: ShuttleConsoleCircuitboard entities: - uid: 24417 @@ -267216,19 +274285,6 @@ entities: linkedPorts: 11970: - Pressed: Toggle - - uid: 19445 - components: - - type: MetaData - desc: Эта кнопка активирует лампу вызова уборщика. - name: кнопка вызова уборщика - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.585767,36.557156 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19432: - - Pressed: Toggle - uid: 21537 components: - type: MetaData @@ -267634,20 +274690,6 @@ entities: linkedPorts: 20509: - Pressed: Toggle - - uid: 44831 - components: - - type: MetaData - desc: Эта кнопка активирует лампу вызова уборщика. - name: кнопка вызова уборщика - - type: Transform - pos: -0.5,2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19562: - - Pressed: Toggle - 31503: - - Pressed: Toggle - uid: 45159 components: - type: Transform @@ -268116,6 +275158,40 @@ entities: - Pressed: Toggle 46976: - Pressed: Toggle + - uid: 51520 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23620: + - Pressed: Toggle + 23633: + - Pressed: Toggle + 23621: + - Pressed: Toggle + 23608: + - Pressed: Toggle + 23531: + - Pressed: Toggle + 23609: + - Pressed: Toggle + 23726: + - Pressed: Toggle + - uid: 51545 + components: + - type: MetaData + desc: Эта кнопка активирует лампу вызова уборщика. + name: кнопка вызова уборщика + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 51544: + - Pressed: Toggle - uid: 53272 components: - type: Transform @@ -268782,6 +275858,15 @@ entities: - Pressed: Open 53967: - Pressed: Open + - uid: 56132 + components: + - type: Transform + pos: -35.5,51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 47712: + - Pressed: Toggle - proto: SignalControlledValve entities: - uid: 49229 @@ -268797,8 +275882,6 @@ entities: - 49207 - 49235 - 49210 - - type: AtmosDevice - joinedGrid: 45711 - type: AtmosPipeColor color: '#0000FFFF' - uid: 49230 @@ -268811,8 +275894,6 @@ entities: - type: DeviceLinkSink links: - 49221 - - type: AtmosDevice - joinedGrid: 45711 - uid: 52637 components: - type: Transform @@ -268824,8 +275905,6 @@ entities: - type: DeviceLinkSink links: - 46016 - - type: AtmosDevice - joinedGrid: 45711 - proto: SignalTimer entities: - uid: 49231 @@ -269449,7 +276528,7 @@ entities: - type: Transform pos: -57.5,6.5 parent: 2 - - uid: 25046 + - uid: 51629 components: - type: Transform pos: -14.5,35.5 @@ -269491,6 +276570,16 @@ entities: - type: Transform pos: 25.5,-62.5 parent: 2 + - uid: 25296 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - uid: 27582 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 2 - uid: 29997 components: - type: Transform @@ -269596,14 +276685,6 @@ entities: - type: Transform pos: 10.5,-48.5 parent: 2 -- proto: SignConference - entities: - - uid: 25066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 2 - proto: SignCourt entities: - uid: 51020 @@ -270409,11 +277490,10 @@ entities: parent: 2 - proto: SignEngineering entities: - - uid: 25178 + - uid: 14060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-10.5 + pos: -15.5,-11.5 parent: 2 - uid: 25179 components: @@ -270707,6 +277787,11 @@ entities: - type: Transform pos: 58.5,-32.5 parent: 2 + - uid: 47714 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 - uid: 51023 components: - type: Transform @@ -271085,6 +278170,11 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-45.5 parent: 2 + - uid: 27473 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 - uid: 35227 components: - type: Transform @@ -271167,11 +278257,6 @@ entities: - type: Transform pos: 17.5,41.5 parent: 2 - - uid: 51022 - components: - - type: Transform - pos: -46.5,3.5 - parent: 2 - proto: SignSomethingOld entities: - uid: 25267 @@ -271234,6 +278319,11 @@ entities: parent: 36861 - proto: SignSurgery entities: + - uid: 23943 + components: + - type: Transform + pos: -46.5,-25.5 + parent: 2 - uid: 25274 components: - type: Transform @@ -271244,11 +278334,6 @@ entities: - type: Transform pos: -6.5,-50.5 parent: 2 - - uid: 25276 - components: - - type: Transform - pos: -45.5,-25.5 - parent: 2 - proto: SignTelecomms entities: - uid: 9889 @@ -271353,6 +278438,12 @@ entities: parent: 45711 - proto: SinkStemless entities: + - uid: 13001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-41.5 + parent: 2 - uid: 49250 components: - type: Transform @@ -271365,6 +278456,18 @@ entities: parent: 45711 - proto: SinkStemlessWater entities: + - uid: 11075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.799833,38.199833 + parent: 2 - uid: 25292 components: - type: Transform @@ -271380,17 +278483,11 @@ entities: - type: Transform pos: -33.5,3.5 parent: 2 - - uid: 32250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.857472,38.295395 - parent: 2 - - uid: 36726 + - uid: 25638 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-40.5 + pos: -6.0998335,-4.7997775 parent: 2 - uid: 41615 components: @@ -271403,9 +278500,15 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,48.5 parent: 2 + - uid: 53054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.164228,31.494564 + parent: 2 - proto: SinkWide entities: - - uid: 18945 + - uid: 12239 components: - type: Transform rot: 1.5707963267948966 rad @@ -271416,23 +278519,6 @@ entities: - type: Transform pos: -18.5,50.5 parent: 2 - - uid: 25296 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-44.5 - parent: 2 - - uid: 25297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,31.5 - parent: 2 - - uid: 25298 - components: - - type: Transform - pos: -28.5,33.5 - parent: 2 - uid: 25300 components: - type: Transform @@ -271495,6 +278581,15 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-22.5 parent: 2 +- proto: Sledgehammer + entities: + - uid: 899 + components: + - type: Transform + parent: 5723 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SlipocalypseClusterSoap entities: - uid: 54062 @@ -271667,6 +278762,16 @@ entities: - type: Transform pos: 59.5,44.5 parent: 2 + - uid: 21410 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - uid: 21469 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 - uid: 22750 components: - type: MetaData @@ -271889,26 +278994,21 @@ entities: parent: 45711 - proto: soda_dispenser entities: - - uid: 11794 - components: - - type: Transform - pos: 18.5,51.5 - parent: 2 - - uid: 25319 + - uid: 1716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-41.5 + pos: -6.5,-2.5 parent: 2 - - uid: 25321 + - uid: 11453 components: - type: Transform - pos: -54.5,5.5 + rot: 1.5707963267948966 rad + pos: -18.5,37.5 parent: 2 - - uid: 30583 + - uid: 11794 components: - type: Transform - pos: -17.5,39.5 + pos: 18.5,51.5 parent: 2 - uid: 43309 components: @@ -273692,6 +280792,11 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,9.5 parent: 2 + - uid: 22487 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 - uid: 43415 components: - type: Transform @@ -273798,6 +280903,11 @@ entities: - type: Transform pos: -13.620975,2.6447372 parent: 34641 + - uid: 51410 + components: + - type: Transform + pos: 31.672909,4.5441065 + parent: 2 - proto: SpaceHeater entities: - uid: 51658 @@ -273817,8 +280927,6 @@ entities: - type: Transform pos: 6.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: SpacemenFigureSpawner entities: - uid: 31889 @@ -274160,6 +281268,10 @@ entities: - type: Transform pos: -46.5,-67.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 25554 components: - type: MetaData @@ -274168,6 +281280,10 @@ entities: - type: Transform pos: -44.5,-67.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 25555 components: - type: MetaData @@ -274176,6 +281292,10 @@ entities: - type: Transform pos: -42.5,-67.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 25556 components: - type: MetaData @@ -274184,6 +281304,10 @@ entities: - type: Transform pos: -41.5,-67.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 25557 components: - type: MetaData @@ -274193,6 +281317,10 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-69.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 25558 components: - type: MetaData @@ -274202,6 +281330,10 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-69.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 25559 components: - type: MetaData @@ -274211,6 +281343,10 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-69.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - proto: SpaceVillainArcadeComputerCircuitboard entities: - uid: 52080 @@ -274226,30 +281362,30 @@ entities: - type: Transform pos: -37.5,7.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 25562 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,17.5 parent: 2 - - uid: 25563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,17.5 - parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 25564 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,19.5 parent: 2 - - uid: 25565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,19.5 - parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 34115 components: - type: Transform @@ -274262,24 +281398,40 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-37.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 35637 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-38.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 37819 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,17.5 parent: 36861 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 42415 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,0.5 parent: 2 + - type: Advertise + enabled: False + - type: SpamEmitSound + enabled: False - uid: 53521 components: - type: Transform @@ -274342,6 +281494,38 @@ entities: - type: Transform pos: -16.5,15.5 parent: 45711 +- proto: SpawnMobButterfly + entities: + - uid: 53885 + components: + - type: Transform + pos: -87.5,-5.5 + parent: 2 + - uid: 53886 + components: + - type: Transform + pos: -85.5,-9.5 + parent: 2 + - uid: 53887 + components: + - type: Transform + pos: -82.5,-5.5 + parent: 2 + - uid: 53889 + components: + - type: Transform + pos: -78.5,-4.5 + parent: 2 + - uid: 53892 + components: + - type: Transform + pos: -77.5,-7.5 + parent: 2 + - uid: 55870 + components: + - type: Transform + pos: -81.5,-9.5 + parent: 2 - proto: SpawnMobCarp entities: - uid: 32872 @@ -274751,10 +281935,10 @@ entities: parent: 2 - proto: SpawnMobCorgi entities: - - uid: 25577 + - uid: 24493 components: - type: Transform - pos: -12.5,-7.5 + pos: -12.5,-8.5 parent: 2 - proto: SpawnMobCrab entities: @@ -274977,11 +282161,6 @@ entities: - type: Transform pos: -66.5,-23.5 parent: 2 - - uid: 25606 - components: - - type: Transform - pos: -44.5,-28.5 - parent: 2 - uid: 26467 components: - type: Transform @@ -275266,11 +282445,6 @@ entities: - type: Transform pos: -16.5,37.5 parent: 2 - - uid: 10067 - components: - - type: Transform - pos: -55.5,4.5 - parent: 2 - uid: 14594 components: - type: Transform @@ -275381,10 +282555,10 @@ entities: parent: 2 - proto: SpawnPointChef entities: - - uid: 25638 + - uid: 1692 components: - type: Transform - pos: -26.5,31.5 + pos: -26.5,29.5 parent: 2 - uid: 25639 components: @@ -275424,15 +282598,15 @@ entities: parent: 2 - proto: SpawnPointClown entities: - - uid: 25645 + - uid: 15371 components: - type: Transform - pos: -64.5,9.5 + pos: -24.5,67.5 parent: 2 - - uid: 43918 + - uid: 25645 components: - type: Transform - pos: -23.5,62.5 + pos: -64.5,9.5 parent: 2 - proto: SpawnPointDetective entities: @@ -275443,10 +282617,10 @@ entities: parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 25647 + - uid: 45307 components: - type: Transform - pos: -16.5,-7.5 + pos: -17.5,-8.5 parent: 2 - proto: SpawnPointHeadOfSecurity entities: @@ -275479,20 +282653,10 @@ entities: parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 1206 - components: - - type: Transform - pos: -90.5,-8.5 - parent: 2 - - uid: 1207 - components: - - type: Transform - pos: -90.5,-9.5 - parent: 2 - uid: 1208 components: - type: Transform - pos: -90.5,-10.5 + pos: -74.5,-4.5 parent: 2 - uid: 1209 components: @@ -275524,20 +282688,25 @@ entities: - type: Transform pos: -72.5,15.5 parent: 2 - - uid: 1218 + - uid: 4917 components: - type: Transform - pos: -90.5,-4.5 + pos: -80.5,-11.5 parent: 2 - - uid: 1219 + - uid: 5213 components: - type: Transform - pos: -90.5,-5.5 + pos: -79.5,-10.5 parent: 2 - - uid: 1220 + - uid: 6791 + components: + - type: Transform + pos: -94.5,-8.5 + parent: 2 + - uid: 23041 components: - type: Transform - pos: -90.5,-6.5 + pos: -74.5,-10.5 parent: 2 - proto: SpawnPointLawyer entities: @@ -275683,20 +282852,25 @@ entities: parent: 2 - proto: SpawnPointPassenger entities: + - uid: 1219 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 - uid: 6706 components: - type: Transform pos: -37.5,18.5 parent: 2 - - uid: 8988 + - uid: 6782 components: - type: Transform - pos: -9.5,29.5 + pos: -80.5,-9.5 parent: 2 - - uid: 19472 + - uid: 8988 components: - type: Transform - pos: -76.5,-5.5 + pos: -9.5,29.5 parent: 2 - uid: 22006 components: @@ -275748,11 +282922,6 @@ entities: - type: Transform pos: -52.5,-3.5 parent: 2 - - uid: 43702 - components: - - type: Transform - pos: -90.5,-10.5 - parent: 2 - uid: 43850 components: - type: Transform @@ -275798,16 +282967,6 @@ entities: - type: Transform pos: -27.5,5.5 parent: 2 - - uid: 45279 - components: - - type: Transform - pos: -76.5,-9.5 - parent: 2 - - uid: 45280 - components: - - type: Transform - pos: -93.5,-8.5 - parent: 2 - uid: 45281 components: - type: Transform @@ -275843,6 +283002,11 @@ entities: - type: Transform pos: -5.5,33.5 parent: 2 + - uid: 53881 + components: + - type: Transform + pos: -93.5,-7.5 + parent: 2 - proto: SpawnPointPsychologist entities: - uid: 25678 @@ -276163,11 +283327,6 @@ entities: - type: Transform pos: -32.5,38.5 parent: 2 - - uid: 25708 - components: - - type: Transform - pos: -21.5,30.5 - parent: 2 - uid: 25710 components: - type: Transform @@ -276188,6 +283347,11 @@ entities: - type: Transform pos: -63.5,-0.5 parent: 2 + - uid: 51624 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 - proto: SpawnPointStationEngineer entities: - uid: 25712 @@ -276889,6 +284053,11 @@ entities: parent: 45711 - proto: SprayBottleSpaceCleaner entities: + - uid: 11840 + components: + - type: Transform + pos: -6.6557317,-5.4583855 + parent: 2 - uid: 19208 components: - type: Transform @@ -276919,6 +284088,11 @@ entities: - type: Transform pos: 3.3383493,-19.349682 parent: 33049 + - uid: 53055 + components: + - type: Transform + pos: -29.23258,31.838617 + parent: 2 - proto: SprayBottleWater entities: - uid: 7041 @@ -276926,6 +284100,11 @@ entities: - type: Transform pos: -56.7606,-2.2009182 parent: 2 + - uid: 21945 + components: + - type: Transform + pos: -54.429203,-4.8406224 + parent: 2 - proto: SS13Memorial entities: - uid: 12264 @@ -276965,13 +284144,106 @@ entities: - type: Transform pos: 1.5,-1.5 parent: 45711 + - uid: 54179 + components: + - type: Transform + pos: -77.5,23.5 + parent: 2 + - uid: 54182 + components: + - type: Transform + pos: -59.5,23.5 + parent: 2 + - uid: 54183 + components: + - type: Transform + pos: -57.5,23.5 + parent: 2 + - uid: 54184 + components: + - type: Transform + pos: -95.5,23.5 + parent: 2 + - uid: 54185 + components: + - type: Transform + pos: -94.5,23.5 + parent: 2 + - uid: 54186 + components: + - type: Transform + pos: -93.5,23.5 + parent: 2 + - uid: 54187 + components: + - type: Transform + pos: -76.5,23.5 + parent: 2 + - uid: 54189 + components: + - type: Transform + pos: -58.5,23.5 + parent: 2 + - uid: 54190 + components: + - type: Transform + pos: -75.5,23.5 + parent: 2 + - uid: 54198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,23.5 + parent: 2 + - uid: 54199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,22.5 + parent: 2 + - uid: 54200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,21.5 + parent: 2 - proto: StairStage entities: + - uid: 727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,44.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,28.5 + parent: 2 - uid: 30146 components: - type: Transform pos: 6.5,47.5 parent: 2 + - uid: 51891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,1.5 + parent: 2 + - uid: 51892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 2 + - uid: 51894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-7.5 + parent: 2 - uid: 53698 components: - type: Transform @@ -276998,8 +284270,23 @@ entities: - type: Transform pos: -29.5,54.5 parent: 45711 + - uid: 54201 + components: + - type: Transform + pos: -22.5,53.5 + parent: 2 + - uid: 54203 + components: + - type: Transform + pos: -20.5,53.5 + parent: 2 - proto: StairStageDark entities: + - uid: 24766 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 - uid: 52976 components: - type: Transform @@ -277022,13 +284309,27 @@ entities: parent: 45711 - proto: StairStageWhite entities: - - uid: 19126 + - uid: 15296 components: - type: MetaData - desc: Белая полка для продуктов. + desc: Полка для хранения продуктов. name: продуктовая полка - type: Transform - pos: -25.5,33.5 + pos: -31.5,30.5 + parent: 2 + - uid: 26144 + components: + - type: MetaData + desc: Полка, для хранения продуктов. + name: продуктовая полка + - type: Transform + pos: -27.5,33.5 + parent: 2 + - uid: 26918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,27.5 parent: 2 - proto: StairStageWood entities: @@ -277042,6 +284343,17 @@ entities: - type: Transform pos: -18.5,60.5 parent: 2 + - uid: 9949 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 + - uid: 11212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,25.5 + parent: 2 - uid: 11303 components: - type: Transform @@ -277064,6 +284376,19 @@ entities: rot: 3.141592653589793 rad pos: -24.5,64.5 parent: 2 + - uid: 30978 + components: + - type: Transform + pos: -17.5,32.5 + parent: 2 +- proto: StairWood + entities: + - uid: 21684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,49.5 + parent: 2 - proto: StasisBed entities: - uid: 25745 @@ -277226,11 +284551,11 @@ entities: parent: 45518 - proto: SteelBench entities: - - uid: 674 + - uid: 221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,24.5 + rot: 1.5707963267948966 rad + pos: -46.5,22.5 parent: 2 - uid: 870 components: @@ -277256,17 +284581,35 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,60.5 parent: 2 + - uid: 6890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,13.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,23.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,21.5 + parent: 2 - uid: 6988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-5.5 + rot: -1.5707963267948966 rad + pos: -49.5,22.5 parent: 2 - uid: 6990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-4.5 + rot: -1.5707963267948966 rad + pos: -49.5,14.5 parent: 2 - uid: 8232 components: @@ -277274,73 +284617,89 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,25.5 parent: 2 - - uid: 9973 + - uid: 10405 components: - type: Transform - pos: -18.5,56.5 + rot: -1.5707963267948966 rad + pos: -49.5,15.5 parent: 2 - - uid: 9976 + - uid: 10406 components: - type: Transform - pos: -23.5,58.5 + rot: -1.5707963267948966 rad + pos: -75.5,27.5 parent: 2 - - uid: 10081 + - uid: 10410 components: - type: Transform - pos: -19.5,56.5 + rot: -1.5707963267948966 rad + pos: -75.5,28.5 parent: 2 - uid: 10416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,56.5 + rot: -1.5707963267948966 rad + pos: -75.5,29.5 parent: 2 - uid: 10453 components: - type: Transform - pos: -19.5,58.5 + rot: -1.5707963267948966 rad + pos: -75.5,30.5 parent: 2 - uid: 10454 components: - type: Transform - pos: -19.5,57.5 + rot: 1.5707963267948966 rad + pos: -77.5,30.5 parent: 2 - uid: 10455 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,58.5 + rot: 1.5707963267948966 rad + pos: -77.5,29.5 parent: 2 - uid: 10456 components: - type: Transform - pos: -23.5,57.5 + rot: 1.5707963267948966 rad + pos: -77.5,28.5 parent: 2 - uid: 10459 components: - type: Transform - pos: -23.5,56.5 + rot: 1.5707963267948966 rad + pos: -77.5,27.5 parent: 2 - - uid: 11359 + - uid: 11059 components: - type: Transform - pos: -25.5,57.5 + rot: 1.5707963267948966 rad + pos: -59.5,29.5 parent: 2 - - uid: 11458 + - uid: 11068 components: - type: Transform - pos: -25.5,56.5 + rot: 1.5707963267948966 rad + pos: -59.5,28.5 parent: 2 - - uid: 14621 + - uid: 11076 components: - type: Transform - pos: -18.5,57.5 + rot: 1.5707963267948966 rad + pos: -46.5,23.5 parent: 2 - - uid: 15171 + - uid: 11103 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,24.5 + pos: -59.5,30.5 + parent: 2 + - uid: 11823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,27.5 parent: 2 - uid: 15322 components: @@ -277360,17 +284719,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,50.5 parent: 2 - - uid: 19744 - components: - - type: Transform - pos: -18.5,58.5 - parent: 2 - - uid: 19790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,57.5 - parent: 2 - uid: 20305 components: - type: Transform @@ -277386,12 +284734,20 @@ entities: - uid: 20444 components: - type: Transform - pos: -24.5,57.5 + rot: -1.5707963267948966 rad + pos: -57.5,27.5 parent: 2 - uid: 20445 components: - type: Transform - pos: -24.5,58.5 + rot: -1.5707963267948966 rad + pos: -57.5,28.5 + parent: 2 + - uid: 20862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,29.5 parent: 2 - uid: 20938 components: @@ -277405,27 +284761,35 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,65.5 parent: 2 - - uid: 21256 + - uid: 22609 components: - type: Transform - pos: -24.5,56.5 + rot: 1.5707963267948966 rad + pos: -46.5,21.5 parent: 2 - - uid: 21262 + - uid: 22861 components: - type: Transform - pos: -25.5,58.5 + rot: -1.5707963267948966 rad + pos: -57.5,30.5 parent: 2 - - uid: 23531 + - uid: 22862 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-1.5 + pos: -46.5,13.5 parent: 2 - - uid: 26411 + - uid: 22863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-1.5 + rot: 1.5707963267948966 rad + pos: -46.5,14.5 + parent: 2 + - uid: 22865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,15.5 parent: 2 - uid: 28203 components: @@ -277553,18 +284917,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,57.5 parent: 2 - - uid: 41861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-10.5 - parent: 2 - - uid: 42016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-9.5 - parent: 2 - uid: 42027 components: - type: Transform @@ -277796,18 +285148,18 @@ entities: canCollide: False - proto: Stool entities: + - uid: 32399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.503032,26.801474 + parent: 2 - uid: 37822 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,7.5 parent: 36861 - - uid: 42798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,27.5 - parent: 2 - uid: 45461 components: - type: Transform @@ -277835,41 +285187,12 @@ entities: parent: 43176 - proto: StoolBar entities: - - uid: 12616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,34.5 - parent: 2 - - uid: 18364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,1.5 - parent: 2 - uid: 20006 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-4.5 parent: 2 - - uid: 24649 - components: - - type: Transform - pos: -15.5,34.5 - parent: 2 - - uid: 24675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,34.5 - parent: 2 - - uid: 25582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,34.5 - parent: 2 - uid: 25761 components: - type: Transform @@ -277909,11 +285232,6 @@ entities: - type: Transform pos: 27.5,-38.5 parent: 2 - - uid: 25768 - components: - - type: Transform - pos: 26.5,-38.5 - parent: 2 - uid: 25769 components: - type: Transform @@ -277924,36 +285242,6 @@ entities: - type: Transform pos: 29.5,-44.5 parent: 2 - - uid: 25773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,5.5 - parent: 2 - - uid: 25774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,4.5 - parent: 2 - - uid: 25775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,3.5 - parent: 2 - - uid: 25777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,1.5 - parent: 2 - - uid: 25778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,1.5 - parent: 2 - uid: 25779 components: - type: Transform @@ -277994,6 +285282,30 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-71.5 parent: 2 + - uid: 26100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,34.5 + parent: 2 + - uid: 32491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,34.5 + parent: 2 + - uid: 32520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,34.5 + parent: 2 + - uid: 32521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,34.5 + parent: 2 - uid: 35639 components: - type: Transform @@ -278066,85 +285378,61 @@ entities: - type: Transform pos: 32.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 1065 components: - type: Transform pos: 64.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5477 components: - type: Transform pos: 66.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5830 components: - type: Transform pos: 41.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7877 components: - type: Transform pos: 3.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 22024 components: - type: Transform pos: 32.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 23812 components: - type: Transform pos: 65.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 25788 components: - type: Transform pos: -38.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 26217 components: - type: Transform pos: 41.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28712 components: - type: Transform pos: 2.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 32014 components: - type: Transform pos: 43.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 41769 components: - type: Transform pos: 43.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: StorageImplanter entities: - uid: 54407 @@ -278231,6 +285519,11 @@ entities: - type: Transform pos: -32.793297,-25.513464 parent: 2 + - uid: 35962 + components: + - type: Transform + pos: -32.646908,-25.399143 + parent: 2 - proto: SubstationBasic entities: - uid: 5105 @@ -278243,7 +285536,7 @@ entities: - uid: 7836 components: - type: MetaData - name: Отдел снабжения, рынок и мусоропереработка + name: Отдел снабжения, ларёк и мусоропереработка - type: Transform pos: 46.5,8.5 parent: 2 @@ -278376,7 +285669,7 @@ entities: - uid: 27153 components: - type: MetaData - name: Сингулярность + name: Комната УЧ - type: Transform pos: 58.5,36.5 parent: 2 @@ -278419,7 +285712,7 @@ entities: - uid: 28693 components: - type: Transform - pos: 59.130154,46.653145 + pos: 59.09606,46.728992 parent: 2 - uid: 52086 components: @@ -278802,6 +286095,17 @@ entities: - SurveillanceCameraCommand nameSet: True id: Офис капитана + - uid: 11725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Комната отдыха - uid: 24997 components: - type: Transform @@ -278849,14 +286153,14 @@ entities: - uid: 25840 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-3.5 + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Офис Главы Персонала + id: Офис ГП - uid: 25842 components: - type: Transform @@ -278868,27 +286172,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Офис Квартирмейстера - - uid: 25843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Переговорная - - uid: 25844 - components: - - type: Transform - pos: -0.5,3.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик - uid: 25845 components: - type: Transform @@ -278952,6 +286235,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: ИИ Маршрутизаторы Камер + - uid: 26550 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик - uid: 42707 components: - type: Transform @@ -279224,13 +286517,24 @@ entities: - uid: 23174 components: - type: Transform - pos: 29.5,-0.5 + rot: -1.5707963267948966 rad + pos: 38.5,-1.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: 'Коридор: рынок' + id: 'Коридор: приёмная отдела снаб.' + - uid: 23194 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Коридор: ларёк' - uid: 23832 components: - type: Transform @@ -279467,16 +286771,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: 'Коридор: отдел сб' - - uid: 45947 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Коридор: отдел снабжения' - uid: 45948 components: - type: Transform @@ -280541,6 +287835,18 @@ entities: - type: Transform pos: -33.90924,38.581177 parent: 45711 +- proto: SyndicateWhistle + entities: + - uid: 14364 + components: + - type: MetaData + desc: Поднимите свою фуражку и бросьте солдат через окопы! Слава НТ! + name: офицерский свисток + - type: Transform + parent: 1899 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SyndieFlag entities: - uid: 49367 @@ -280826,6 +288132,11 @@ entities: - type: Transform pos: -48.5,37.5 parent: 2 + - uid: 8127 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 - uid: 8143 components: - type: Transform @@ -280877,6 +288188,12 @@ entities: - type: Transform pos: 1.5,-58.5 parent: 2 + - uid: 11189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-43.5 + parent: 2 - uid: 11460 components: - type: Transform @@ -280897,12 +288214,6 @@ entities: - type: Transform pos: -34.5,-38.5 parent: 2 - - uid: 12287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,31.5 - parent: 2 - uid: 12418 components: - type: Transform @@ -280913,6 +288224,17 @@ entities: - type: Transform pos: 49.5,6.5 parent: 2 + - uid: 12790 + components: + - type: Transform + pos: -26.5,25.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,26.5 + parent: 2 - uid: 13050 components: - type: Transform @@ -280983,11 +288305,6 @@ entities: - type: Transform pos: -41.5,36.5 parent: 2 - - uid: 16733 - components: - - type: Transform - pos: -27.5,30.5 - parent: 2 - uid: 17390 components: - type: Transform @@ -281008,11 +288325,6 @@ entities: - type: Transform pos: 47.5,-26.5 parent: 2 - - uid: 19165 - components: - - type: Transform - pos: -24.5,32.5 - parent: 2 - uid: 19751 components: - type: Transform @@ -281023,24 +288335,6 @@ entities: - type: Transform pos: -64.5,-11.5 parent: 2 - - uid: 20862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-11.5 - parent: 2 - - uid: 20863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-8.5 - parent: 2 - - uid: 20864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-3.5 - parent: 2 - uid: 21212 components: - type: Transform @@ -281086,11 +288380,23 @@ entities: - type: Transform pos: 60.5,-31.5 parent: 2 + - uid: 22440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,31.5 + parent: 2 - uid: 22698 components: - type: Transform pos: 59.5,9.5 parent: 2 + - uid: 22699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,25.5 + parent: 2 - uid: 22924 components: - type: Transform @@ -281101,16 +288407,38 @@ entities: - type: Transform pos: 59.5,-29.5 parent: 2 + - uid: 23224 + components: + - type: Transform + pos: -45.5,-31.5 + parent: 2 - uid: 23841 components: - type: Transform pos: 34.5,-2.5 parent: 2 + - uid: 23952 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 - uid: 24690 components: - type: Transform pos: -48.5,-52.5 parent: 2 + - uid: 25066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 2 + - uid: 25297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,31.5 + parent: 2 - uid: 25627 components: - type: Transform @@ -281136,11 +288464,6 @@ entities: - type: Transform pos: 59.5,-31.5 parent: 2 - - uid: 25966 - components: - - type: Transform - pos: -29.5,27.5 - parent: 2 - uid: 25967 components: - type: Transform @@ -281284,18 +288607,6 @@ entities: - type: Transform pos: 5.5,-34.5 parent: 2 - - uid: 26027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,26.5 - parent: 2 - - uid: 26028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,30.5 - parent: 2 - uid: 26034 components: - type: Transform @@ -281362,12 +288673,6 @@ entities: - type: Transform pos: 17.5,-31.5 parent: 2 - - uid: 26053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,30.5 - parent: 2 - uid: 26055 components: - type: Transform @@ -281379,11 +288684,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,28.5 parent: 2 - - uid: 26061 - components: - - type: Transform - pos: -24.5,33.5 - parent: 2 - uid: 26063 components: - type: Transform @@ -281455,77 +288755,11 @@ entities: rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 - - uid: 26095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-48.5 - parent: 2 - uid: 26096 components: - type: Transform pos: 37.5,-36.5 parent: 2 - - uid: 26097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-46.5 - parent: 2 - - uid: 26098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-45.5 - parent: 2 - - uid: 26099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-43.5 - parent: 2 - - uid: 26100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-47.5 - parent: 2 - - uid: 26101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-47.5 - parent: 2 - - uid: 26102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-47.5 - parent: 2 - - uid: 26103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-47.5 - parent: 2 - - uid: 26104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-43.5 - parent: 2 - - uid: 26105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-43.5 - parent: 2 - - uid: 26106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-43.5 - parent: 2 - uid: 26109 components: - type: Transform @@ -281564,11 +288798,6 @@ entities: - type: Transform pos: -17.5,-66.5 parent: 2 - - uid: 26121 - components: - - type: Transform - pos: -27.5,34.5 - parent: 2 - uid: 26123 components: - type: Transform @@ -281661,12 +288890,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,48.5 parent: 2 - - uid: 26144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,25.5 - parent: 2 - uid: 26146 components: - type: Transform @@ -281720,36 +288943,6 @@ entities: - type: Transform pos: 75.5,-6.5 parent: 2 - - uid: 26158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,25.5 - parent: 2 - - uid: 26159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,31.5 - parent: 2 - - uid: 26160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,27.5 - parent: 2 - - uid: 26165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-10.5 - parent: 2 - - uid: 26170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,28.5 - parent: 2 - uid: 26171 components: - type: Transform @@ -281868,11 +289061,6 @@ entities: - type: Transform pos: -87.5,-27.5 parent: 2 - - uid: 26204 - components: - - type: Transform - pos: -45.5,-24.5 - parent: 2 - uid: 26205 components: - type: Transform @@ -281944,6 +289132,18 @@ entities: - type: Transform pos: 33.5,-2.5 parent: 2 + - uid: 26630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-43.5 + parent: 2 + - uid: 26902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,25.5 + parent: 2 - uid: 27565 components: - type: Transform @@ -282075,6 +289275,23 @@ entities: - type: Transform pos: -11.5,53.5 parent: 2 + - uid: 32293 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 2 + - uid: 32295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-43.5 + parent: 2 + - uid: 32396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-43.5 + parent: 2 - uid: 32422 components: - type: Transform @@ -282336,12 +289553,6 @@ entities: - type: Transform pos: -65.5,-11.5 parent: 2 - - uid: 41551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-6.5 - parent: 2 - uid: 42028 components: - type: Transform @@ -282362,11 +289573,6 @@ entities: - type: Transform pos: 49.5,73.5 parent: 2 - - uid: 42695 - components: - - type: Transform - pos: -27.5,25.5 - parent: 2 - uid: 43251 components: - type: Transform @@ -282377,6 +289583,11 @@ entities: - type: Transform pos: -55.5,25.5 parent: 2 + - uid: 43439 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 - uid: 43964 components: - type: Transform @@ -282552,16 +289763,6 @@ entities: - type: Transform pos: 36.5,-19.5 parent: 2 - - uid: 47712 - components: - - type: Transform - pos: -41.5,-27.5 - parent: 2 - - uid: 47714 - components: - - type: Transform - pos: -43.5,-27.5 - parent: 2 - uid: 47756 components: - type: Transform @@ -282771,6 +289972,11 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-72.5 parent: 2 + - uid: 51900 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 - uid: 52094 components: - type: Transform @@ -282811,6 +290017,12 @@ entities: - type: Transform pos: -4.5,69.5 parent: 45711 + - uid: 53053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,31.5 + parent: 2 - uid: 53120 components: - type: Transform @@ -282856,6 +290068,18 @@ entities: - type: Transform pos: 4.5,64.5 parent: 45711 + - uid: 53239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,28.5 + parent: 2 + - uid: 53240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,27.5 + parent: 2 - uid: 53305 components: - type: Transform @@ -282891,6 +290115,11 @@ entities: - type: Transform pos: -36.5,49.5 parent: 45711 + - uid: 56126 + components: + - type: Transform + pos: -46.5,-24.5 + parent: 2 - uid: 56265 components: - type: Transform @@ -282905,11 +290134,6 @@ entities: parent: 2 - proto: TableCarpet entities: - - uid: 1817 - components: - - type: Transform - pos: -20.5,28.5 - parent: 2 - uid: 2843 components: - type: Transform @@ -282920,16 +290144,6 @@ entities: - type: Transform pos: -61.5,0.5 parent: 2 - - uid: 3143 - components: - - type: Transform - pos: -18.5,28.5 - parent: 2 - - uid: 3176 - components: - - type: Transform - pos: -18.5,29.5 - parent: 2 - uid: 4869 components: - type: Transform @@ -282961,20 +290175,20 @@ entities: - type: Transform pos: -37.5,-33.5 parent: 2 - - uid: 13360 + - uid: 9947 components: - type: Transform - pos: -17.5,-3.5 + pos: -5.5,-2.5 parent: 2 - - uid: 13745 + - uid: 11292 components: - type: Transform - pos: -17.5,-5.5 + pos: -6.5,-2.5 parent: 2 - - uid: 14390 + - uid: 16762 components: - type: Transform - pos: -19.5,28.5 + pos: -0.5,4.5 parent: 2 - uid: 18827 components: @@ -282997,11 +290211,10 @@ entities: - type: Transform pos: -5.5,32.5 parent: 2 - - uid: 26234 + - uid: 24882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,29.5 + pos: -17.5,-6.5 parent: 2 - uid: 26242 components: @@ -283062,22 +290275,11 @@ entities: - type: Transform pos: -43.5,-71.5 parent: 2 - - uid: 26263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,29.5 - parent: 2 - uid: 26861 components: - type: Transform pos: -5.5,31.5 parent: 2 - - uid: 28234 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 2 - uid: 30465 components: - type: Transform @@ -283109,11 +290311,21 @@ entities: - type: Transform pos: -9.5,30.5 parent: 2 + - uid: 32346 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 - uid: 32413 components: - type: Transform pos: -11.5,41.5 parent: 2 + - uid: 32785 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 - uid: 32882 components: - type: Transform @@ -283139,16 +290351,6 @@ entities: - type: Transform pos: 79.5,59.5 parent: 2 - - uid: 43002 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 2 - - uid: 44540 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 2 - uid: 49408 components: - type: Transform @@ -283224,6 +290426,11 @@ entities: - type: Transform pos: 30.5,14.5 parent: 45711 + - uid: 51944 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 - uid: 53517 components: - type: Transform @@ -283236,6 +290443,21 @@ entities: - type: Transform pos: 15.5,34.5 parent: 2 + - uid: 32031 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 32033 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - uid: 32035 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 - uid: 41149 components: - type: Transform @@ -283407,6 +290629,11 @@ entities: - type: Transform pos: -24.5,61.5 parent: 2 + - uid: 16916 + components: + - type: Transform + pos: -32.5,51.5 + parent: 2 - uid: 17903 components: - type: Transform @@ -283555,18 +290782,23 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,53.5 parent: 2 - - uid: 42065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,52.5 - parent: 2 - uid: 42696 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-9.5 parent: 2 + - uid: 43721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,53.5 + parent: 2 + - uid: 43723 + components: + - type: Transform + pos: -80.5,-10.5 + parent: 2 - uid: 49434 components: - type: Transform @@ -283635,6 +290867,87 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-45.5 parent: 2 + - uid: 9948 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + - uid: 10837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - uid: 11051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 + - uid: 11057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 2 + - uid: 11069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - uid: 11071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - uid: 11253 + components: + - type: Transform + pos: -18.5,37.5 + parent: 2 + - uid: 26608 + components: + - type: Transform + pos: -18.5,38.5 + parent: 2 + - uid: 26715 + components: + - type: Transform + pos: -16.5,39.5 + parent: 2 + - uid: 26716 + components: + - type: Transform + pos: -17.5,39.5 + parent: 2 + - uid: 26718 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 31228 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 31242 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 31254 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 - uid: 51421 components: - type: Transform @@ -283675,6 +290988,11 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-4.5 parent: 2 + - uid: 51549 + components: + - type: Transform + pos: -21.5,28.5 + parent: 2 - proto: TableFancyCyan entities: - uid: 8044 @@ -283702,25 +291020,19 @@ entities: - type: Transform pos: 16.5,17.5 parent: 2 - - uid: 28439 +- proto: TableFancyGreen + entities: + - uid: 16445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,32.5 + pos: -4.5,-7.5 parent: 2 - proto: TableFancyOrange entities: - - uid: 28479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,31.5 - parent: 2 - - uid: 28480 + - uid: 23159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,31.5 + pos: -19.5,30.5 parent: 2 - uid: 32469 components: @@ -283742,8 +291054,21 @@ entities: - type: Transform pos: 58.5,6.5 parent: 2 +- proto: TableFancyPink + entities: + - uid: 51523 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 - proto: TableFancyPurple entities: + - uid: 22084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,29.5 + parent: 2 - uid: 23323 components: - type: Transform @@ -283754,11 +291079,11 @@ entities: - type: Transform pos: 25.5,-25.5 parent: 2 - - uid: 28440 + - uid: 32527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,25.5 + rot: 3.141592653589793 rad + pos: -14.5,30.5 parent: 2 - uid: 32935 components: @@ -283770,39 +291095,42 @@ entities: - type: Transform pos: 26.5,-26.5 parent: 2 +- proto: TableFancyRed + entities: + - uid: 22853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,25.5 + parent: 2 - proto: TableFancyWhite entities: - - uid: 28119 + - uid: 19790 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,35.5 + pos: 31.5,4.5 parent: 2 - - uid: 28377 + - uid: 20863 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,35.5 + pos: 32.5,4.5 parent: 2 - - uid: 28381 + - uid: 20864 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,35.5 + pos: 33.5,4.5 parent: 2 - - uid: 28382 + - uid: 23471 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,35.5 + pos: 34.5,4.5 parent: 2 - proto: TableFrame entities: - - uid: 21470 - components: - - type: Transform - pos: 27.5,-51.5 - parent: 2 - uid: 26272 components: - type: Transform @@ -283825,11 +291153,6 @@ entities: - type: Transform pos: 30.5,-25.5 parent: 2 - - uid: 26277 - components: - - type: Transform - pos: 23.5,-49.5 - parent: 2 - uid: 26278 components: - type: Transform @@ -284044,11 +291367,6 @@ entities: - type: Transform pos: -22.5,-42.5 parent: 2 - - uid: 26295 - components: - - type: Transform - pos: 24.5,-49.5 - parent: 2 - uid: 26297 components: - type: Transform @@ -284328,6 +291646,12 @@ entities: - type: Transform pos: -48.5,3.5 parent: 2 + - uid: 1656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,33.5 + parent: 2 - uid: 1925 components: - type: Transform @@ -284478,6 +291802,11 @@ entities: - type: Transform pos: -100.5,-18.5 parent: 2 + - uid: 11465 + components: + - type: Transform + pos: 21.5,-48.5 + parent: 2 - uid: 15020 components: - type: Transform @@ -284594,6 +291923,16 @@ entities: - type: Transform pos: -100.5,-19.5 parent: 2 + - uid: 23876 + components: + - type: Transform + pos: -24.5,33.5 + parent: 2 + - uid: 23978 + components: + - type: Transform + pos: -26.5,33.5 + parent: 2 - uid: 24138 components: - type: Transform @@ -284609,12 +291948,6 @@ entities: - type: Transform pos: -25.5,-25.5 parent: 2 - - uid: 24992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 2 - uid: 25158 components: - type: Transform @@ -284632,12 +291965,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-38.5 parent: 2 - - uid: 26311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 2 - uid: 26315 components: - type: Transform @@ -284756,24 +292083,6 @@ entities: - type: Transform pos: -3.5,-22.5 parent: 2 - - uid: 26338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 2 - - uid: 26339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 2 - - uid: 26340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,2.5 - parent: 2 - uid: 26342 components: - type: Transform @@ -284811,12 +292120,6 @@ entities: - type: Transform pos: -8.5,-36.5 parent: 2 - - uid: 26349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 2 - uid: 26351 components: - type: Transform @@ -284876,12 +292179,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-56.5 parent: 2 - - uid: 26361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 2 - uid: 26362 components: - type: Transform @@ -284922,30 +292219,6 @@ entities: - type: Transform pos: 50.5,2.5 parent: 2 - - uid: 26373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 2 - - uid: 26374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 2 - - uid: 26375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 2 - - uid: 26376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 2 - uid: 26377 components: - type: Transform @@ -284956,11 +292229,6 @@ entities: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 26379 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 2 - uid: 26385 components: - type: Transform @@ -285363,6 +292631,11 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,50.5 parent: 2 + - uid: 27670 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 - uid: 28192 components: - type: Transform @@ -285385,6 +292658,11 @@ entities: - type: Transform pos: 7.5,67.5 parent: 2 + - uid: 29972 + components: + - type: Transform + pos: -25.5,33.5 + parent: 2 - uid: 31012 components: - type: Transform @@ -285850,6 +293128,16 @@ entities: - type: Transform pos: 1.5,74.5 parent: 45711 + - uid: 53063 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 53065 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 - uid: 53254 components: - type: Transform @@ -286043,6 +293331,11 @@ entities: - type: Transform pos: 4.5,-53.5 parent: 2 + - uid: 12911 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 - uid: 15373 components: - type: Transform @@ -286089,6 +293382,11 @@ entities: - type: Transform pos: 1.5,-53.5 parent: 2 + - uid: 23720 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 - uid: 24401 components: - type: Transform @@ -286182,6 +293480,12 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,36.5 parent: 2 + - uid: 32774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 - uid: 32853 components: - type: Transform @@ -286220,6 +293524,12 @@ entities: - type: Transform pos: -3.5,8.5 parent: 45711 + - uid: 51945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 - uid: 56055 components: - type: Transform @@ -286227,11 +293537,10 @@ entities: parent: 45711 - proto: TableStone entities: - - uid: 5812 + - uid: 11544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,39.5 + pos: -6.5,-4.5 parent: 2 - uid: 11770 components: @@ -286239,11 +293548,10 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,38.5 parent: 2 - - uid: 21117 + - uid: 15297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,39.5 + pos: -6.5,-5.5 parent: 2 - uid: 23544 components: @@ -286257,16 +293565,16 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,37.5 parent: 2 - - uid: 24761 + - uid: 25536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,38.5 + pos: -24.5,18.5 parent: 2 - - uid: 25536 + - uid: 26102 components: - type: Transform - pos: -24.5,18.5 + rot: 3.141592653589793 rad + pos: -13.5,39.5 parent: 2 - uid: 26534 components: @@ -286305,11 +293613,10 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-54.5 parent: 2 - - uid: 30551 + - uid: 31813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,39.5 + pos: -29.5,31.5 parent: 2 - uid: 34613 components: @@ -286317,6 +293624,11 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,48.5 parent: 45711 + - uid: 53052 + components: + - type: Transform + pos: -29.5,32.5 + parent: 2 - proto: TableWood entities: - uid: 543 @@ -286334,6 +293646,11 @@ entities: - type: Transform pos: -34.5,-5.5 parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 - uid: 1151 components: - type: Transform @@ -286369,10 +293686,10 @@ entities: - type: Transform pos: -7.5,41.5 parent: 2 - - uid: 4917 + - uid: 1703 components: - type: Transform - pos: -39.5,1.5 + pos: -4.5,-2.5 parent: 2 - uid: 6635 components: @@ -286467,21 +293784,31 @@ entities: - type: Transform pos: -17.5,16.5 parent: 2 - - uid: 10410 + - uid: 11218 components: - type: Transform - pos: -43.5,-0.5 + pos: -18.5,43.5 parent: 2 - - uid: 10833 + - uid: 11293 components: - type: Transform - pos: -39.5,0.5 + pos: -17.5,1.5 + parent: 2 + - uid: 11315 + components: + - type: Transform + pos: -0.5,3.5 parent: 2 - uid: 11590 components: - type: Transform pos: -18.5,69.5 parent: 2 + - uid: 11611 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 - uid: 11907 components: - type: Transform @@ -286514,6 +293841,16 @@ entities: - type: Transform pos: -19.5,-37.5 parent: 2 + - uid: 12564 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 14375 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 - uid: 15258 components: - type: Transform @@ -286530,6 +293867,11 @@ entities: rot: 3.141592653589793 rad pos: 4.5,30.5 parent: 2 + - uid: 16733 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 - uid: 17404 components: - type: Transform @@ -286576,6 +293918,16 @@ entities: - type: Transform pos: -4.5,47.5 parent: 2 + - uid: 21140 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 21262 + components: + - type: Transform + pos: -74.5,-11.5 + parent: 2 - uid: 21383 components: - type: Transform @@ -286601,6 +293953,11 @@ entities: - type: Transform pos: 1.5,41.5 parent: 2 + - uid: 22210 + components: + - type: Transform + pos: -74.5,-3.5 + parent: 2 - uid: 22217 components: - type: Transform @@ -286611,6 +293968,11 @@ entities: - type: Transform pos: -17.5,15.5 parent: 2 + - uid: 23489 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 - uid: 23556 components: - type: Transform @@ -286636,11 +293998,6 @@ entities: - type: Transform pos: -21.5,-81.5 parent: 2 - - uid: 24685 - components: - - type: Transform - pos: -43.5,0.5 - parent: 2 - uid: 25323 components: - type: Transform @@ -286656,6 +294013,11 @@ entities: - type: Transform pos: 19.5,51.5 parent: 2 + - uid: 25843 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 - uid: 26544 components: - type: Transform @@ -286671,21 +294033,6 @@ entities: - type: Transform pos: 48.5,-12.5 parent: 2 - - uid: 26550 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 2 - - uid: 26551 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 2 - - uid: 26552 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 2 - uid: 26571 components: - type: Transform @@ -286786,46 +294133,6 @@ entities: - type: Transform pos: -33.5,13.5 parent: 2 - - uid: 26608 - components: - - type: Transform - pos: -57.5,5.5 - parent: 2 - - uid: 26624 - components: - - type: Transform - pos: 24.5,-39.5 - parent: 2 - - uid: 26626 - components: - - type: Transform - pos: 25.5,-39.5 - parent: 2 - - uid: 26627 - components: - - type: Transform - pos: 26.5,-39.5 - parent: 2 - - uid: 26628 - components: - - type: Transform - pos: 27.5,-39.5 - parent: 2 - - uid: 26629 - components: - - type: Transform - pos: 24.5,-41.5 - parent: 2 - - uid: 26630 - components: - - type: Transform - pos: 25.5,-41.5 - parent: 2 - - uid: 26631 - components: - - type: Transform - pos: 26.5,-41.5 - parent: 2 - uid: 26632 components: - type: Transform @@ -286838,16 +294145,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-45.5 parent: 2 - - uid: 26634 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 2 - - uid: 26635 - components: - - type: Transform - pos: 25.5,-36.5 - parent: 2 - uid: 26636 components: - type: Transform @@ -286868,11 +294165,6 @@ entities: - type: Transform pos: -12.5,-45.5 parent: 2 - - uid: 26675 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 2 - uid: 26678 components: - type: Transform @@ -286938,11 +294230,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,13.5 parent: 2 - - uid: 26694 - components: - - type: Transform - pos: -57.5,4.5 - parent: 2 - uid: 26695 components: - type: Transform @@ -286999,36 +294286,6 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,23.5 parent: 2 - - uid: 26713 - components: - - type: Transform - pos: -57.5,3.5 - parent: 2 - - uid: 26714 - components: - - type: Transform - pos: -57.5,2.5 - parent: 2 - - uid: 26715 - components: - - type: Transform - pos: -56.5,2.5 - parent: 2 - - uid: 26716 - components: - - type: Transform - pos: -55.5,2.5 - parent: 2 - - uid: 26717 - components: - - type: Transform - pos: -55.5,5.5 - parent: 2 - - uid: 26718 - components: - - type: Transform - pos: -54.5,5.5 - parent: 2 - uid: 26719 components: - type: Transform @@ -287103,16 +294360,16 @@ entities: - type: Transform pos: 51.5,-67.5 parent: 2 - - uid: 27264 + - uid: 26894 components: - type: Transform - pos: -14.5,-45.5 + rot: -1.5707963267948966 rad + pos: 24.5,-39.5 parent: 2 - - uid: 27396 + - uid: 27264 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-4.5 + pos: -14.5,-45.5 parent: 2 - uid: 27423 components: @@ -287214,6 +294471,26 @@ entities: - type: Transform pos: -11.5,34.5 parent: 2 + - uid: 32747 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 32772 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - uid: 32924 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 33494 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 - uid: 34590 components: - type: Transform @@ -287224,6 +294501,11 @@ entities: - type: Transform pos: -11.5,29.5 parent: 2 + - uid: 35603 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 - uid: 35638 components: - type: Transform @@ -287263,16 +294545,10 @@ entities: - type: Transform pos: -13.5,-45.5 parent: 2 - - uid: 43001 - components: - - type: Transform - pos: -18.5,-4.5 - parent: 2 - uid: 43120 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-3.5 + pos: -12.5,-4.5 parent: 2 - uid: 43299 components: @@ -287308,6 +294584,11 @@ entities: - type: Transform pos: -13.5,18.5 parent: 2 + - uid: 48476 + components: + - type: Transform + pos: -74.5,-5.5 + parent: 2 - uid: 49460 components: - type: Transform @@ -287393,6 +294674,16 @@ entities: - type: Transform pos: 12.5,-63.5 parent: 2 + - uid: 51367 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 51369 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 - uid: 51436 components: - type: Transform @@ -287416,6 +294707,36 @@ entities: - type: Transform pos: 23.5,-71.5 parent: 2 + - uid: 51625 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 51628 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 51890 + components: + - type: Transform + pos: -74.5,-9.5 + parent: 2 + - uid: 53064 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 53066 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 53067 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 - uid: 53457 components: - type: Transform @@ -287461,6 +294782,11 @@ entities: - type: Transform pos: -19.5,55.5 parent: 45711 + - uid: 54207 + components: + - type: Transform + pos: -65.5,17.5 + parent: 2 - uid: 56044 components: - type: Transform @@ -287485,11 +294811,6 @@ entities: - type: Transform pos: -34.5,-11.5 parent: 2 - - uid: 12020 - components: - - type: Transform - pos: -32.5,51.5 - parent: 2 - uid: 14118 components: - type: Transform @@ -287523,6 +294844,16 @@ entities: parent: 45711 - proto: TargetDarts entities: + - uid: 11471 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + pos: -64.5,4.5 + parent: 2 - uid: 17944 components: - type: Transform @@ -287533,6 +294864,11 @@ entities: - type: Transform pos: 11.5,24.5 parent: 45711 + - uid: 51540 + components: + - type: Transform + pos: -15.738059,27.161884 + parent: 2 - proto: TargetHuman entities: - uid: 5609 @@ -287717,8 +295053,6 @@ entities: - type: Transform pos: 42.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: ApcPowerReceiver powerDisabled: True - proto: TegCirculator @@ -287973,6 +295307,11 @@ entities: ents: [] - proto: Telecrystal1 entities: + - uid: 14137 + components: + - type: Transform + pos: 40.40247,3.8382509 + parent: 2 - uid: 22292 components: - type: Transform @@ -287985,11 +295324,6 @@ entities: parent: 28540 - type: Physics canCollide: False - - uid: 30187 - components: - - type: Transform - pos: -14.541792,-13.5069 - parent: 2 - uid: 43111 components: - type: Transform @@ -288066,6 +295400,13 @@ entities: rot: 1.5707963267948966 rad pos: 35.49872,29.517357 parent: 2 +- proto: ThievingGloves + entities: + - uid: 32711 + components: + - type: Transform + pos: 40.49096,4.7093935 + parent: 2 - proto: Thruster entities: - uid: 7182 @@ -288149,34 +295490,39 @@ entities: - type: Transform pos: -1.5,6.5 parent: 32764 - - uid: 32856 - components: - - type: Transform - pos: -1.5,6.5 - parent: 32764 + - type: Thruster + thrust: 1000 - uid: 32857 components: - type: Transform pos: 2.5,6.5 parent: 32764 + - type: Thruster + thrust: 1000 - uid: 32858 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 32764 + - type: Thruster + thrust: 1000 - uid: 32859 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 32764 + - type: Thruster + thrust: 1000 - uid: 32860 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 32764 + - type: Thruster + thrust: 1000 - uid: 35879 components: - type: Transform @@ -288224,6 +295570,8 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-8.5 parent: 44868 + - type: Thruster + thrust: 1000 - uid: 45176 components: - type: Transform @@ -288236,6 +295584,8 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-8.5 parent: 44868 + - type: Thruster + thrust: 1000 - uid: 45178 components: - type: Transform @@ -288282,28 +295632,38 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-0.5 parent: 44868 + - type: Thruster + thrust: 1000 - uid: 45186 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 44868 + - type: Thruster + thrust: 1000 - uid: 45249 components: - type: Transform pos: -1.5,2.5 parent: 44868 + - type: Thruster + thrust: 1000 - uid: 45250 components: - type: Transform pos: 4.5,2.5 parent: 44868 + - type: Thruster + thrust: 1000 - uid: 47315 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 32764 + - type: Thruster + thrust: 1000 - uid: 49490 components: - type: Transform @@ -288453,6 +295813,26 @@ entities: - type: Transform pos: 11.5,-37.5 parent: 2 + - uid: 22002 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 22055 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - uid: 22059 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 22062 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 - uid: 24643 components: - type: Transform @@ -288483,6 +295863,13 @@ entities: - type: Transform pos: -5.5,-16.5 parent: 2 +- proto: TobaccoSeeds + entities: + - uid: 14084 + components: + - type: Transform + pos: 29.49359,-52.293118 + parent: 2 - proto: ToiletDirtyWater entities: - uid: 5691 @@ -288512,6 +295899,12 @@ entities: - type: Transform pos: -30.5,7.5 parent: 2 + - uid: 26910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-51.5 + parent: 2 - uid: 34159 components: - type: Transform @@ -289024,6 +296417,12 @@ entities: parent: 45711 - proto: TorsoSkeleton entities: + - uid: 32525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.140308,-43.49677 + parent: 2 - uid: 34161 components: - type: Transform @@ -289072,14 +296471,15 @@ entities: - uid: 36078 components: - type: Transform - pos: -94.40655,23.718147 + rot: 0.000553772842977196 rad + pos: -94.03886,24.561333 parent: 2 - proto: ToyFigurineBartender entities: - uid: 26137 components: - type: Transform - pos: -14.46574,44.59193 + pos: -13.525508,43.502174 parent: 2 - proto: ToyFigurineBotanist entities: @@ -289113,7 +296513,8 @@ entities: - uid: 36071 components: - type: Transform - pos: -94.8514,23.88051 + rot: 0.000553772842977196 rad + pos: -94.47635,24.405085 parent: 2 - proto: ToyFigurineClown entities: @@ -289242,27 +296643,52 @@ entities: - uid: 19333 components: - type: Transform - pos: -94.431465,22.6146 + rot: 0.000553772842977196 rad + pos: -95.99198,22.623835 parent: 2 - uid: 36068 components: - type: Transform - pos: -95.58771,22.9271 + rot: 0.000553772842977196 rad + pos: -94.273224,22.186333 parent: 2 - uid: 36069 components: - type: Transform - pos: -93.13459,22.973974 + rot: 0.000553772842977196 rad + pos: -93.28884,22.326956 parent: 2 - uid: 36070 components: - type: Transform - pos: -95.1727,22.452566 + rot: 0.000553772842977196 rad + pos: -95.05448,22.342585 parent: 2 - uid: 36072 components: - type: Transform - pos: -93.57895,22.405691 + rot: 0.000553772842977196 rad + pos: -92.60136,22.60821 + parent: 2 + - uid: 54194 + components: + - type: Transform + pos: -92.77323,22.061333 + parent: 2 + - uid: 54195 + components: + - type: Transform + pos: -95.61698,22.139458 + parent: 2 + - uid: 54196 + components: + - type: Transform + pos: -93.78886,21.826958 + parent: 2 + - uid: 54197 + components: + - type: Transform + pos: -94.67948,21.920708 parent: 2 - proto: ToyFigurineQuartermaster entities: @@ -289311,20 +296737,25 @@ entities: parent: 45711 - proto: ToyIan entities: - - uid: 26821 + - uid: 24886 components: - type: Transform - pos: -17.902668,-5.46818 + pos: -17.890068,-6.3849106 parent: 2 - - uid: 26823 + - uid: 26824 components: - type: Transform - pos: -18.098356,-5.309182 + pos: -36.457684,-58.30578 parent: 2 - - uid: 26824 + - uid: 32778 components: - type: Transform - pos: -36.457684,-58.30578 + pos: -18.061943,-6.2130356 + parent: 2 + - uid: 32941 + components: + - type: Transform + pos: -18.493145,-2.3080661 parent: 2 - uid: 41251 components: @@ -289343,10 +296774,10 @@ entities: parent: 2 - proto: ToyMouse entities: - - uid: 11846 + - uid: 14038 components: - type: Transform - pos: -12.622315,-10.194635 + pos: -12.753447,-11.343588 parent: 2 - uid: 14587 components: @@ -289360,11 +296791,6 @@ entities: parent: 2 - proto: ToyNuke entities: - - uid: 6882 - components: - - type: Transform - pos: -39.461445,0.644697 - parent: 2 - uid: 26828 components: - type: Transform @@ -289391,11 +296817,6 @@ entities: - type: Transform pos: -13.500887,-59.476543 parent: 2 - - uid: 26831 - components: - - type: Transform - pos: 26.50822,2.7454882 - parent: 2 - uid: 34162 components: - type: Transform @@ -289608,6 +297029,12 @@ entities: - type: Transform pos: 10.518467,59.4382 parent: 2 + - uid: 26552 + components: + - type: Transform + rot: 0.000553772842977196 rad + pos: -28.317814,30.645472 + parent: 2 - uid: 26858 components: - type: Transform @@ -289673,6 +297100,11 @@ entities: - type: Transform pos: -32.46517,-25.575966 parent: 2 + - uid: 35961 + components: + - type: Transform + pos: -32.381283,-25.649143 + parent: 2 - uid: 52892 components: - type: Transform @@ -289757,6 +297189,21 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 12406 + components: + - type: Transform + pos: -24.5,32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12788: + - Left: Forward + - Right: Reverse + - Middle: Off + 14690: + - Left: Forward + - Right: Reverse + - Middle: Off - uid: 20218 components: - type: Transform @@ -290195,32 +297642,16 @@ entities: - Middle: Close - proto: UnfinishedMachineFrame entities: - - uid: 21118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,46.5 - parent: 2 - - uid: 21469 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - - uid: 21591 - components: - - type: Transform - pos: 60.5,38.5 - parent: 2 - uid: 22901 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,46.5 parent: 2 - - uid: 26798 + - uid: 26061 components: - type: Transform - pos: 30.5,-52.5 + pos: -27.5,46.5 parent: 2 - uid: 26870 components: @@ -290306,10 +297737,10 @@ entities: parent: 45711 - proto: UniformPrinter entities: - - uid: 10269 + - uid: 22238 components: - type: Transform - pos: -16.5,-3.5 + pos: -16.5,-4.5 parent: 2 - proto: UniformScrubsColorBlue entities: @@ -290465,20 +297896,15 @@ entities: - type: Transform pos: -38.58469,41.290108 parent: 2 - - uid: 21766 - components: - - type: Transform - pos: -33.604042,28.395754 - parent: 2 - - uid: 21767 + - uid: 21768 components: - type: Transform - pos: 24.373322,-43.3627 + pos: 54.29831,-29.364643 parent: 2 - - uid: 21768 + - uid: 24037 components: - type: Transform - pos: 54.29831,-29.364643 + pos: -33.519,28.575579 parent: 2 - proto: VendingBarDrobe entities: @@ -290487,6 +297913,8 @@ entities: - type: Transform pos: -18.5,41.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineAtmosDrobe entities: - uid: 26893 @@ -290494,28 +297922,31 @@ entities: - type: Transform pos: 11.5,19.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineBooze entities: - - uid: 25347 - components: - - type: Transform - pos: -15.5,39.5 - parent: 2 - - uid: 26894 + - uid: 14083 components: - type: Transform - pos: 27.5,-42.5 + pos: 29.5,-42.5 parent: 2 - - uid: 26896 + - type: Advertise + enabled: False + - uid: 25347 components: - type: Transform - pos: -56.5,5.5 + pos: -15.5,39.5 parent: 2 + - type: Advertise + enabled: False - uid: 43305 components: - type: Transform pos: -53.5,45.5 parent: 2 + - type: Advertise + enabled: False - uid: 56043 components: - type: Transform @@ -290528,12 +297959,14 @@ entities: - type: Transform pos: 53.5,-3.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineCart entities: - - uid: 26900 + - uid: 18652 components: - type: Transform - pos: -12.5,-8.5 + pos: -12.5,-9.5 parent: 2 - proto: VendingMachineChang entities: @@ -290542,11 +297975,15 @@ entities: - type: Transform pos: 44.5,-14.5 parent: 2 + - type: Advertise + enabled: False - uid: 54426 components: - type: Transform pos: -43.5,42.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineChapel entities: - uid: 26901 @@ -290556,18 +297993,22 @@ entities: parent: 2 - proto: VendingMachineChefDrobe entities: - - uid: 26902 + - uid: 25298 components: - type: Transform - pos: -33.5,27.5 + pos: -34.5,30.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineChefvend entities: - - uid: 26903 + - uid: 14436 components: - type: Transform - pos: -32.5,27.5 + pos: -31.5,27.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineChemDrobe entities: - uid: 26904 @@ -290575,6 +298016,8 @@ entities: - type: Transform pos: 10.5,-43.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineChemicals entities: - uid: 24698 @@ -290596,41 +298039,64 @@ entities: - type: Transform pos: 28.5,22.5 parent: 2 + - type: Advertise + enabled: False - uid: 2039 components: - type: Transform pos: -8.5,68.5 parent: 2 + - type: Advertise + enabled: False - uid: 18758 components: - type: Transform pos: 49.5,-26.5 parent: 2 + - type: Advertise + enabled: False - uid: 25867 components: - type: Transform pos: 31.5,-2.5 parent: 2 + - type: Advertise + enabled: False - uid: 29971 components: - type: Transform pos: -37.5,25.5 parent: 2 + - type: Advertise + enabled: False + - uid: 37432 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - type: Advertise + enabled: False - uid: 41074 components: - type: Transform pos: -7.5,29.5 parent: 2 + - type: Advertise + enabled: False - uid: 45666 components: - type: Transform pos: 8.5,-2.5 parent: 45518 + - type: Advertise + enabled: False - uid: 49506 components: - type: Transform pos: -1.5,32.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineClothing entities: - uid: 26909 @@ -290638,21 +298104,36 @@ entities: - type: Transform pos: -58.5,21.5 parent: 2 - - uid: 36012 - components: - - type: Transform - pos: -38.5,3.5 - parent: 2 + - type: Advertise + enabled: False - uid: 37861 components: - type: Transform pos: 9.5,8.5 parent: 36861 + - type: Advertise + enabled: False - uid: 51018 components: - type: Transform pos: -8.5,49.5 parent: 2 + - type: Advertise + enabled: False + - uid: 51494 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - type: Advertise + enabled: False + - uid: 54209 + components: + - type: Transform + pos: -65.5,18.5 + parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineCoffee entities: - uid: 18135 @@ -290660,36 +298141,43 @@ entities: - type: Transform pos: -7.5,34.5 parent: 2 + - type: Advertise + enabled: False - uid: 19961 components: - type: Transform pos: 49.5,-24.5 parent: 2 + - type: Advertise + enabled: False - uid: 26412 components: - type: Transform pos: 35.5,-2.5 parent: 2 - - uid: 26910 - components: - - type: Transform - pos: -23.5,30.5 - parent: 2 + - type: Advertise + enabled: False - uid: 26912 components: - type: Transform pos: 76.5,-2.5 parent: 2 + - type: Advertise + enabled: False - uid: 26914 components: - type: Transform pos: -7.5,-45.5 parent: 2 + - type: Advertise + enabled: False - uid: 30245 components: - type: Transform pos: -33.5,25.5 parent: 2 + - type: Advertise + enabled: False - uid: 34165 components: - type: Transform @@ -290700,21 +298188,36 @@ entities: - type: Transform pos: 4.5,20.5 parent: 36861 + - type: Advertise + enabled: False - uid: 37863 components: - type: Transform pos: 9.5,4.5 parent: 36861 + - type: Advertise + enabled: False - uid: 42626 components: - type: Transform pos: -12.5,-43.5 parent: 2 + - type: Advertise + enabled: False - uid: 49507 components: - type: Transform pos: 35.5,17.5 parent: 45711 + - type: Advertise + enabled: False + - uid: 51143 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineCola entities: - uid: 42703 @@ -290722,11 +298225,15 @@ entities: - type: Transform pos: 44.5,-15.5 parent: 2 + - type: Advertise + enabled: False - uid: 49508 components: - type: Transform pos: -3.5,-3.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineColaBlack entities: - uid: 49509 @@ -290734,6 +298241,8 @@ entities: - type: Transform pos: 9.5,6.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineCondiments entities: - uid: 13425 @@ -290741,16 +298250,15 @@ entities: - type: Transform pos: -24.5,29.5 parent: 2 + - type: Advertise + enabled: False - uid: 14171 components: - type: Transform pos: -15.5,-37.5 parent: 2 - - uid: 31579 - components: - - type: Transform - pos: -16.5,39.5 - parent: 2 + - type: Advertise + enabled: False - uid: 34166 components: - type: Transform @@ -290761,12 +298269,16 @@ entities: - type: Transform pos: -39.5,-93.5 parent: 2 + - type: Advertise + enabled: False - uid: 37864 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,20.5 parent: 36861 + - type: Advertise + enabled: False - uid: 52823 components: - type: Transform @@ -290780,6 +298292,8 @@ entities: - type: Transform pos: -6.5,47.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineDetDrobe entities: - uid: 1866 @@ -290787,18 +298301,17 @@ entities: - type: Transform pos: -31.5,-2.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineDinnerware entities: - - uid: 11611 - components: - - type: Transform - pos: -26.5,28.5 - parent: 2 - - uid: 26918 + - uid: 9996 components: - type: Transform - pos: -31.5,27.5 + pos: -29.5,30.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineDiscount entities: - uid: 49510 @@ -290806,6 +298319,8 @@ entities: - type: Transform pos: 4.5,-3.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineDonut entities: - uid: 37865 @@ -290813,11 +298328,15 @@ entities: - type: Transform pos: 2.5,2.5 parent: 36861 + - type: Advertise + enabled: False - uid: 46558 components: - type: Transform pos: -43.5,54.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineEngiDrobe entities: - uid: 41163 @@ -290825,6 +298344,8 @@ entities: - type: Transform pos: 17.5,31.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineEngivend entities: - uid: 34167 @@ -290844,21 +298365,29 @@ entities: - type: Transform pos: -3.5,34.5 parent: 2 + - type: Advertise + enabled: False - uid: 37866 components: - type: Transform pos: 4.5,10.5 parent: 36861 + - type: Advertise + enabled: False - uid: 37867 components: - type: Transform pos: 11.5,-1.5 parent: 36861 + - type: Advertise + enabled: False - uid: 42634 components: - type: Transform pos: -8.5,53.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineGeneDrobe entities: - uid: 26923 @@ -290866,6 +298395,8 @@ entities: - type: Transform pos: 8.5,-52.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineHappyHonk entities: - uid: 36010 @@ -290873,6 +298404,8 @@ entities: - type: Transform pos: -61.5,7.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineHydrobe entities: - uid: 45247 @@ -290880,6 +298413,8 @@ entities: - type: Transform pos: -27.5,50.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineJaniDrobe entities: - uid: 25358 @@ -290887,11 +298422,15 @@ entities: - type: Transform pos: -50.5,30.5 parent: 2 + - type: Advertise + enabled: False - uid: 49511 components: - type: Transform pos: 22.5,12.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineLawDrobe entities: - uid: 26927 @@ -290899,6 +298438,8 @@ entities: - type: Transform pos: 6.5,37.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineMagivend entities: - uid: 26928 @@ -290909,6 +298450,8 @@ entities: - type: Transform pos: -2.5,-56.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineMedical entities: - uid: 26929 @@ -290916,16 +298459,22 @@ entities: - type: Transform pos: -35.5,-40.5 parent: 2 + - type: Advertise + enabled: False - uid: 26930 components: - type: Transform pos: -17.5,-15.5 parent: 2 + - type: Advertise + enabled: False - uid: 26931 components: - type: Transform pos: -20.5,-44.5 parent: 2 + - type: Advertise + enabled: False - uid: 34168 components: - type: Transform @@ -290936,6 +298485,8 @@ entities: - type: Transform pos: 12.5,10.5 parent: 36861 + - type: Advertise + enabled: False - proto: VendingMachineMediDrobe entities: - uid: 26933 @@ -290943,6 +298494,8 @@ entities: - type: Transform pos: -24.5,-44.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineNutri entities: - uid: 8521 @@ -290950,11 +298503,15 @@ entities: - type: Transform pos: -30.5,44.5 parent: 2 + - type: Advertise + enabled: False - uid: 26934 components: - type: Transform pos: -24.5,48.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineRestockBooze entities: - uid: 49512 @@ -290976,11 +298533,15 @@ entities: - type: Transform pos: 25.5,-17.5 parent: 2 + - type: Advertise + enabled: False - uid: 54149 components: - type: Transform pos: -23.5,44.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineRobotics entities: - uid: 11810 @@ -290988,21 +298549,29 @@ entities: - type: Transform pos: 29.5,-13.5 parent: 2 + - type: Advertise + enabled: False - uid: 46608 components: - type: Transform pos: -55.5,51.5 parent: 45711 + - type: Advertise + enabled: False - uid: 51463 components: - type: Transform pos: 23.5,-68.5 parent: 2 + - type: Advertise + enabled: False - uid: 54246 components: - type: Transform pos: -53.5,42.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineSalvage entities: - uid: 26941 @@ -291037,11 +298606,15 @@ entities: - type: Transform pos: 38.5,-18.5 parent: 2 + - type: Advertise + enabled: False - uid: 53550 components: - type: Transform pos: -15.5,56.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineSec entities: - uid: 1867 @@ -291049,31 +298622,43 @@ entities: - type: Transform pos: -31.5,-15.5 parent: 2 + - type: Advertise + enabled: False - uid: 8391 components: - type: Transform pos: 27.5,9.5 parent: 2 + - type: Advertise + enabled: False - uid: 19610 components: - type: Transform pos: 15.5,-25.5 parent: 2 + - type: Advertise + enabled: False - uid: 26946 components: - type: Transform pos: -29.5,-25.5 parent: 2 + - type: Advertise + enabled: False - uid: 35451 components: - type: Transform pos: 11.5,45.5 parent: 2 + - type: Advertise + enabled: False - uid: 52157 components: - type: Transform pos: 45.5,-4.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineSecDrobe entities: - uid: 5564 @@ -291081,36 +298666,50 @@ entities: - type: Transform pos: -30.5,-15.5 parent: 2 + - type: Advertise + enabled: False - uid: 24357 components: - type: Transform pos: 25.5,11.5 parent: 2 + - type: Advertise + enabled: False - uid: 25588 components: - type: Transform pos: 15.5,-27.5 parent: 2 + - type: Advertise + enabled: False - uid: 26949 components: - type: Transform pos: -12.5,-36.5 parent: 2 + - type: Advertise + enabled: False - uid: 35454 components: - type: Transform pos: 7.5,47.5 parent: 2 + - type: Advertise + enabled: False - uid: 37870 components: - type: Transform pos: 5.5,-7.5 parent: 36861 + - type: Advertise + enabled: False - uid: 52153 components: - type: Transform pos: 50.5,-4.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineSeeds entities: - uid: 9775 @@ -291118,6 +298717,8 @@ entities: - type: Transform pos: -29.5,38.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineSnackOrange entities: - uid: 45667 @@ -291132,6 +298733,8 @@ entities: - type: Transform pos: -15.5,53.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineSovietSoda entities: - uid: 1550 @@ -291139,26 +298742,36 @@ entities: - type: Transform pos: -4.5,-59.5 parent: 2 + - type: Advertise + enabled: False - uid: 3633 components: - type: Transform pos: 11.5,-27.5 parent: 2 + - type: Advertise + enabled: False - uid: 11624 components: - type: Transform pos: -13.5,15.5 parent: 2 + - type: Advertise + enabled: False - uid: 26956 components: - type: Transform pos: -25.5,-49.5 parent: 2 + - type: Advertise + enabled: False - uid: 26957 components: - type: Transform pos: -72.5,-17.5 parent: 2 + - type: Advertise + enabled: False - uid: 45668 components: - type: Transform @@ -291176,6 +298789,8 @@ entities: - type: Transform pos: -8.5,60.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineStarkist entities: - uid: 23550 @@ -291183,6 +298798,8 @@ entities: - type: Transform pos: -8.5,57.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineSustenance entities: - uid: 18995 @@ -291190,11 +298807,15 @@ entities: - type: Transform pos: -23.5,-35.5 parent: 2 + - type: Advertise + enabled: False - uid: 26958 components: - type: Transform pos: -21.5,-22.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineSyndieDrobe entities: - uid: 6689 @@ -291202,6 +298823,8 @@ entities: - type: Transform pos: 54.5,7.5 parent: 2 + - type: Advertise + enabled: False - uid: 10848 components: - type: Transform @@ -291212,6 +298835,8 @@ entities: - type: Transform pos: 10.5,-2.5 parent: 45711 + - type: Advertise + enabled: False - proto: VendingMachineTankDispenserEVA entities: - uid: 20663 @@ -291301,16 +298926,22 @@ entities: - type: Transform pos: -26.5,67.5 parent: 2 + - type: Advertise + enabled: False - uid: 26968 components: - type: Transform pos: -56.5,7.5 parent: 2 - - uid: 36005 + - type: Advertise + enabled: False + - uid: 51498 components: - type: Transform - pos: -46.5,2.5 + pos: -43.5,3.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineVendomat entities: - uid: 42915 @@ -291318,11 +298949,15 @@ entities: - type: Transform pos: 53.5,-24.5 parent: 2 + - type: Advertise + enabled: False - uid: 47766 components: - type: Transform pos: 37.5,-16.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineViroDrobe entities: - uid: 26969 @@ -291330,6 +298965,8 @@ entities: - type: Transform pos: -33.5,-50.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineWallMedical entities: - uid: 10840 @@ -291373,21 +299010,27 @@ entities: parent: 36861 - proto: VendingMachineWinter entities: - - uid: 29939 + - uid: 25 components: - type: Transform - pos: -6.5,49.5 + pos: -40.5,3.5 parent: 2 - - uid: 36004 + - type: Advertise + enabled: False + - uid: 29939 components: - type: Transform - pos: -37.5,3.5 + pos: -6.5,49.5 parent: 2 + - type: Advertise + enabled: False - uid: 45246 components: - type: Transform pos: -87.5,18.5 parent: 2 + - type: Advertise + enabled: False - proto: VendingMachineYouTool entities: - uid: 26975 @@ -291442,6 +299085,14 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-74.5 parent: 2 +- proto: WallInvisible + entities: + - uid: 11483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.822275,-36.26689 + parent: 2 - proto: WallMining entities: - uid: 56277 @@ -291640,6 +299291,11 @@ entities: parent: 45711 - proto: WallmountTelevision entities: + - uid: 195 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 - uid: 11702 components: - type: Transform @@ -291675,6 +299331,67 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-78.5 parent: 2 + - uid: 47664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,29.5 + parent: 2 + - uid: 47795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,29.5 + parent: 2 + - uid: 47797 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 47798 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 47802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 2 + - uid: 47803 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 47804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,54.5 + parent: 2 + - uid: 47805 + components: + - type: Transform + pos: 21.5,37.5 + parent: 2 + - uid: 47806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-32.5 + parent: 2 + - uid: 47807 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 48407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 2 - proto: WallmountTelevisionFrame entities: - uid: 26985 @@ -299418,11 +307135,6 @@ entities: - type: Transform pos: 46.5,-37.5 parent: 2 - - uid: 315 - components: - - type: Transform - pos: 56.5,15.5 - parent: 2 - uid: 320 components: - type: Transform @@ -299770,11 +307482,6 @@ entities: - type: Transform pos: 3.5,44.5 parent: 2 - - uid: 1660 - components: - - type: Transform - pos: 56.5,21.5 - parent: 2 - uid: 1700 components: - type: Transform @@ -299950,6 +307657,86 @@ entities: - type: Transform pos: 28.5,21.5 parent: 2 + - uid: 2073 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: 57.5,17.5 + parent: 2 - uid: 2121 components: - type: Transform @@ -300341,6 +308128,11 @@ entities: - type: Transform pos: 37.5,13.5 parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 56.5,17.5 + parent: 2 - uid: 6003 components: - type: Transform @@ -300491,6 +308283,11 @@ entities: - type: Transform pos: 37.5,34.5 parent: 2 + - uid: 7037 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 - uid: 7130 components: - type: Transform @@ -300499,7 +308296,7 @@ entities: - uid: 7131 components: - type: Transform - pos: 55.5,13.5 + pos: 55.5,19.5 parent: 2 - uid: 7165 components: @@ -301422,6 +309219,11 @@ entities: rot: -1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 + - uid: 12558 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 - uid: 12568 components: - type: Transform @@ -301474,6 +309276,11 @@ entities: - type: Transform pos: -101.5,-21.5 parent: 2 + - uid: 14013 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 - uid: 14047 components: - type: Transform @@ -301484,6 +309291,11 @@ entities: - type: Transform pos: 44.5,-30.5 parent: 2 + - uid: 14206 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 - uid: 14254 components: - type: Transform @@ -301607,11 +309419,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 - - uid: 15777 - components: - - type: Transform - pos: 55.5,15.5 - parent: 2 - uid: 15781 components: - type: Transform @@ -301652,11 +309459,31 @@ entities: - type: Transform pos: 64.5,-46.5 parent: 2 + - uid: 16147 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 - uid: 16353 components: - type: Transform pos: 14.5,47.5 parent: 2 + - uid: 16561 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 16565 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 - uid: 17378 components: - type: Transform @@ -301677,11 +309504,6 @@ entities: - type: Transform pos: 57.5,35.5 parent: 2 - - uid: 17491 - components: - - type: Transform - pos: 56.5,17.5 - parent: 2 - uid: 17494 components: - type: Transform @@ -303293,11 +311115,6 @@ entities: - type: Transform pos: -10.5,45.5 parent: 2 - - uid: 22076 - components: - - type: Transform - pos: 56.5,13.5 - parent: 2 - uid: 22097 components: - type: Transform @@ -303689,15 +311506,15 @@ entities: - type: Transform pos: 47.5,13.5 parent: 2 - - uid: 24823 + - uid: 24791 components: - type: Transform - pos: 74.5,53.5 + pos: -42.5,-27.5 parent: 2 - - uid: 24826 + - uid: 24823 components: - type: Transform - pos: 57.5,13.5 + pos: 74.5,53.5 parent: 2 - uid: 24827 components: @@ -303714,15 +311531,10 @@ entities: - type: Transform pos: 94.5,45.5 parent: 2 - - uid: 24843 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 2 - uid: 24864 components: - type: Transform - pos: -14.5,-12.5 + pos: -16.5,-10.5 parent: 2 - uid: 24884 components: @@ -303821,6 +311633,11 @@ entities: - type: Transform pos: 56.5,27.5 parent: 2 + - uid: 25606 + components: + - type: Transform + pos: -45.5,-22.5 + parent: 2 - uid: 25654 components: - type: Transform @@ -303899,6 +311716,11 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,48.5 parent: 2 + - uid: 25854 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 - uid: 25907 components: - type: Transform @@ -303970,6 +311792,11 @@ entities: - type: Transform pos: -54.5,-35.5 parent: 2 + - uid: 26165 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 - uid: 26200 components: - type: Transform @@ -303985,6 +311812,11 @@ entities: - type: Transform pos: 62.5,-29.5 parent: 2 + - uid: 26349 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 - uid: 26383 components: - type: Transform @@ -304060,6 +311892,11 @@ entities: - type: Transform pos: 11.5,-22.5 parent: 2 + - uid: 26551 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 - uid: 26553 components: - type: Transform @@ -304290,11 +312127,6 @@ entities: - type: Transform pos: -19.5,-8.5 parent: 2 - - uid: 27022 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 2 - uid: 27023 components: - type: Transform @@ -304645,11 +312477,6 @@ entities: - type: Transform pos: -11.5,-7.5 parent: 2 - - uid: 27118 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 2 - uid: 27119 components: - type: Transform @@ -304866,21 +312693,11 @@ entities: - type: Transform pos: 12.5,17.5 parent: 2 - - uid: 27176 - components: - - type: Transform - pos: -4.5,2.5 - parent: 2 - uid: 27177 components: - type: Transform pos: 2.5,2.5 parent: 2 - - uid: 27179 - components: - - type: Transform - pos: 3.5,2.5 - parent: 2 - uid: 27180 components: - type: Transform @@ -304923,26 +312740,11 @@ entities: - type: Transform pos: 4.5,-1.5 parent: 2 - - uid: 27188 - components: - - type: Transform - pos: 4.5,2.5 - parent: 2 - - uid: 27189 - components: - - type: Transform - pos: 1.5,2.5 - parent: 2 - uid: 27190 components: - type: Transform pos: -30.5,-7.5 parent: 2 - - uid: 27191 - components: - - type: Transform - pos: -2.5,2.5 - parent: 2 - uid: 27192 components: - type: Transform @@ -305076,11 +312878,6 @@ entities: - type: Transform pos: 37.5,30.5 parent: 2 - - uid: 27230 - components: - - type: Transform - pos: -0.5,2.5 - parent: 2 - uid: 27231 components: - type: Transform @@ -306442,16 +314239,6 @@ entities: - type: Transform pos: -33.5,-63.5 parent: 2 - - uid: 27670 - components: - - type: Transform - pos: -18.5,-2.5 - parent: 2 - - uid: 27671 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 2 - uid: 27672 components: - type: Transform @@ -306462,76 +314249,16 @@ entities: - type: Transform pos: -38.5,-63.5 parent: 2 - - uid: 27677 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 2 - - uid: 27679 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 2 - uid: 27680 components: - type: Transform pos: -15.5,-10.5 parent: 2 - - uid: 27682 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 2 - - uid: 27684 - components: - - type: Transform - pos: -13.5,-9.5 - parent: 2 - - uid: 27685 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 2 - - uid: 27686 - components: - - type: Transform - pos: -15.5,-6.5 - parent: 2 - - uid: 27687 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 2 - - uid: 27688 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 2 - - uid: 27689 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 2 - - uid: 27690 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 27691 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - uid: 27692 components: - type: Transform pos: -15.5,-13.5 parent: 2 - - uid: 27693 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 2 - uid: 27694 components: - type: Transform @@ -306789,11 +314516,6 @@ entities: - type: Transform pos: 55.5,6.5 parent: 2 - - uid: 27758 - components: - - type: Transform - pos: -15.5,-12.5 - parent: 2 - uid: 27759 components: - type: Transform @@ -310634,11 +318356,6 @@ entities: - type: Transform pos: -50.5,-50.5 parent: 2 - - uid: 29069 - components: - - type: Transform - pos: -17.5,-9.5 - parent: 2 - uid: 29070 components: - type: Transform @@ -311105,11 +318822,6 @@ entities: - type: Transform pos: 30.5,68.5 parent: 2 - - uid: 29190 - components: - - type: Transform - pos: -15.5,-8.5 - parent: 2 - uid: 29191 components: - type: Transform @@ -312919,11 +320631,6 @@ entities: - type: Transform pos: 59.5,70.5 parent: 2 - - uid: 29621 - components: - - type: Transform - pos: 55.5,17.5 - parent: 2 - uid: 29622 components: - type: Transform @@ -312936,11 +320643,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,12.5 parent: 2 - - uid: 29624 - components: - - type: Transform - pos: 57.5,15.5 - parent: 2 - uid: 29625 components: - type: Transform @@ -314680,11 +322382,6 @@ entities: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 30136 - components: - - type: Transform - pos: 57.5,17.5 - parent: 2 - uid: 30243 components: - type: Transform @@ -315027,6 +322724,21 @@ entities: - type: Transform pos: 27.5,-43.5 parent: 2 + - uid: 32777 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 32792 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 32793 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 - uid: 32881 components: - type: Transform @@ -315085,26 +322797,6 @@ entities: rot: 3.141592653589793 rad pos: 74.5,-18.5 parent: 2 - - uid: 34584 - components: - - type: Transform - pos: 55.5,19.5 - parent: 2 - - uid: 34587 - components: - - type: Transform - pos: 57.5,19.5 - parent: 2 - - uid: 34597 - components: - - type: Transform - pos: 56.5,19.5 - parent: 2 - - uid: 34600 - components: - - type: Transform - pos: 55.5,21.5 - parent: 2 - uid: 35061 components: - type: Transform @@ -315793,11 +323485,6 @@ entities: - type: Transform pos: 59.5,21.5 parent: 2 - - uid: 35686 - components: - - type: Transform - pos: 57.5,21.5 - parent: 2 - uid: 35689 components: - type: Transform @@ -315835,6 +323522,11 @@ entities: - type: Transform pos: 66.5,-53.5 parent: 2 + - uid: 36011 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 - uid: 36076 components: - type: Transform @@ -315850,6 +323542,11 @@ entities: - type: Transform pos: 59.5,15.5 parent: 2 + - uid: 36082 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 - uid: 36085 components: - type: Transform @@ -317569,6 +325266,11 @@ entities: rot: -1.5707963267948966 rad pos: 73.5,-33.5 parent: 2 + - uid: 42065 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 2 - uid: 42073 components: - type: Transform @@ -317654,6 +325356,11 @@ entities: - type: Transform pos: 32.5,17.5 parent: 2 + - uid: 42834 + components: + - type: Transform + pos: -45.5,-24.5 + parent: 2 - uid: 42917 components: - type: Transform @@ -317664,6 +325371,16 @@ entities: - type: Transform pos: 30.5,13.5 parent: 2 + - uid: 43104 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 43107 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 - uid: 43145 components: - type: Transform @@ -317674,6 +325391,11 @@ entities: - type: Transform pos: 29.5,13.5 parent: 2 + - uid: 43148 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 - uid: 43193 components: - type: Transform @@ -317707,6 +325429,21 @@ entities: rot: 3.141592653589793 rad pos: -56.5,53.5 parent: 2 + - uid: 43471 + components: + - type: Transform + pos: -45.5,-23.5 + parent: 2 + - uid: 43539 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 43540 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 - uid: 43691 components: - type: Transform @@ -317757,10 +325494,10 @@ entities: - type: Transform pos: 72.5,-47.5 parent: 2 - - uid: 45873 + - uid: 44918 components: - type: Transform - pos: 58.5,17.5 + pos: -19.5,-5.5 parent: 2 - uid: 47592 components: @@ -317772,26 +325509,6 @@ entities: - type: Transform pos: 59.5,-23.5 parent: 2 - - uid: 47656 - components: - - type: Transform - pos: 58.5,19.5 - parent: 2 - - uid: 47657 - components: - - type: Transform - pos: 58.5,21.5 - parent: 2 - - uid: 47658 - components: - - type: Transform - pos: 58.5,15.5 - parent: 2 - - uid: 47664 - components: - - type: Transform - pos: 58.5,13.5 - parent: 2 - uid: 47669 components: - type: Transform @@ -333224,11 +340941,6 @@ entities: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 3867 - components: - - type: Transform - pos: -2.5,-58.5 - parent: 2 - uid: 3873 components: - type: Transform @@ -333346,6 +341058,12 @@ entities: - type: Transform pos: 32.5,-15.5 parent: 2 + - uid: 5212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,2.5 + parent: 2 - uid: 5227 components: - type: Transform @@ -333561,11 +341279,6 @@ entities: - type: Transform pos: -8.5,-57.5 parent: 2 - - uid: 6943 - components: - - type: Transform - pos: -4.5,-70.5 - parent: 2 - uid: 6970 components: - type: Transform @@ -333604,6 +341317,12 @@ entities: rot: 3.141592653589793 rad pos: -64.5,-5.5 parent: 2 + - uid: 7007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,2.5 + parent: 2 - uid: 7035 components: - type: Transform @@ -333711,11 +341430,6 @@ entities: - type: Transform pos: 52.5,-2.5 parent: 2 - - uid: 8127 - components: - - type: Transform - pos: -43.5,-30.5 - parent: 2 - uid: 8144 components: - type: Transform @@ -333741,11 +341455,6 @@ entities: - type: Transform pos: 49.5,7.5 parent: 2 - - uid: 8441 - components: - - type: Transform - pos: -1.5,-65.5 - parent: 2 - uid: 8453 components: - type: Transform @@ -333761,11 +341470,6 @@ entities: - type: Transform pos: -10.5,-66.5 parent: 2 - - uid: 8458 - components: - - type: Transform - pos: -9.5,-67.5 - parent: 2 - uid: 8459 components: - type: Transform @@ -333806,6 +341510,11 @@ entities: - type: Transform pos: -1.5,-66.5 parent: 2 + - uid: 8665 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 - uid: 8700 components: - type: Transform @@ -333895,6 +341604,18 @@ entities: - type: Transform pos: -8.5,-56.5 parent: 2 + - uid: 9973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,2.5 + parent: 2 + - uid: 9976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 2 - uid: 9985 components: - type: Transform @@ -333910,6 +341631,18 @@ entities: - type: Transform pos: -3.5,42.5 parent: 2 + - uid: 10067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,2.5 + parent: 2 - uid: 10090 components: - type: Transform @@ -334049,6 +341782,18 @@ entities: - type: Transform pos: -10.5,-64.5 parent: 2 + - uid: 11188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,3.5 + parent: 2 - uid: 11235 components: - type: Transform @@ -334111,6 +341856,12 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,48.5 parent: 2 + - uid: 11757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,5.5 + parent: 2 - uid: 11764 components: - type: Transform @@ -334131,6 +341882,12 @@ entities: - type: Transform pos: -37.5,26.5 parent: 2 + - uid: 11817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 2 - uid: 11905 components: - type: Transform @@ -334221,12 +341978,28 @@ entities: - type: Transform pos: 22.5,-12.5 parent: 2 + - uid: 13896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-43.5 + parent: 2 - uid: 13909 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,47.5 parent: 2 + - uid: 13967 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 - uid: 13994 components: - type: Transform @@ -334248,6 +342021,11 @@ entities: - type: Transform pos: 24.5,-18.5 parent: 2 + - uid: 14551 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 - uid: 14820 components: - type: Transform @@ -334672,11 +342450,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-9.5 parent: 2 - - uid: 20242 - components: - - type: Transform - pos: 33.5,-45.5 - parent: 2 - uid: 20259 components: - type: Transform @@ -334696,7 +342469,7 @@ entities: - uid: 20295 components: - type: Transform - pos: 16.5,-74.5 + pos: 24.5,-53.5 parent: 2 - uid: 20327 components: @@ -334742,6 +342515,11 @@ entities: rot: 3.141592653589793 rad pos: -52.5,45.5 parent: 2 + - uid: 20836 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 - uid: 20847 components: - type: Transform @@ -334877,11 +342655,6 @@ entities: - type: Transform pos: 8.5,-67.5 parent: 2 - - uid: 22108 - components: - - type: Transform - pos: -14.5,-68.5 - parent: 2 - uid: 22192 components: - type: Transform @@ -334897,6 +342670,11 @@ entities: - type: Transform pos: 69.5,-45.5 parent: 2 + - uid: 22419 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 2 - uid: 22466 components: - type: Transform @@ -334914,6 +342692,11 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,45.5 parent: 2 + - uid: 22871 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 - uid: 22917 components: - type: Transform @@ -334939,6 +342722,12 @@ entities: - type: Transform pos: 29.5,35.5 parent: 2 + - uid: 23124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-52.5 + parent: 2 - uid: 23133 components: - type: Transform @@ -335068,12 +342857,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,37.5 parent: 2 - - uid: 23616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,47.5 - parent: 2 - uid: 23619 components: - type: Transform @@ -335095,6 +342878,11 @@ entities: - type: Transform pos: 29.5,-1.5 parent: 2 + - uid: 23863 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 - uid: 23895 components: - type: Transform @@ -335501,6 +343289,11 @@ entities: - type: Transform pos: -15.5,-69.5 parent: 2 + - uid: 26104 + components: + - type: Transform + pos: 21.5,-53.5 + parent: 2 - uid: 26193 components: - type: Transform @@ -335524,6 +343317,11 @@ entities: - type: Transform pos: 53.5,-19.5 parent: 2 + - uid: 26340 + components: + - type: Transform + pos: 24.5,-47.5 + parent: 2 - uid: 26415 components: - type: Transform @@ -335549,6 +343347,11 @@ entities: - type: Transform pos: 50.5,-19.5 parent: 2 + - uid: 26626 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 - uid: 26647 components: - type: Transform @@ -335799,11 +343602,6 @@ entities: - type: Transform pos: 30.5,-42.5 parent: 2 - - uid: 28430 - components: - - type: Transform - pos: 30.5,-40.5 - parent: 2 - uid: 28431 components: - type: Transform @@ -335997,11 +343795,6 @@ entities: - type: Transform pos: 16.5,-71.5 parent: 2 - - uid: 29923 - components: - - type: Transform - pos: 14.5,-67.5 - parent: 2 - uid: 29927 components: - type: Transform @@ -336092,6 +343885,12 @@ entities: - type: Transform pos: 22.5,-18.5 parent: 2 + - uid: 30223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-33.5 + parent: 2 - uid: 30224 components: - type: Transform @@ -336122,21 +343921,6 @@ entities: - type: Transform pos: 46.5,-14.5 parent: 2 - - uid: 30231 - components: - - type: Transform - pos: 8.5,-33.5 - parent: 2 - - uid: 30232 - components: - - type: Transform - pos: 29.5,4.5 - parent: 2 - - uid: 30233 - components: - - type: Transform - pos: 29.5,3.5 - parent: 2 - uid: 30234 components: - type: Transform @@ -336832,7 +344616,8 @@ entities: - uid: 30471 components: - type: Transform - pos: 33.5,2.5 + rot: -1.5707963267948966 rad + pos: 9.5,-30.5 parent: 2 - uid: 30472 components: @@ -337009,7 +344794,8 @@ entities: - uid: 30527 components: - type: Transform - pos: 20.5,-53.5 + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 parent: 2 - uid: 30528 components: @@ -337466,11 +345252,6 @@ entities: - type: Transform pos: -47.5,3.5 parent: 2 - - uid: 30656 - components: - - type: Transform - pos: -46.5,3.5 - parent: 2 - uid: 30657 components: - type: Transform @@ -337793,11 +345574,6 @@ entities: - type: Transform pos: -5.5,-34.5 parent: 2 - - uid: 30732 - components: - - type: Transform - pos: 7.5,-29.5 - parent: 2 - uid: 30733 components: - type: Transform @@ -337813,21 +345589,11 @@ entities: - type: Transform pos: 9.5,-31.5 parent: 2 - - uid: 30741 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 2 - uid: 30742 components: - type: Transform pos: 11.5,-30.5 parent: 2 - - uid: 30743 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 2 - uid: 30744 components: - type: Transform @@ -337914,11 +345680,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,47.5 parent: 2 - - uid: 30767 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 2 - uid: 30768 components: - type: Transform @@ -338009,11 +345770,6 @@ entities: - type: Transform pos: -37.5,4.5 parent: 2 - - uid: 30800 - components: - - type: Transform - pos: -46.5,-2.5 - parent: 2 - uid: 30804 components: - type: Transform @@ -338539,11 +346295,6 @@ entities: - type: Transform pos: 22.5,-31.5 parent: 2 - - uid: 30932 - components: - - type: Transform - pos: 23.5,-31.5 - parent: 2 - uid: 30936 components: - type: Transform @@ -338639,11 +346390,6 @@ entities: - type: Transform pos: 37.5,5.5 parent: 2 - - uid: 30973 - components: - - type: Transform - pos: 38.5,5.5 - parent: 2 - uid: 30974 components: - type: Transform @@ -338664,16 +346410,6 @@ entities: - type: Transform pos: 37.5,4.5 parent: 2 - - uid: 30978 - components: - - type: Transform - pos: 33.5,4.5 - parent: 2 - - uid: 30979 - components: - - type: Transform - pos: 33.5,3.5 - parent: 2 - uid: 30980 components: - type: Transform @@ -339434,11 +347170,6 @@ entities: - type: Transform pos: 43.5,-12.5 parent: 2 - - uid: 31188 - components: - - type: Transform - pos: -14.5,35.5 - parent: 2 - uid: 31190 components: - type: Transform @@ -339500,11 +347231,6 @@ entities: - type: Transform pos: -15.5,-54.5 parent: 2 - - uid: 31228 - components: - - type: Transform - pos: -10.5,-61.5 - parent: 2 - uid: 31229 components: - type: Transform @@ -339597,21 +347323,11 @@ entities: - type: Transform pos: 29.5,-38.5 parent: 2 - - uid: 31254 - components: - - type: Transform - pos: 25.5,-42.5 - parent: 2 - uid: 31255 components: - type: Transform pos: 26.5,-42.5 parent: 2 - - uid: 31265 - components: - - type: Transform - pos: 23.5,-39.5 - parent: 2 - uid: 31267 components: - type: Transform @@ -339672,21 +347388,11 @@ entities: - type: Transform pos: 23.5,-35.5 parent: 2 - - uid: 31281 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 2 - uid: 31284 components: - type: Transform pos: 22.5,-42.5 parent: 2 - - uid: 31285 - components: - - type: Transform - pos: 21.5,-42.5 - parent: 2 - uid: 31286 components: - type: Transform @@ -339695,7 +347401,8 @@ entities: - uid: 31287 components: - type: Transform - pos: 20.5,-44.5 + rot: -1.5707963267948966 rad + pos: 3.5,-70.5 parent: 2 - uid: 31288 components: @@ -339707,11 +347414,6 @@ entities: - type: Transform pos: 20.5,-48.5 parent: 2 - - uid: 31290 - components: - - type: Transform - pos: 21.5,-48.5 - parent: 2 - uid: 31291 components: - type: Transform @@ -339727,11 +347429,6 @@ entities: - type: Transform pos: 17.5,-40.5 parent: 2 - - uid: 31295 - components: - - type: Transform - pos: 18.5,-40.5 - parent: 2 - uid: 31296 components: - type: Transform @@ -339742,11 +347439,6 @@ entities: - type: Transform pos: 22.5,-40.5 parent: 2 - - uid: 31298 - components: - - type: Transform - pos: 20.5,-50.5 - parent: 2 - uid: 31300 components: - type: Transform @@ -339757,21 +347449,6 @@ entities: - type: Transform pos: 21.5,-54.5 parent: 2 - - uid: 31302 - components: - - type: Transform - pos: 22.5,-54.5 - parent: 2 - - uid: 31303 - components: - - type: Transform - pos: 23.5,-54.5 - parent: 2 - - uid: 31304 - components: - - type: Transform - pos: 24.5,-54.5 - parent: 2 - uid: 31305 components: - type: Transform @@ -339783,11 +347460,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-17.5 parent: 2 - - uid: 31313 - components: - - type: Transform - pos: 18.5,-51.5 - parent: 2 - uid: 31314 components: - type: Transform @@ -340773,6 +348445,12 @@ entities: - type: Transform pos: -82.5,20.5 parent: 2 + - uid: 31579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-71.5 + parent: 2 - uid: 31580 components: - type: Transform @@ -341987,6 +349665,11 @@ entities: - type: Transform pos: 68.5,-25.5 parent: 2 + - uid: 32284 + components: + - type: Transform + pos: 20.5,-52.5 + parent: 2 - uid: 32325 components: - type: Transform @@ -343322,11 +351005,6 @@ entities: - type: Transform pos: -16.5,-42.5 parent: 2 - - uid: 42653 - components: - - type: Transform - pos: 28.5,-35.5 - parent: 2 - uid: 42710 components: - type: Transform @@ -343674,16 +351352,6 @@ entities: - type: Transform pos: 15.5,-67.5 parent: 2 - - uid: 51093 - components: - - type: Transform - pos: 11.5,-70.5 - parent: 2 - - uid: 51095 - components: - - type: Transform - pos: 3.5,-70.5 - parent: 2 - uid: 51137 components: - type: Transform @@ -343694,11 +351362,6 @@ entities: - type: Transform pos: 4.5,-65.5 parent: 2 - - uid: 51139 - components: - - type: Transform - pos: 6.5,-65.5 - parent: 2 - uid: 51140 components: - type: Transform @@ -343714,11 +351377,6 @@ entities: - type: Transform pos: 16.5,-64.5 parent: 2 - - uid: 51143 - components: - - type: Transform - pos: 16.5,-63.5 - parent: 2 - uid: 51144 components: - type: Transform @@ -343759,31 +351417,16 @@ entities: - type: Transform pos: 10.5,-65.5 parent: 2 - - uid: 51152 - components: - - type: Transform - pos: 10.5,-64.5 - parent: 2 - uid: 51153 components: - type: Transform pos: 10.5,-63.5 parent: 2 - - uid: 51173 - components: - - type: Transform - pos: 20.5,-61.5 - parent: 2 - uid: 51174 components: - type: Transform pos: 21.5,-60.5 parent: 2 - - uid: 51175 - components: - - type: Transform - pos: 21.5,-59.5 - parent: 2 - uid: 51176 components: - type: Transform @@ -343794,11 +351437,6 @@ entities: - type: Transform pos: 21.5,-57.5 parent: 2 - - uid: 51178 - components: - - type: Transform - pos: 21.5,-55.5 - parent: 2 - uid: 51179 components: - type: Transform @@ -343844,11 +351482,6 @@ entities: - type: Transform pos: 23.5,-67.5 parent: 2 - - uid: 51188 - components: - - type: Transform - pos: 24.5,-67.5 - parent: 2 - uid: 51202 components: - type: Transform @@ -343866,12 +351499,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-69.5 parent: 2 - - uid: 51410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-71.5 - parent: 2 - uid: 51411 components: - type: Transform @@ -343964,6 +351591,11 @@ entities: - type: Transform pos: 37.5,9.5 parent: 2 + - uid: 51863 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 - proto: WallSolidDiagonal entities: - uid: 645 @@ -344134,6 +351766,48 @@ entities: rot: 3.141592653589793 rad pos: -47.5,47.5 parent: 2 + - uid: 28382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-41.5 + parent: 2 + - uid: 28440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-58.5 + parent: 2 + - uid: 28479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-70.5 + parent: 2 + - uid: 28480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-65.5 + parent: 2 + - uid: 28622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-67.5 + parent: 2 + - uid: 28854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-45.5 + parent: 2 + - uid: 28918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-74.5 + parent: 2 - uid: 29365 components: - type: Transform @@ -344145,6 +351819,137 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-11.5 parent: 2 + - uid: 29901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-68.5 + parent: 2 + - uid: 30017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-67.5 + parent: 2 + - uid: 30231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-53.5 + parent: 2 + - uid: 30233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-29.5 + parent: 2 + - uid: 30551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 2 + - uid: 30656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-31.5 + parent: 2 + - uid: 30741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-61.5 + parent: 2 + - uid: 30743 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - uid: 30767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-39.5 + parent: 2 + - uid: 30973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-44.5 + parent: 2 + - uid: 30979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-40.5 + parent: 2 + - uid: 31265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-51.5 + parent: 2 + - uid: 31281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-35.5 + parent: 2 + - uid: 31285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-70.5 + parent: 2 + - uid: 31290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-65.5 + parent: 2 + - uid: 31295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-63.5 + parent: 2 + - uid: 31298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-64.5 + parent: 2 + - uid: 31302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-61.5 + parent: 2 + - uid: 31303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-59.5 + parent: 2 + - uid: 31304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-55.5 + parent: 2 + - uid: 31313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-67.5 + parent: 2 + - uid: 31366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-71.5 + parent: 2 - uid: 31846 components: - type: Transform @@ -344261,12 +352066,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-50.5 parent: 2 - - uid: 31872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-71.5 - parent: 2 - uid: 31873 components: - type: Transform @@ -344856,6 +352655,24 @@ entities: - type: Transform pos: -33.5,48.5 parent: 2 + - uid: 10148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,50.5 + parent: 2 + - uid: 10902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,48.5 + parent: 2 + - uid: 16148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,51.5 + parent: 2 - uid: 35446 components: - type: Transform @@ -344866,6 +352683,12 @@ entities: - type: Transform pos: -35.5,53.5 parent: 2 + - uid: 36631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,49.5 + parent: 2 - uid: 40995 components: - type: Transform @@ -344908,16 +352731,6 @@ entities: - type: Transform pos: -35.5,48.5 parent: 2 - - uid: 43439 - components: - - type: Transform - pos: -35.5,49.5 - parent: 2 - - uid: 43440 - components: - - type: Transform - pos: -35.5,50.5 - parent: 2 - uid: 43545 components: - type: Transform @@ -344973,12 +352786,12 @@ entities: - 0 - 0 - 0 -- proto: WardrobeBotanistFilled +- proto: WardrobeBotanist entities: - - uid: 23432 + - uid: 480 components: - type: Transform - pos: 26.5,-51.5 + pos: 21.5,-52.5 parent: 2 - proto: WardrobeCargoFilled entities: @@ -345503,6 +353316,13 @@ entities: parent: 2 - type: WarpPoint location: СМЭСы + - uid: 32348 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - type: WarpPoint + location: Офис главы персонала - uid: 32420 components: - type: Transform @@ -345524,13 +353344,6 @@ entities: parent: 2 - type: WarpPoint location: Химическая Лаборатория - - uid: 32924 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 2 - - type: WarpPoint - location: Офис Главы Персонала - uid: 35033 components: - type: Transform @@ -345561,11 +353374,6 @@ entities: location: Мостик - proto: WaterCooler entities: - - uid: 221 - components: - - type: Transform - pos: -49.5,1.5 - parent: 2 - uid: 3050 components: - type: Transform @@ -345718,6 +353526,11 @@ entities: - type: Transform pos: -20.5,-34.5 parent: 2 + - uid: 11349 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 - uid: 20448 components: - type: Transform @@ -345733,11 +353546,6 @@ entities: - type: Transform pos: 31.5,-4.5 parent: 2 - - uid: 31958 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - uid: 31959 components: - type: Transform @@ -345840,11 +353648,6 @@ entities: - type: Transform pos: 49.5,-54.5 parent: 2 - - uid: 31976 - components: - - type: Transform - pos: 21.5,-51.5 - parent: 2 - uid: 31978 components: - type: Transform @@ -345872,50 +353675,36 @@ entities: - type: Transform pos: 63.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 15870 components: - type: Transform pos: 2.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 19652 components: - type: Transform pos: 42.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 22213 components: - type: Transform pos: 56.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28471 components: - type: Transform pos: 43.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 31981 components: - type: Transform pos: -37.5,-64.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 51614 components: - type: Transform pos: 36.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: WeaponCapacitorRecharger entities: - uid: 5589 @@ -345955,17 +353744,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,5.5 parent: 2 - - uid: 31988 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 2 - - uid: 31990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-19.5 - parent: 2 - uid: 31991 components: - type: Transform @@ -346029,6 +353807,11 @@ entities: - type: Transform pos: 0.5,-5.5 parent: 44868 + - uid: 51902 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 - uid: 52167 components: - type: Transform @@ -346109,6 +353892,16 @@ entities: - type: Transform pos: -33.471413,-25.734499 parent: 2 + - uid: 32041 + components: + - type: Transform + pos: -33.469868,-25.53972 + parent: 2 + - uid: 47038 + components: + - type: Transform + pos: -33.43862,-25.399096 + parent: 2 - uid: 52985 components: - type: Transform @@ -346159,18 +353952,20 @@ entities: parent: 2 - proto: WeaponLaserCannon entities: - - uid: 15233 + - uid: 51337 components: - type: Transform - pos: -37.4179,-29.169783 + rot: 3.141592653589793 rad + pos: -36.441547,-27.741362 parent: 2 -- proto: WeaponLaserCarbine - entities: - - uid: 14320 + - uid: 51338 components: - type: Transform - pos: -37.45747,-29.661451 + rot: 3.141592653589793 rad + pos: -36.441547,-27.741362 parent: 2 +- proto: WeaponLaserCarbine + entities: - uid: 44971 components: - type: Transform @@ -346232,20 +354027,20 @@ entities: parent: 45711 - proto: WeaponLaserGun entities: - - uid: 899 + - uid: 1966 components: - type: Transform - pos: -36.4811,-29.458948 + pos: -30.541212,-29.575022 parent: 2 - - uid: 2429 + - uid: 1967 components: - type: Transform - pos: -36.512352,-29.552698 + pos: -30.541212,-29.746897 parent: 2 - - uid: 21611 + - uid: 2429 components: - type: Transform - pos: -36.51235,-29.693323 + pos: -30.525587,-29.418774 parent: 2 - uid: 35586 components: @@ -346305,25 +354100,38 @@ entities: parent: 45711 - proto: WeaponPistolMk58 entities: - - uid: 32031 + - uid: 21601 components: - type: Transform - pos: -31.447113,-25.767477 + pos: -33.42588,-23.399162 parent: 2 - - uid: 32033 + - uid: 21602 components: - type: Transform - pos: -30.447113,-25.533102 + rot: 3.141592653589793 rad + pos: -33.45713,-23.633537 parent: 2 - - uid: 32035 + - uid: 21611 components: - type: Transform - pos: -30.447117,-25.751854 + pos: -32.56651,-23.383537 parent: 2 - - uid: 32036 + - uid: 21620 components: - type: Transform - pos: -31.447113,-25.533102 + rot: 3.141592653589793 rad + pos: -32.472755,-23.571037 + parent: 2 + - uid: 21621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.56651,-23.633537 + parent: 2 + - uid: 21622 + components: + - type: Transform + pos: -31.582132,-23.446037 parent: 2 - uid: 35411 components: @@ -346359,6 +354167,12 @@ entities: - type: InsideEntityStorage - proto: WeaponRevolverPython entities: + - uid: 32116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.55346,4.6000185 + parent: 2 - uid: 48077 components: - type: Transform @@ -346391,15 +354205,15 @@ entities: parent: 34641 - proto: WeaponRifleLecter entities: - - uid: 14157 + - uid: 22567 components: - type: Transform - pos: -32.474667,-29.66205 + pos: -33.443005,-27.709764 parent: 2 - - uid: 14367 + - uid: 22577 components: - type: Transform - pos: -32.45904,-29.458925 + pos: -33.474255,-27.47539 parent: 2 - proto: WeaponShotgunBulldog entities: @@ -346410,20 +354224,20 @@ entities: parent: 45711 - proto: WeaponShotgunDoubleBarreled entities: - - uid: 1761 + - uid: 21623 components: - type: Transform - pos: -32.48575,-23.658064 + pos: -31.435566,-29.680801 parent: 2 - - uid: 1967 + - uid: 48502 components: - type: Transform - pos: -32.48575,-23.751814 + pos: -31.419939,-29.477674 parent: 2 - - uid: 47706 + - uid: 48503 components: - type: Transform - pos: -32.485752,-23.548689 + pos: -31.419939,-29.290174 parent: 2 - uid: 53974 components: @@ -346433,38 +354247,38 @@ entities: parent: 45711 - proto: WeaponShotgunEnforcer entities: - - uid: 14341 + - uid: 47693 components: - type: Transform - pos: -31.466774,-29.356964 + pos: -33.45119,-29.415174 parent: 2 - - uid: 32041 + - uid: 47695 components: - type: Transform - pos: -31.448025,-29.552393 + pos: -33.482437,-29.696424 parent: 2 - proto: WeaponShotgunKammerer entities: - - uid: 1927 + - uid: 35589 components: - type: Transform - pos: -33.498768,-29.736187 - parent: 2 - - uid: 1966 + rot: 3.141592653589793 rad + pos: 9.537842,-4.7381287 + parent: 36861 + - uid: 48504 components: - type: Transform - pos: -33.498764,-29.548687 + pos: -32.48244,-29.321426 parent: 2 - - uid: 35589 + - uid: 48505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.537842,-4.7381287 - parent: 36861 - - uid: 47694 + pos: -32.482437,-29.477676 + parent: 2 + - uid: 48506 components: - type: Transform - pos: -33.483143,-29.345562 + pos: -32.482437,-29.649551 parent: 2 - proto: WeaponShotgunSawn entities: @@ -346510,15 +354324,15 @@ entities: - type: InsideEntityStorage - proto: WeaponSubMachineGunDrozd entities: - - uid: 11733 + - uid: 14439 components: - type: Transform - pos: -30.482399,-29.388214 + pos: -31.452137,-27.42848 parent: 2 - - uid: 11734 + - uid: 48493 components: - type: Transform - pos: -30.451149,-29.68509 + pos: -31.467762,-27.662855 parent: 2 - proto: WeaponTurretHostile entities: @@ -346753,7 +354567,7 @@ entities: - uid: 782 components: - type: Transform - pos: -40.6349,-9.128693 + pos: -40.649963,-8.959012 parent: 2 - uid: 5843 components: @@ -346849,6 +354663,11 @@ entities: parent: 45518 - proto: WeldingFuelTankFull entities: + - uid: 18624 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 - uid: 20022 components: - type: Transform @@ -347005,49 +354824,16 @@ entities: parent: 2 - proto: Windoor entities: - - uid: 23377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,2.5 - parent: 2 - - uid: 23380 - components: - - type: Transform - pos: 28.5,2.5 - parent: 2 - - uid: 23381 - components: - - type: Transform - pos: 40.5,2.5 - parent: 2 - - uid: 23471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,2.5 - parent: 2 - - uid: 23472 - components: - - type: Transform - pos: 36.5,2.5 - parent: 2 - - uid: 23638 - components: - - type: Transform - pos: 32.5,2.5 - parent: 2 - - uid: 23639 + - uid: 22851 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,2.5 + pos: 36.5,1.5 parent: 2 - - uid: 23720 + - uid: 22852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,2.5 + pos: 36.5,1.5 parent: 2 - uid: 23811 components: @@ -347077,12 +354863,6 @@ entities: - type: Transform pos: 50.5,2.5 parent: 2 - - uid: 32099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,34.5 - parent: 2 - uid: 32102 components: - type: Transform @@ -347129,6 +354909,16 @@ entities: - type: Transform pos: 37.5,-63.5 parent: 2 + - uid: 37482 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 42016 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 - uid: 42534 components: - type: Transform @@ -347146,12 +354936,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,3.5 parent: 45711 - - uid: 51007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,27.5 - parent: 2 - uid: 51052 components: - type: Transform @@ -347160,16 +354944,22 @@ entities: parent: 2 - proto: WindoorAssembly entities: - - uid: 32110 + - uid: 11165 components: - type: Transform - pos: 28.5,-39.5 + rot: 1.5707963267948966 rad + pos: 20.5,-46.5 parent: 2 - - uid: 32111 + - uid: 23432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-48.5 + rot: 1.5707963267948966 rad + pos: 20.5,-46.5 + parent: 2 + - uid: 32110 + components: + - type: Transform + pos: 28.5,-39.5 parent: 2 - uid: 32112 components: @@ -347221,19 +355011,6 @@ entities: - type: Transform pos: 39.5,-28.5 parent: 2 -- proto: WindoorBarLocked - entities: - - uid: 32116 - components: - - type: Transform - pos: -54.5,2.5 - parent: 2 - - uid: 32117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,2.5 - parent: 2 - proto: WindoorCargoLocked entities: - uid: 32118 @@ -347331,24 +355108,27 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,38.5 parent: 2 - - uid: 32123 + - uid: 45110 components: - type: Transform - pos: -27.5,34.5 + rot: -1.5707963267948966 rad + pos: -31.5,35.5 parent: 2 - - uid: 45110 +- proto: WindoorKitchenLocked + entities: + - uid: 14317 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,35.5 + pos: -24.5,33.5 parent: 2 - proto: WindoorSecure entities: - - uid: 7007 + - uid: 10126 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,65.5 + pos: -13.5,-3.5 parent: 2 - uid: 11145 components: @@ -347363,6 +355143,11 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,40.5 parent: 2 + - uid: 23638 + components: + - type: Transform + pos: -0.5,60.5 + parent: 2 - uid: 25407 components: - type: Transform @@ -347386,24 +355171,6 @@ entities: - type: Transform pos: 3.5,24.5 parent: 2 - - uid: 32130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 2 - - uid: 32131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 2 - - uid: 32132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-1.5 - parent: 2 - uid: 32133 components: - type: Transform @@ -347531,6 +355298,30 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-27.5 parent: 2 + - uid: 51326 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 51058 + - uid: 51327 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 51058 + - uid: 51335 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 51058 - proto: WindoorSecureBrigLocked entities: - uid: 16163 @@ -347555,42 +355346,6 @@ entities: - type: Transform pos: -3.5,-22.5 parent: 2 - - uid: 32156 - components: - - type: MetaData - desc: '"Смотритель не забыл про тебя!"' - name: 'камера #2' - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-23.5 - parent: 2 - - type: DeviceLinkSink - links: - - 1782 - - uid: 32157 - components: - - type: MetaData - desc: '"Смотритель не забыл про тебя!"' - name: 'камера #1' - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-23.5 - parent: 2 - - type: DeviceLinkSink - links: - - 1783 - - uid: 32158 - components: - - type: MetaData - desc: '"Смотритель не забыл про тебя!"' - name: 'камера #3' - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-23.5 - parent: 2 - - type: DeviceLinkSink - links: - - 1781 - uid: 32159 components: - type: Transform @@ -347615,18 +355370,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-2.5 parent: 2 - - uid: 32162 - components: - - type: MetaData - desc: '"Смотритель не забыл про тебя!"' - name: 'камера #4' - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-23.5 - parent: 2 - - type: DeviceLinkSink - links: - - 1784 - uid: 32163 components: - type: Transform @@ -347761,16 +355504,16 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 2 - - uid: 32181 + - uid: 26900 components: - type: Transform - pos: -13.5,-2.5 + pos: -13.5,-3.5 parent: 2 - - uid: 32182 + - uid: 51910 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-8.5 + pos: -14.5,-9.5 parent: 2 - proto: WindoorSecureMedicalLocked entities: @@ -348233,11 +355976,6 @@ entities: - type: Transform pos: 2.5,-5.5 parent: 2 - - uid: 3018 - components: - - type: Transform - pos: -32.5,24.5 - parent: 2 - uid: 3611 components: - type: Transform @@ -348281,6 +356019,11 @@ entities: rot: -1.5707963267948966 rad pos: 64.5,-12.5 parent: 2 + - uid: 6889 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 - uid: 6906 components: - type: Transform @@ -348292,12 +356035,6 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 2 - - uid: 9947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,24.5 - parent: 2 - uid: 10261 components: - type: Transform @@ -348309,6 +356046,16 @@ entities: - type: Transform pos: -38.5,25.5 parent: 2 + - uid: 11314 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 11816 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 - uid: 14589 components: - type: Transform @@ -348319,6 +356066,11 @@ entities: - type: Transform pos: -38.5,24.5 parent: 2 + - uid: 14840 + components: + - type: Transform + pos: -27.5,34.5 + parent: 2 - uid: 19294 components: - type: Transform @@ -348449,12 +356201,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,31.5 parent: 2 - - uid: 19556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-51.5 - parent: 2 - uid: 19559 components: - type: Transform @@ -348495,12 +356241,6 @@ entities: - type: Transform pos: -70.5,17.5 parent: 2 - - uid: 19633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-52.5 - parent: 2 - uid: 19716 components: - type: Transform @@ -348716,6 +356456,11 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-16.5 parent: 2 + - uid: 22297 + components: + - type: Transform + pos: -32.5,24.5 + parent: 2 - uid: 23366 components: - type: Transform @@ -349047,6 +356792,11 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-5.5 parent: 2 + - uid: 24888 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 - uid: 25361 components: - type: Transform @@ -349057,6 +356807,11 @@ entities: - type: Transform pos: -19.5,37.5 parent: 2 + - uid: 26103 + components: + - type: Transform + pos: 20.5,-51.5 + parent: 2 - uid: 26944 components: - type: Transform @@ -349067,15 +356822,25 @@ entities: - type: Transform pos: 22.5,-8.5 parent: 2 + - uid: 27176 + components: + - type: Transform + pos: -21.5,24.5 + parent: 2 + - uid: 27396 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 - uid: 27961 components: - type: Transform pos: 22.5,-6.5 parent: 2 - - uid: 29972 + - uid: 29923 components: - type: Transform - pos: -32.5,25.5 + pos: 20.5,-49.5 parent: 2 - uid: 30286 components: @@ -349125,6 +356890,11 @@ entities: - type: Transform pos: -25.5,20.5 parent: 2 + - uid: 31503 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 - uid: 31520 components: - type: Transform @@ -349137,6 +356907,11 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,24.5 parent: 2 + - uid: 32111 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 - uid: 32230 components: - type: Transform @@ -349178,17 +356953,6 @@ entities: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 32257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-46.5 - parent: 2 - - uid: 32264 - components: - - type: Transform - pos: -28.5,34.5 - parent: 2 - uid: 32265 components: - type: Transform @@ -349258,6 +357022,52 @@ entities: - type: Transform pos: 6.5,2.5 parent: 45518 + - uid: 47564 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 51418 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 51419 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 51517 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - uid: 51518 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 51635 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 51636 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 51666 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 53249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,34.5 + parent: 2 - proto: WindowDirectional entities: - uid: 477 @@ -349271,6 +357081,12 @@ entities: rot: 3.141592653589793 rad pos: -9.5,24.5 parent: 2 + - uid: 959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,25.5 + parent: 2 - uid: 1345 components: - type: Transform @@ -349351,6 +357167,12 @@ entities: rot: 3.141592653589793 rad pos: 7.5,31.5 parent: 2 + - uid: 5812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,28.5 + parent: 2 - uid: 6262 components: - type: Transform @@ -349386,26 +357208,89 @@ entities: rot: 3.141592653589793 rad pos: 9.5,31.5 parent: 2 + - uid: 9309 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 - uid: 9968 components: - type: Transform pos: -13.5,17.5 parent: 2 + - uid: 9997 + components: + - type: Transform + pos: -24.5,33.5 + parent: 2 + - uid: 10365 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 - uid: 11142 components: - type: Transform pos: -16.5,-34.5 parent: 2 + - uid: 11163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,28.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,28.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,28.5 + parent: 2 - uid: 11539 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-36.5 parent: 2 - - uid: 11855 + - uid: 11820 components: - type: Transform - pos: -15.5,38.5 + rot: -1.5707963267948966 rad + pos: -57.5,2.5 + parent: 2 + - uid: 12166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,28.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,3.5 + parent: 2 + - uid: 12247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,4.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,5.5 parent: 2 - uid: 12289 components: @@ -349413,12 +357298,29 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-8.5 parent: 2 + - uid: 12912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,4.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 - uid: 13915 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-37.5 parent: 2 + - uid: 14081 + components: + - type: Transform + pos: -29.5,31.5 + parent: 2 - uid: 14591 components: - type: Transform @@ -349430,6 +357332,12 @@ entities: - type: Transform pos: -29.5,39.5 parent: 2 + - uid: 16446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 - uid: 17299 components: - type: Transform @@ -349482,12 +357390,6 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-8.5 parent: 2 - - uid: 20496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,38.5 - parent: 2 - uid: 20504 components: - type: Transform @@ -349510,209 +357412,216 @@ entities: - type: Transform pos: -32.5,39.5 parent: 2 - - uid: 23159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,39.5 - parent: 2 - - uid: 25348 + - uid: 21444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,30.5 + pos: -6.5,-5.5 parent: 2 - - uid: 26506 + - uid: 21764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,17.5 + rot: 3.141592653589793 rad + pos: -6.5,-4.5 parent: 2 - - uid: 28918 + - uid: 22220 components: - type: Transform - pos: -18.5,38.5 + pos: -56.5,2.5 parent: 2 - - uid: 29344 + - uid: 23103 components: - type: Transform - pos: -63.5,3.5 + pos: -54.5,2.5 parent: 2 - - uid: 29375 + - uid: 23193 components: - type: Transform - pos: -64.5,3.5 + rot: -1.5707963267948966 rad + pos: 31.5,4.5 parent: 2 - - uid: 29564 + - uid: 23423 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,43.5 + pos: -26.5,33.5 parent: 2 - - uid: 29691 + - uid: 23711 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-2.5 + pos: -57.5,2.5 parent: 2 - - uid: 31242 + - uid: 23817 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,38.5 + pos: -60.5,-6.5 parent: 2 - - uid: 31509 + - uid: 23991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,43.5 + rot: -1.5707963267948966 rad + pos: -62.5,-6.5 parent: 2 - - uid: 31523 + - uid: 24312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,42.5 + rot: -1.5707963267948966 rad + pos: -62.5,-5.5 parent: 2 - - uid: 31606 + - uid: 24313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,41.5 + rot: 3.141592653589793 rad + pos: -61.5,-4.5 parent: 2 - - uid: 32115 + - uid: 24349 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-59.5 + pos: -62.5,-4.5 parent: 2 - - uid: 32193 + - uid: 24664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-61.5 + rot: 3.141592653589793 rad + pos: -62.5,-4.5 parent: 2 - - uid: 32194 + - uid: 24685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-59.5 + pos: -62.5,-6.5 parent: 2 - - uid: 32210 + - uid: 25321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-58.5 + pos: -61.5,-6.5 parent: 2 - - uid: 32271 + - uid: 25348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,25.5 + rot: -1.5707963267948966 rad + pos: -47.5,30.5 parent: 2 - - uid: 32275 + - uid: 25773 components: - type: Transform - pos: -21.5,33.5 + pos: -60.5,-6.5 parent: 2 - - uid: 32277 + - uid: 25774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,25.5 + rot: 1.5707963267948966 rad + pos: -60.5,-5.5 parent: 2 - - uid: 32278 + - uid: 25775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,25.5 + rot: 1.5707963267948966 rad + pos: -60.5,-4.5 parent: 2 - - uid: 32279 + - uid: 25777 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,24.5 + pos: -60.5,-4.5 parent: 2 - - uid: 32280 + - uid: 26053 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,25.5 + pos: -6.5,-4.5 parent: 2 - - uid: 32281 + - uid: 26099 components: - type: Transform - pos: -17.5,33.5 + pos: -15.5,28.5 parent: 2 - - uid: 32282 + - uid: 26101 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,29.5 + pos: -13.5,39.5 parent: 2 - - uid: 32284 + - uid: 26373 components: - type: Transform - pos: -14.5,25.5 + rot: 1.5707963267948966 rad + pos: -17.5,25.5 parent: 2 - - uid: 32285 + - uid: 26375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,24.5 + pos: -14.5,28.5 parent: 2 - - uid: 32287 + - uid: 26506 components: - type: Transform - pos: -21.5,24.5 + rot: 1.5707963267948966 rad + pos: -16.5,17.5 parent: 2 - - uid: 32288 + - uid: 29344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,24.5 + pos: -63.5,3.5 parent: 2 - - uid: 32293 + - uid: 29375 components: - type: Transform - pos: -13.5,33.5 + pos: -64.5,3.5 parent: 2 - - uid: 32294 + - uid: 29564 components: - type: Transform - pos: -18.5,33.5 + rot: -1.5707963267948966 rad + pos: -23.5,43.5 parent: 2 - - uid: 32295 + - uid: 29691 components: - type: Transform - pos: -14.5,33.5 + rot: 3.141592653589793 rad + pos: -61.5,-2.5 parent: 2 - - uid: 32296 + - uid: 31509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,33.5 + rot: 1.5707963267948966 rad + pos: -23.5,43.5 parent: 2 - - uid: 32297 + - uid: 31523 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,33.5 + pos: -23.5,42.5 parent: 2 - - uid: 32298 + - uid: 31606 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,25.5 + pos: -23.5,41.5 parent: 2 - - uid: 32299 + - uid: 32115 components: - type: Transform - pos: -13.5,25.5 + rot: -1.5707963267948966 rad + pos: 7.5,-59.5 parent: 2 - - uid: 32300 + - uid: 32193 components: - type: Transform - pos: -13.5,29.5 + rot: -1.5707963267948966 rad + pos: 7.5,-61.5 + parent: 2 + - uid: 32194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-59.5 + parent: 2 + - uid: 32210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-58.5 parent: 2 - uid: 32302 components: @@ -349747,29 +357656,11 @@ entities: rot: -1.5707963267948966 rad pos: -77.5,-24.5 parent: 2 - - uid: 32308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,33.5 - parent: 2 - uid: 32310 components: - type: Transform pos: 31.5,-64.5 parent: 2 - - uid: 32747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,29.5 - parent: 2 - - uid: 32874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,29.5 - parent: 2 - uid: 32958 components: - type: Transform @@ -349958,11 +357849,6 @@ entities: - type: Transform pos: -0.5,9.5 parent: 34641 - - uid: 35603 - components: - - type: Transform - pos: -14.5,29.5 - parent: 2 - uid: 35918 components: - type: Transform @@ -349973,6 +357859,17 @@ entities: - type: Transform pos: 71.5,-16.5 parent: 2 + - uid: 37472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 2 + - uid: 37481 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 - uid: 41191 components: - type: Transform @@ -349991,6 +357888,33 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-56.5 parent: 2 + - uid: 41551 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 41669 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 41861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 + - uid: 42123 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 42149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 - uid: 42535 components: - type: Transform @@ -350037,6 +357961,12 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,1.5 parent: 2 + - uid: 42653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 - uid: 44040 components: - type: Transform @@ -350055,18 +357985,6 @@ entities: rot: 3.141592653589793 rad pos: 72.5,-26.5 parent: 2 - - uid: 44043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-26.5 - parent: 2 - - uid: 44045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-25.5 - parent: 2 - uid: 44046 components: - type: Transform @@ -350352,6 +358270,54 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,17.5 parent: 45711 + - uid: 51139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 + - uid: 51501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,30.5 + parent: 2 + - uid: 51532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,29.5 + parent: 2 + - uid: 51533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,30.5 + parent: 2 + - uid: 52978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,32.5 + parent: 2 + - uid: 53250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-26.5 + parent: 2 + - uid: 53251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-25.5 + parent: 2 + - uid: 54204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-26.5 + parent: 2 - proto: WindowFrostedDirectional entities: - uid: 1557 @@ -350378,11 +358344,23 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-54.5 parent: 2 + - uid: 11061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 - uid: 11952 components: - type: Transform pos: 30.5,-14.5 parent: 2 + - uid: 12607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 - uid: 17420 components: - type: Transform @@ -350419,12 +358397,24 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-58.5 parent: 2 + - uid: 23313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,35.5 + parent: 2 - uid: 24481 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-13.5 parent: 2 + - uid: 26234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,35.5 + parent: 2 - uid: 26302 components: - type: Transform @@ -350943,40 +358933,17 @@ entities: rot: 3.141592653589793 rad pos: -89.5,-15.5 parent: 2 - - uid: 32697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-16.5 - parent: 2 - - uid: 32698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-15.5 - parent: 2 - uid: 32699 components: - type: Transform pos: -89.5,-13.5 parent: 2 - - uid: 32700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,-16.5 - parent: 2 - uid: 32701 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,-16.5 parent: 2 - - uid: 32702 - components: - - type: Transform - pos: -88.5,-16.5 - parent: 2 - uid: 32703 components: - type: Transform @@ -351029,6 +358996,12 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,55.5 parent: 2 + - uid: 36099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,-16.5 + parent: 2 - uid: 36357 components: - type: Transform @@ -351047,6 +359020,23 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-53.5 parent: 2 + - uid: 45873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,-15.5 + parent: 2 + - uid: 47656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,-16.5 + parent: 2 + - uid: 47657 + components: + - type: Transform + pos: -88.5,-16.5 + parent: 2 - uid: 47744 components: - type: Transform @@ -351154,6 +359144,48 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,37.5 parent: 45711 + - uid: 51513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,28.5 + parent: 2 + - uid: 51524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,28.5 + parent: 2 + - uid: 51525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,28.5 + parent: 2 + - uid: 51529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 + - uid: 51531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,30.5 + parent: 2 + - uid: 51534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,29.5 + parent: 2 + - uid: 51535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,30.5 + parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 452 @@ -351572,6 +359604,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-48.5 parent: 2 + - uid: 22021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 2 - uid: 22899 components: - type: Transform @@ -351593,6 +359631,12 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-32.5 parent: 2 + - uid: 23627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,65.5 + parent: 2 - uid: 23848 components: - type: Transform @@ -351640,6 +359684,12 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,57.5 parent: 2 + - uid: 26361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 2 - uid: 26733 components: - type: Transform @@ -351722,11 +359772,6 @@ entities: - type: Transform pos: 0.5,60.5 parent: 2 - - uid: 28195 - components: - - type: Transform - pos: -0.5,60.5 - parent: 2 - uid: 28196 components: - type: Transform @@ -351945,30 +359990,6 @@ entities: - type: Transform pos: -31.5,-60.5 parent: 2 - - uid: 32345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-1.5 - parent: 2 - - uid: 32346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-1.5 - parent: 2 - - uid: 32347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-1.5 - parent: 2 - - uid: 32348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-8.5 - parent: 2 - uid: 32349 components: - type: Transform @@ -352149,48 +360170,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-9.5 parent: 2 - - uid: 32396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 2 - - uid: 32397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 2 - - uid: 32398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 2 - - uid: 32399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 2 - - uid: 32400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,2.5 - parent: 2 - - uid: 32401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,2.5 - parent: 2 - - uid: 32402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,2.5 - parent: 2 - uid: 32403 components: - type: Transform @@ -352474,12 +360453,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-23.5 parent: 2 - - uid: 32491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,2.5 - parent: 2 - uid: 32492 components: - type: Transform @@ -352570,75 +360543,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-23.5 parent: 2 - - uid: 32520 - components: - - type: Transform - pos: -62.5,-6.5 - parent: 2 - - uid: 32521 - components: - - type: Transform - pos: -61.5,-6.5 - parent: 2 - - uid: 32522 - components: - - type: Transform - pos: -60.5,-6.5 - parent: 2 - - uid: 32523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-4.5 - parent: 2 - - uid: 32524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-4.5 - parent: 2 - - uid: 32525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-4.5 - parent: 2 - - uid: 32526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-4.5 - parent: 2 - - uid: 32527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-5.5 - parent: 2 - - uid: 32528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-6.5 - parent: 2 - - uid: 32529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-6.5 - parent: 2 - - uid: 32530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-5.5 - parent: 2 - - uid: 32531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-4.5 - parent: 2 - uid: 32532 components: - type: Transform @@ -353880,6 +361784,62 @@ entities: - type: Transform pos: 26.5,31.5 parent: 45711 + - uid: 51872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,0.5 + parent: 2 + - uid: 51877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,0.5 + parent: 2 + - uid: 51878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,0.5 + parent: 2 + - uid: 51879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,0.5 + parent: 2 + - uid: 51880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - uid: 51881 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 51882 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 51883 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 51884 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 51885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,0.5 + parent: 2 - uid: 53266 components: - type: Transform @@ -353970,6 +361930,219 @@ entities: - type: Transform pos: 60.5,-9.5 parent: 2 +- proto: WoodenBench + entities: + - uid: 1206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,-8.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,-5.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-4.5 + parent: 2 + - uid: 11072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-3.5 + parent: 2 + - uid: 11073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-5.5 + parent: 2 + - uid: 11078 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - uid: 11085 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,56.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-4.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,56.5 + parent: 2 + - uid: 14621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,57.5 + parent: 2 + - uid: 14662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,58.5 + parent: 2 + - uid: 14665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,57.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,57.5 + parent: 2 + - uid: 14894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,57.5 + parent: 2 + - uid: 14895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,58.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,58.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,56.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,58.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,58.5 + parent: 2 + - uid: 15370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,58.5 + parent: 2 + - uid: 15372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,56.5 + parent: 2 + - uid: 16205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,56.5 + parent: 2 + - uid: 16213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,56.5 + parent: 2 + - uid: 16214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,57.5 + parent: 2 + - uid: 17880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,57.5 + parent: 2 + - uid: 18632 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 19744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-10.5 + parent: 2 + - uid: 20496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - uid: 21129 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 45279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-11.5 + parent: 2 + - uid: 45947 + components: + - type: Transform + pos: -80.5,-9.5 + parent: 2 + - uid: 48475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-10.5 + parent: 2 + - uid: 51502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,1.5 + parent: 2 + - uid: 51514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + - uid: 51678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,1.5 + parent: 2 - proto: WoodenSupportWall entities: - uid: 50461 @@ -354084,11 +362257,6 @@ entities: - type: Transform pos: -47.431923,-42.56954 parent: 2 - - uid: 45304 - components: - - type: Transform - pos: -47.431923,-42.56954 - parent: 2 - uid: 50462 components: - type: Transform @@ -354138,6 +362306,18 @@ entities: parent: 45711 - proto: ZiptiesBroken entities: + - uid: 11210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.941847,-74.60156 + parent: 2 + - uid: 22866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.24257,-78.02643 + parent: 2 - uid: 32733 components: - type: Transform From b8363cd82a4814bce79d08b258566336d3dac95b Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Sat, 30 Mar 2024 19:25:36 -0400 Subject: [PATCH 26/83] Give stores the ability to check for owner only (#26573) adds a check if the store belongs to the user --- .../Store/Components/StoreComponent.cs | 7 +++++++ Content.Server/Store/Systems/StoreSystem.cs | 17 +++++++++++++++++ Resources/Locale/en-US/store/store.ftl | 2 ++ 3 files changed, 26 insertions(+) diff --git a/Content.Server/Store/Components/StoreComponent.cs b/Content.Server/Store/Components/StoreComponent.cs index 063e25fbf9f..0b7dbbea094 100644 --- a/Content.Server/Store/Components/StoreComponent.cs +++ b/Content.Server/Store/Components/StoreComponent.cs @@ -78,6 +78,13 @@ public sealed partial class StoreComponent : Component [ViewVariables, DataField] public bool RefundAllowed; + /// + /// Checks if store can be opened by the account owner only. + /// Not meant to be used with uplinks. + /// + [ViewVariables(VVAccess.ReadWrite), DataField] + public bool OwnerOnly; + /// /// The map the store was originally from, used to block refunds if the map is changed /// diff --git a/Content.Server/Store/Systems/StoreSystem.cs b/Content.Server/Store/Systems/StoreSystem.cs index 8ce1f9bb83a..56426e04045 100644 --- a/Content.Server/Store/Systems/StoreSystem.cs +++ b/Content.Server/Store/Systems/StoreSystem.cs @@ -10,6 +10,7 @@ using Robust.Server.GameObjects; using Robust.Shared.Prototypes; using System.Linq; +using Robust.Shared.Utility; namespace Content.Server.Store.Systems; @@ -26,6 +27,7 @@ public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnStoreOpenAttempt); SubscribeLocalEvent(OnAfterInteract); SubscribeLocalEvent(BeforeActivatableUiOpen); @@ -65,6 +67,21 @@ private void OnShutdown(EntityUid uid, StoreComponent component, ComponentShutdo RaiseLocalEvent(uid, ref ev, true); } + private void OnStoreOpenAttempt(EntityUid uid, StoreComponent component, ActivatableUIOpenAttemptEvent args) + { + if (!component.OwnerOnly) + return; + + component.AccountOwner ??= args.User; + DebugTools.Assert(component.AccountOwner != null); + + if (component.AccountOwner == args.User) + return; + + _popup.PopupEntity(Loc.GetString("store-not-account-owner", ("store", uid)), uid, args.User); + args.Cancel(); + } + private void OnAfterInteract(EntityUid uid, CurrencyComponent component, AfterInteractEvent args) { if (args.Handled || !args.CanReach) diff --git a/Resources/Locale/en-US/store/store.ftl b/Resources/Locale/en-US/store/store.ftl index 7af2b055338..d663cc61f71 100644 --- a/Resources/Locale/en-US/store/store.ftl +++ b/Resources/Locale/en-US/store/store.ftl @@ -6,3 +6,5 @@ store-ui-traitor-flavor = Copyright (C) NT -30643 store-ui-traitor-warning = Operatives must lock their uplinks after use to avoid detection. store-withdraw-button-ui = Withdraw {$currency} + +store-not-account-owner = This {$store} is not bound to you! From a23ff527d450e02ea4ba71e3e49edc65a4d2eb62 Mon Sep 17 00:00:00 2001 From: "Wrexbe (Josh)" <81056464+wrexbe@users.noreply.github.com> Date: Sat, 30 Mar 2024 16:50:29 -0700 Subject: [PATCH 27/83] Fix round start crash (causing instant restart) (#26579) * Fix round start crash * Make `TryCreateObjective` more error tolerant --- Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs | 5 +++++ Resources/Prototypes/Objectives/objectiveGroups.yml | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs index 2e1bdc43831..07032a00ce9 100644 --- a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs +++ b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs @@ -1,6 +1,7 @@ using Content.Shared.Mind; using Content.Shared.Objectives; using Content.Shared.Objectives.Components; +using Robust.Shared.Prototypes; using Robust.Shared.Utility; namespace Content.Shared.Objectives.Systems; @@ -11,6 +12,7 @@ namespace Content.Shared.Objectives.Systems; public abstract class SharedObjectivesSystem : EntitySystem { [Dependency] private readonly SharedMindSystem _mind = default!; + [Dependency] private readonly IPrototypeManager _protoMan = default!; private EntityQuery _metaQuery; @@ -55,6 +57,9 @@ public bool CanBeAssigned(EntityUid uid, EntityUid mindId, MindComponent mind, O /// public EntityUid? TryCreateObjective(EntityUid mindId, MindComponent mind, string proto) { + if (!_protoMan.HasIndex(proto)) + return null; + var uid = Spawn(proto); if (!TryComp(uid, out var comp)) { diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index 83921ec983c..ff126eb5d16 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -72,7 +72,6 @@ TechnologyDiskStealCollectionObjective: 1 #rnd FigurineStealCollectionObjective: 0.3 #service IDCardsStealCollectionObjective: 1 - CannabisStealCollectionObjective: 1 LAMPStealCollectionObjective: 2 #only for moth - type: weightedRandom From 69cacf6dc8e844bd7e3eb09722dd04c784568fbd Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sun, 31 Mar 2024 14:18:50 +1300 Subject: [PATCH 28/83] Update engine to v217.1.0 (#26588) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 4002cbddb9c..b28b5ed09b3 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 4002cbddb9c9de9030a81480b45b13d978b87526 +Subproject commit b28b5ed09b361c4f2da5dd9c3e392b79e6b23c51 From 0edd0a74f426f19fc1fb7519656c62f70d02cd1f Mon Sep 17 00:00:00 2001 From: "Wrexbe (Josh)" <81056464+wrexbe@users.noreply.github.com> Date: Sat, 30 Mar 2024 18:20:45 -0700 Subject: [PATCH 29/83] Fix initial infected icon hiding (#26585) --- Content.Client/Zombies/ZombieSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Zombies/ZombieSystem.cs b/Content.Client/Zombies/ZombieSystem.cs index 7c1fb38e744..49b5d6aec18 100644 --- a/Content.Client/Zombies/ZombieSystem.cs +++ b/Content.Client/Zombies/ZombieSystem.cs @@ -46,7 +46,7 @@ private void OnCanDisplayStatusIcons(EntityUid uid, ZombieComponent component, r args.Cancelled = true; } - private void OnCanDisplayStatusIcons(EntityUid uid, InitialInfectedComponent component, CanDisplayStatusIconsEvent args) + private void OnCanDisplayStatusIcons(EntityUid uid, InitialInfectedComponent component, ref CanDisplayStatusIconsEvent args) { if (HasComp(args.User) && !HasComp(args.User)) return; From 7130d1ca2f7ad3793d7a4304865506a640808369 Mon Sep 17 00:00:00 2001 From: "Wrexbe (Josh)" <81056464+wrexbe@users.noreply.github.com> Date: Sat, 30 Mar 2024 18:24:26 -0700 Subject: [PATCH 30/83] Fix Meta evac shuttle name (#26587) --- Resources/Maps/Shuttles/emergency_meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Maps/Shuttles/emergency_meta.yml b/Resources/Maps/Shuttles/emergency_meta.yml index 57e9f98f402..385f5e3bbf3 100644 --- a/Resources/Maps/Shuttles/emergency_meta.yml +++ b/Resources/Maps/Shuttles/emergency_meta.yml @@ -21,7 +21,7 @@ entities: - uid: 1 components: - type: MetaData - name: grid + name: NT Evac Meta - type: Transform pos: -2.4375,0.859375 parent: invalid From 8676aad583ad7104151bf22932da86a87cb52c5a Mon Sep 17 00:00:00 2001 From: "Wrexbe (Josh)" <81056464+wrexbe@users.noreply.github.com> Date: Sat, 30 Mar 2024 18:26:41 -0700 Subject: [PATCH 31/83] Make timer ignore client predict setting (#26554) * Make timer ignore client predict setting * making tests run --------- Co-authored-by: wrexbe --- Content.Client/TextScreen/TextScreenSystem.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Client/TextScreen/TextScreenSystem.cs b/Content.Client/TextScreen/TextScreenSystem.cs index a736933d0fa..b4d67f5f218 100644 --- a/Content.Client/TextScreen/TextScreenSystem.cs +++ b/Content.Client/TextScreen/TextScreenSystem.cs @@ -62,6 +62,8 @@ public override void Initialize() SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnTimerInit); + + UpdatesOutsidePrediction = true; } private void OnInit(EntityUid uid, TextScreenVisualsComponent component, ComponentInit args) From 175f8205c0c43ae12438bc1d9019a72d9fcca341 Mon Sep 17 00:00:00 2001 From: "Wrexbe (Josh)" <81056464+wrexbe@users.noreply.github.com> Date: Sat, 30 Mar 2024 18:34:31 -0700 Subject: [PATCH 32/83] Make advertise system survive no map inits (#26553) * Make advertise system survive no map inits * Add comment to try prevent future bugs --- Content.Server/Advertise/EntitySystems/AdvertiseSystem.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Content.Server/Advertise/EntitySystems/AdvertiseSystem.cs b/Content.Server/Advertise/EntitySystems/AdvertiseSystem.cs index bb254d11ef0..b326321d546 100644 --- a/Content.Server/Advertise/EntitySystems/AdvertiseSystem.cs +++ b/Content.Server/Advertise/EntitySystems/AdvertiseSystem.cs @@ -23,7 +23,7 @@ public sealed class AdvertiseSystem : EntitySystem /// /// The next time the game will check if advertisements should be displayed /// - private TimeSpan _nextCheckTime = TimeSpan.MaxValue; + private TimeSpan _nextCheckTime = TimeSpan.MinValue; public override void Initialize() { @@ -33,8 +33,8 @@ public override void Initialize() SubscribeLocalEvent(OnPowerReceiverEnableChangeAttempt); SubscribeLocalEvent(OnVendingEnableChangeAttempt); - // The component inits will lower this. - _nextCheckTime = TimeSpan.MaxValue; + // Force it to check on the next update. + _nextCheckTime = TimeSpan.MinValue; } private void OnMapInit(EntityUid uid, AdvertiseComponent advertise, MapInitEvent args) @@ -110,6 +110,8 @@ public override void Update(float frameTime) if (_nextCheckTime > curTime) return; + // Note that as _nextCheckTime currently starts at TimeSpan.MinValue, so this has to SET the value, not just + // increment it. _nextCheckTime = curTime + _maximumNextCheckDuration; var query = EntityQueryEnumerator(); From 602d30c908e44ea5061842bc8015cf9361a80258 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 Mar 2024 12:58:47 +1100 Subject: [PATCH 33/83] Update Credits (#26589) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index f918d9320f6..f201c036304 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUmAndXGabriel08X, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, artak10t, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, CaptainSqrBeard, Carbonhell, casperr04, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, CrafterKolyan, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, Kadeo64, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, LightVillet, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, LudwigVonChesterfield, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, M3739, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, matthst, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nails-n-Tape, Nairodian, Naive817, NakataRin, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, Nylux, OctoRocket, OldDanceJacket, OliverOtter, onoira, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, Phill101, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, Ranger6012, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, renodubois, RiceMar1244, RieBi, RIKELOLDABOSS, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SamV522, SaphireLattice, ScalyChimp, scrato, Scribbles0, ScumbagDog, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, SirDragooon, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stanislav4ix, Stealthbomber16, StrawberryMoses, Subversionary, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, tom-leys, tomasalves8, Tomeno, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Verslebas, VigersRay, Visne, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, youarereadingthis, YuriyKiss, zach-hill, Zandario, Zap527, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUmAndXGabriel08X, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, casperr04, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, CrafterKolyan, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, Kadeo64, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, LightVillet, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, LudwigVonChesterfield, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, M3739, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, matthst, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nails-n-Tape, Nairodian, Naive817, NakataRin, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, Nylux, OctoRocket, OldDanceJacket, OliverOtter, onoira, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, Phill101, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, Ranger6012, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, renodubois, RiceMar1244, RieBi, RIKELOLDABOSS, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, SirDragooon, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, tom-leys, tomasalves8, Tomeno, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem From e7af28d22a02b356265a147f0a757739a98bda23 Mon Sep 17 00:00:00 2001 From: "Wrexbe (Josh)" <81056464+wrexbe@users.noreply.github.com> Date: Sat, 30 Mar 2024 18:59:06 -0700 Subject: [PATCH 34/83] Fix fox spawn on reach (#26584) Co-authored-by: wrexbe --- Resources/Maps/reach.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Resources/Maps/reach.yml b/Resources/Maps/reach.yml index cd1389c31b2..f84136e9ec0 100644 --- a/Resources/Maps/reach.yml +++ b/Resources/Maps/reach.yml @@ -11786,12 +11786,14 @@ entities: - uid: 1030 components: - type: Transform - pos: 21.5,-3.5 + pos: 18.5,-3.5 parent: 407 +- proto: SpawnMobFoxRenault + entities: - uid: 1826 components: - type: Transform - pos: 18.5,-3.5 + pos: 21.5,-3.5 parent: 407 - proto: SpawnPointAtmos entities: From 1f3f1d7d972bfd7671a5023779198e0ab776f813 Mon Sep 17 00:00:00 2001 From: Flareguy <78941145+Flareguy@users.noreply.github.com> Date: Sat, 30 Mar 2024 21:01:28 -0500 Subject: [PATCH 35/83] Removes SCAF armor (#26566) * removes scaf armor * replace maint loot spawner spot with basic helmet --- .../Entities/Clothing/Head/helmets.yml | 23 ---------------- .../Entities/Clothing/OuterClothing/armor.yml | 26 ------------------ .../Markers/Spawners/Random/maintenance.yml | 2 +- .../Head/Helmets/scaf.rsi/equipped-HELMET.png | Bin 890 -> 0 bytes .../Clothing/Head/Helmets/scaf.rsi/icon.png | Bin 569 -> 0 bytes .../Head/Helmets/scaf.rsi/inhand-left.png | Bin 753 -> 0 bytes .../Head/Helmets/scaf.rsi/inhand-right.png | Bin 774 -> 0 bytes .../Clothing/Head/Helmets/scaf.rsi/meta.json | 26 ------------------ .../Armor/scaf.rsi/equipped-OUTERCLOTHING.png | Bin 1487 -> 0 bytes .../OuterClothing/Armor/scaf.rsi/icon.png | Bin 667 -> 0 bytes .../Armor/scaf.rsi/inhand-left.png | Bin 691 -> 0 bytes .../Armor/scaf.rsi/inhand-right.png | Bin 680 -> 0 bytes .../OuterClothing/Armor/scaf.rsi/meta.json | 26 ------------------ Resources/migration.yml | 5 ++++ 14 files changed, 6 insertions(+), 102 deletions(-) delete mode 100644 Resources/Textures/Clothing/Head/Helmets/scaf.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/scaf.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/scaf.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/scaf.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/scaf.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 48aa43fa55d..2c5cb54094c 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -147,29 +147,6 @@ Piercing: 0.9 Heat: 0.9 -#SCAF Helmet -- type: entity - parent: ClothingHeadBase - id: ClothingHeadHelmetScaf - name: scaf helmet - description: A robust, strong helmet. - components: - - type: Sprite - sprite: Clothing/Head/Helmets/scaf.rsi - - type: Clothing - sprite: Clothing/Head/Helmets/scaf.rsi - - type: IngestionBlocker - - type: Armor - modifiers: - coefficients: - Blunt: 0.9 - Slash: 0.9 - Piercing: 0.8 - - type: Tag - tags: - - HidesHair - - WhitelistChameleon - #Space Ninja Helmet - type: entity parent: ClothingHeadEVAHelmetBase diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index fdaee45ccc8..9a1f1427402 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -183,32 +183,6 @@ - type: Clothing sprite: Clothing/OuterClothing/Armor/magusred.rsi -- type: entity - parent: ClothingOuterBaseLarge - id: ClothingOuterArmorScaf - name: scaf suit - description: A green and brown tactical suit for combat situations. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Armor/scaf.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Armor/scaf.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.7 - Slash: 0.7 - Piercing: 0.4 - Heat: 0.9 - Caustic: 0.9 - - type: ExplosionResistance - damageCoefficient: 0.8 - - type: GroupExamine - - type: Tag - tags: - - Hardsuit - - WhitelistChameleon - - type: entity parent: ClothingOuterBaseLarge id: ClothingOuterArmorCaptainCarapace diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index df61726a996..450b501d1aa 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -77,7 +77,7 @@ - ClothingHeadHatCone - ClothingNeckBling - ClothingHeadHelmetCosmonaut - - ClothingHeadHelmetScaf + - ClothingHeadHelmetBasic - ClothingShoeSlippersDuck - ClothingUnderSocksBee - ClothingUnderSocksCoder diff --git a/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/equipped-HELMET.png deleted file mode 100644 index ec1c408550ddbd67c5dce0f1b60bc6193fd5275a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 890 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV0QF$aSW-L^LEzxY+*-{>@u?EHH>ssvg1t2TzL_}|RJFEkJ;*Z@| ztr$FxiyJktpMO8UCw8{43$yt{ozINw(j}(_`t(a!q@JqT$(LQ+bU68X$!hIQQ$%`; zgk2f#u)KB$opOD_ZQKqg)L8#czcVCCsa*1opST; z@{hshXR{l9#Jofu58V9Xnsl@F$#?&P_y4{w-17X4+Mr-E5+ zPZeWCoYay(?ftNQ81tNKf3{xwy)bNN z?G4xSZx)1da&LXP#OT1L-!G7_dUj(yHXcKtlb@XVbkFm zhDWb|d26^r)awG5>Y5|{chpd`QdN$<;Y!Mk>7BP91Eb~ROCE(EmW=Onnj|l(&GQKSOiY-fh5oZk(jSE5KX>Rg T#`x_4<|zhGS3j3^P6=G`P)3`CH9;`SSPy~(>A?;iym;smbn6#Hf1rbS3PFnKAW{h7sXx(Ah#>3|vA0+P zp*C2A4lcVJ3W2q;9dy=l%h_2gjPSiU&Wzvt%=dlH2=#g$lhn*a-KPLkfWH7B@@}lu ziVn}dkRCzlxGeC-75wf2VjN2?a0N6~D-Z;;1eIFRiKP~}%uUsTsagPlH|Yh{y+f{y zjm!WsUtL;c22eD^HKrBPBhWiGPEL=QnPB!n=cbG6nGf+A%3;BH63CEMLbD7=`9bEP--tcB&lxZ7&F=2w>w{n=S&?1^7Qz5wBP zGH_5uGky-B+iG$J;@#&JR}YAC!>zq2H{6D#%@gT1LV5(I+6F-X8@|zm)xAS!dnW;) z3*Z(2pkxi)%YzfYqu2TC8)+z-fk(INd!OIBhyYOC47bBg^$xKteM`pOy3a4a0sx*L z+1<|tpm%J{OM~yGYC-9PkTJbRM9lq8?+fsiOx61IIC;%^jEQ`o<6>doA!#Kd4-GvZ zV ztd}BQN|8{ZS;0#$i@U<2U?WTqn=x+OWYwL;U3?!9f9)IJeCNFx+4lf~AP9mW2!bF8 zf*_WSfYSjaNfO}3{A4m2NA^K6ZkRbaJ!1T|Dr*3M!~N3KVsm?LJFERH2#42vO+0z=7pkmT=5sNZXRqF+EGNzPf_OSMkqVyN1Oa2xv!LihRL?K*`px5!2;-Yz zJRO57YnIXF1YrV%ln9Up5~~;J)PbGtn~?wZeFcft3ji_Wx_idpA^-r^6DBbX+o33z z0SGtDG@ZsfP#y(ry_=k`ZnX2v14$r3mV2IGF^w6sG&~1f|F@nVq70)5jLVD<-H+xcq9x8-}^uH*cf;4D@hhPnYcxa{nMMK+54;Il& zkz6IT2UqB&q%2tjqOeie9yYVx?XESrYhAPN2LrM=KkVQGOxB4LY=S+S~r)$HNBkFRC+S>$^FfTM#lXX%&zBTPTj4oud+VmA5VW(aJ= zlTidC0hF?N*=zx)q1Df{|4aXh+2m%uqZ=aMgFohVya`Od8KdyfRKIQuhEF)s?0 zj3cw4l+DZWWE6lBxHfoJ3(T_Ev;6uhbPmX*b20#g{l>%=`byyCYEh@(a1hF*bMp3+dxrGs)&_>j zfU^vk1;aU@TrG0l+5lJGHFZo1{w`oz1n+9FW*9QSZIA(r7O-esZva6M1VIo4K@bE% z5bk5@%g<%MKQN7nt+Cs}dWFGAKz;V&*{h{_t8B@DQZ_FKV@lxKwluq-unb1bYyfMc zF|^%SX2y*XjyA#a7BK6;HZ{+j&P)bm(m8o!`x^Zgpxpw^dI!IDo`ZY(008iY+u*)@ zO4ufL9$3l%p+Clm9|8c{xM{KPXzmuI9$VEncPwuK!-8ku0Vwwi3YGVcuK_bPM#|M9 z=Mj7e`&V@x(vK82QK;(NkIw*5aKM2{<8aq5W z<~)K=&4g}kurwDdZL0x)U!7SNT;Cie0~Re{(YW4#-)#mij&_gLvH$=807*qoM6N<$ Eg2Gc?oB#j- diff --git a/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/meta.json deleted file mode 100644 index e0ee93d642c..00000000000 --- a/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index e93c024893a80e649601e9a3b17bd37bd7d10537..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1487 zcmV;=1u*)FP)1XK-V7#%hG7Rr#J7-Jk5Kq z#t&tD%J_`80K73)0B-?!W2^w)0`SII0lWp^4L5DWZ+`n)1AsSc?_74;*a7L^3as2z z7LXQGS|Yh%oDXUP0Ey(nz&3V3`kanUVLCR2L~_A6$TchZ27$@~T7rtqVF`(?1)QE- zAT6e}gOq4!IxVKOmY^b$TtMcqgqEPP$iReZz6Jm|ZU5SZizXC)<@#RB6)I4&P5755 zP|erik$uMfmY`xfHf7vjip=0U?Z*dmgKqw%$V^Y0?)$X-_qqV_yQRnsT7n8C+r)Hi z3M*T4#z9`bC8&mQH2zA1e*C#YrRNxypUMStg$mU*tLt{a(kCmwr3JkFkkVc(K1T4e ziE6%vy5t?`-z`B!UGk!uuOWEZ#EZqpc=^HJWH<_bs#PE!3v~E=wQB-0|M$o~#A5-P zZmH3aU&%I&!wx@n96(T)yb%0uRMAN)D>tlNF+=dXAxq@EQzmks6_!t|CF1~qe+qvg z9MYSILuhN*q~%56Jl{aEjCMO1fw6R zI4l)FmXu$QuMyptgd#Tqz)%7~(G*Hd$EF}1Un7xhuhllDK@#27rEC3#Wb;V(=MP3d zqAq!jXYT{G(@4kH5d3b#!~uO2&hri9TCuFRdnic9?H7l)J@@pEzAnd|6%cD7s|I$g zIqr=Fcdxd!YQBc(qr2Ia_!vE#% zhKLg*J!*cY$bpP>vCC_^XJx101V6O}?5&Ef`qK&2pH849s7B-`D>r%^-oEFQRXD}Z zWC2Q6j|1w8x8r(U^1{=O5nv3$2Xlz&k$pyt!pcv*3jAO3$?pn}6~J2n-WV%@ zw*b5`Rse4Scw?*p-U9H(SOL5R;0@-DbaVRIoFV23J2Ej@!215C))G|smnX2YHRnhj z04vgBN?X~QgMV57OeTAXv|x4tkL*J=U&HCi1$QNomp?tZ=tn4l$D7HWb_=5Lel-aIkU1hiv2Gn%JGKhES$pUD>F-^AbWJr0@mRo+i#1Edv@4tzQ<{Hy0zl_Tm~(SSXAQ@e z!nByuNFI{BJeh+?I$X&%nfRG4pkK{^IWyzrq}UQvoagm(k{#-!^Lt8*cO#mkh ps#jpaxITcl0K73)0B-?!<3Eg!FlCpy$bS8ZIOuiNO;WaSt7Gc+jOJQy|UKv1_;d6&cz+V5ALau_UC9!4eiGzduzGKT4 zs+OdXt6&!N|Zvb!u(cj@8pS3Hw{3P)D;!?>Pe!3hm{uYLYT@30quBJ+_x}fKVbV%Oq+396 z2>M~@LFD;48hD-7%=>Y>@+Xkh(g6G_{bYT)W4^vjH^ROsQ*cvkQLfUpgQfTyOYt@E z;Wd)L7yUc%C~<%=v#UaXnQJGCkqUftK1&~dymuB7e@MK1oZUCY z))U*b5+SX0>huST>r$QLjT6a_fUg3_8z<6f_RP~!T8Z>zFIRc8>`t?1l8AF50{?=m zz~FllOm!eR+Rh6_ISOMXA~(|Vz+Gl=Rg42+1&+4!lCc@W*bHIIRxk6_%=^wh(5)L+ zm9Z2suR3|aFoT|QLk|+@<_LTe&mg4P-SEFB@D~W0__-qyB^dw!002ovPDHLkV1kcE BHk$wd diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/inhand-left.png deleted file mode 100644 index ce718ad3009dccde289173a2e65180ea65f811c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 691 zcmV;k0!;mhP)Vr7Mmm`QAe~GQF2&f|-cY*x3J}uW;PFM7w%KGl zH3cbv2oAY<53LD!@p2IWGae$hFhjr`Cb&77Ce8KDZPQJ|PP4&+B+FXRAlWPDjujsoTom^9!i|FhwFoIpc zb}W@!n4##_SxilIub;mE9Oz4KJzr6;UnTyE-^rIb{PsnAf3@!dy@TwXwu5eCy@TwH zAI0Ed1PK7Ir6<_jdh3RC1kMDo@sveD`GBj$oW2yL3gvLP& z;9h430-1o0w%KIzyhX-{c1!TX3SzN0w~=4qH)mjoq#~j0HAyFWb)kq;32>XfIsI5?jx`XXq(Nxa|lBC Z^BcM)3w1J!rL+J5002ovPDHLkV1mIOQ#Akp diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/inhand-right.png deleted file mode 100644 index 6bfef738a454fd7a42912bc9b1233628db04c081..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 680 zcmV;Z0$2TsP)ho@Oe_jsthXFm1!2R%dQj-8z3ke5r2jzAz4`|fwnKB+NwD=$ zdU0OXrc69ckQjqdkhWxp5Xmno%d{l;d@do$8+hJ__e}!N0}w(8A%qY@2qA!N)^}SSnIWLs!-ywTuTFl7hQub;;rXpYe7KH@8m!fc^lsgf1zcP;Bb}at zcfY4dC&OKQ^t}Zp?I{Ymb@T^Vy%k^zTi<{e--Ul`-@w^ Date: Sat, 30 Mar 2024 19:01:52 -0700 Subject: [PATCH 36/83] Update Patrons.yml (#26578) --- Resources/Credits/Patrons.yml | 36 ++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/Resources/Credits/Patrons.yml b/Resources/Credits/Patrons.yml index 193caa7350a..f7e8df9bc0a 100644 --- a/Resources/Credits/Patrons.yml +++ b/Resources/Credits/Patrons.yml @@ -1,13 +1,9 @@ -- Name: "Tomeno" - Tier: Revolutionary - Name: "Daniel Thompson" Tier: Revolutionary - Name: "Farewell Fire" Tier: Syndicate Agent - Name: "CPM311" Tier: Revolutionary -- Name: "Bobberunio" - Tier: Revolutionary - Name: "vifs_vestige" Tier: Syndicate Agent - Name: "Anthony Fleck" @@ -30,8 +26,6 @@ Tier: Revolutionary - Name: "clyf" Tier: Nuclear Operative -- Name: "spinnermaster" - Tier: Syndicate Agent - Name: "Will M." Tier: Revolutionary - Name: "The Hateful Flesh" @@ -78,8 +72,6 @@ Tier: Syndicate Agent - Name: "Saphire" Tier: Revolutionary -- Name: "DubzyVEVO" - Tier: Revolutionary - Name: "Never Solus" Tier: Syndicate Agent - Name: "Gnomo" @@ -100,8 +92,6 @@ Tier: Revolutionary - Name: "tokie" Tier: Nuclear Operative -- Name: "BlueisDumb" - Tier: Nuclear Operative - Name: "Enricoc3l" Tier: Revolutionary - Name: "DadNotTheBelt" @@ -138,14 +128,10 @@ Tier: Revolutionary - Name: "Adam Smedstad" Tier: Revolutionary -- Name: "oBerry" - Tier: Nuclear Operative - Name: "DireBoar" Tier: Revolutionary - Name: "Ignoramis" Tier: Revolutionary -- Name: "Repo" - Tier: Nuclear Operative - Name: "612" Tier: Revolutionary - Name: "Higgtastic" @@ -208,8 +194,6 @@ Tier: Revolutionary - Name: "Georgia Partyka" Tier: Syndicate Agent -- Name: "YuNii" - Tier: Syndicate Agent - Name: "Nojan Niaki" Tier: Revolutionary - Name: "nokko" @@ -284,5 +268,23 @@ Tier: Revolutionary - Name: "Black Rose" Tier: Revolutionary -- Name: "Dourbii" +- Name: "Kim" + Tier: Nuclear Operative +- Name: "Kyu, The Meme Fairy" + Tier: Syndicate Agent +- Name: "Russian TS" + Tier: Nuclear Operative +- Name: "Andrew" + Tier: Revolutionary +- Name: "Jack" + Tier: Syndicate Agent +- Name: "Brandon Roughley" + Tier: Syndicate Agent +- Name: "Sean Lilly" + Tier: Syndicate Agent +- Name: "Dieselmohawk D." + Tier: Revolutionary +- Name: "Hannah Dawson" + Tier: Syndicate Agent +- Name: "Godfiend" Tier: Revolutionary From c1b5576cc2d5c5d74a33ef7cc71eadd9f6a1aea4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 02:02:35 +0000 Subject: [PATCH 37/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 136f7054ef8..302aea15ea5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: Menshin - changes: - - message: The PA control box should now properly detect the PA parts in all situations - (notably on Origin) - type: Fix - - message: The PA control box now automatically face the control box on part scanning - type: Tweak - id: 5761 - time: '2024-01-21T09:17:17.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24356 - author: metalgearsloth changes: - message: Fix revolver prediction. @@ -3794,3 +3784,10 @@ id: 6260 time: '2024-03-30T06:52:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/25886 +- author: Flareguy + changes: + - message: Removed SCAF armor. + type: Remove + id: 6261 + time: '2024-03-31T02:01:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26566 From 87a56b25c3f06ea98661684b8e62f8acb0afee85 Mon Sep 17 00:00:00 2001 From: Simon <63975668+Simyon264@users.noreply.github.com> Date: Sun, 31 Mar 2024 04:05:44 +0200 Subject: [PATCH 38/83] Make aghost command work on other players using optional argument (#26546) * Translations * Make aghost command work on other players using optional argument * Reviews --- .../Administration/Commands/AGhost.cs | 140 ++++++++++++------ .../en-US/administration/commands/aghost.ftl | 3 + Resources/Locale/en-US/shell.ftl | 1 + 3 files changed, 99 insertions(+), 45 deletions(-) create mode 100644 Resources/Locale/en-US/administration/commands/aghost.ftl diff --git a/Content.Server/Administration/Commands/AGhost.cs b/Content.Server/Administration/Commands/AGhost.cs index d541b1c8840..935114e7a68 100644 --- a/Content.Server/Administration/Commands/AGhost.cs +++ b/Content.Server/Administration/Commands/AGhost.cs @@ -1,72 +1,122 @@ -using Content.Server.GameTicking; +using System.Linq; +using Content.Server.GameTicking; +using Content.Server.Ghost; +using Content.Server.Mind; using Content.Shared.Administration; using Content.Shared.Ghost; using Content.Shared.Mind; +using Robust.Server.GameObjects; +using Robust.Server.Player; using Robust.Shared.Console; -namespace Content.Server.Administration.Commands +namespace Content.Server.Administration.Commands; + +[AdminCommand(AdminFlags.Admin)] +public sealed class AGhost : LocalizedCommands { - [AdminCommand(AdminFlags.Admin)] - public sealed class AGhost : IConsoleCommand + [Dependency] private readonly IEntityManager _entities = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + + public override string Command => "aghost"; + public override string Description => LocalizationManager.GetString("aghost-description"); + public override string Help => "aghost"; + + public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) { - [Dependency] private readonly IEntityManager _entities = default!; + if (args.Length == 1) + { + var names = _playerManager.Sessions.OrderBy(c => c.Name).Select(c => c.Name).ToArray(); + return CompletionResult.FromHintOptions(names, LocalizationManager.GetString("shell-argument-username-optional-hint")); + } - public string Command => "aghost"; - public string Description => "Makes you an admin ghost."; - public string Help => "aghost"; + return CompletionResult.Empty; + } - public void Execute(IConsoleShell shell, string argStr, string[] args) + public override void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length > 1) { - var player = shell.Player; - if (player == null) + shell.WriteError(LocalizationManager.GetString("shell-wrong-arguments-number")); + return; + } + + var player = shell.Player; + var self = player != null; + if (player == null) + { + // If you are not a player, you require a player argument. + if (args.Length == 0) { - shell.WriteLine("Nah"); + shell.WriteError(LocalizationManager.GetString("shell-need-exactly-one-argument")); return; } - var mindSystem = _entities.System(); - if (!mindSystem.TryGetMind(player, out var mindId, out var mind)) + var didFind = _playerManager.TryGetSessionByUsername(args[0], out player); + if (!didFind) { - shell.WriteLine("You can't ghost here!"); + shell.WriteError(LocalizationManager.GetString("shell-target-player-does-not-exist")); return; } + } - var metaDataSystem = _entities.System(); - - if (mind.VisitingEntity != default && _entities.TryGetComponent(mind.VisitingEntity, out var oldGhostComponent)) + // If you are a player and a username is provided, a lookup is done to find the target player. + if (args.Length == 1) + { + var didFind = _playerManager.TryGetSessionByUsername(args[0], out player); + if (!didFind) { - mindSystem.UnVisit(mindId, mind); - // If already an admin ghost, then return to body. - if (oldGhostComponent.CanGhostInteract) - return; + shell.WriteError(LocalizationManager.GetString("shell-target-player-does-not-exist")); + return; } + } - var canReturn = mind.CurrentEntity != null - && !_entities.HasComponent(mind.CurrentEntity); - var coordinates = player.AttachedEntity != null - ? _entities.GetComponent(player.AttachedEntity.Value).Coordinates - : EntitySystem.Get().GetObserverSpawnPoint(); - var ghost = _entities.SpawnEntity(GameTicker.AdminObserverPrototypeName, coordinates); - _entities.GetComponent(ghost).AttachToGridOrMap(); + var mindSystem = _entities.System(); + var metaDataSystem = _entities.System(); + var ghostSystem = _entities.System(); + var transformSystem = _entities.System(); + var gameTicker = _entities.System(); - if (canReturn) - { - // TODO: Remove duplication between all this and "GamePreset.OnGhostAttempt()"... - if (!string.IsNullOrWhiteSpace(mind.CharacterName)) - metaDataSystem.SetEntityName(ghost, mind.CharacterName); - else if (!string.IsNullOrWhiteSpace(mind.Session?.Name)) - metaDataSystem.SetEntityName(ghost, mind.Session.Name); + if (!mindSystem.TryGetMind(player, out var mindId, out var mind)) + { + shell.WriteError(self + ? LocalizationManager.GetString("aghost-no-mind-self") + : LocalizationManager.GetString("aghost-no-mind-other")); + return; + } - mindSystem.Visit(mindId, ghost, mind); - } - else - { - metaDataSystem.SetEntityName(ghost, player.Name); - mindSystem.TransferTo(mindId, ghost, mind: mind); - } + if (mind.VisitingEntity != default && _entities.TryGetComponent(mind.VisitingEntity, out var oldGhostComponent)) + { + mindSystem.UnVisit(mindId, mind); + // If already an admin ghost, then return to body. + if (oldGhostComponent.CanGhostInteract) + return; + } + + var canReturn = mind.CurrentEntity != null + && !_entities.HasComponent(mind.CurrentEntity); + var coordinates = player!.AttachedEntity != null + ? _entities.GetComponent(player.AttachedEntity.Value).Coordinates + : gameTicker.GetObserverSpawnPoint(); + var ghost = _entities.SpawnEntity(GameTicker.AdminObserverPrototypeName, coordinates); + transformSystem.AttachToGridOrMap(ghost, _entities.GetComponent(ghost)); + + if (canReturn) + { + // TODO: Remove duplication between all this and "GamePreset.OnGhostAttempt()"... + if (!string.IsNullOrWhiteSpace(mind.CharacterName)) + metaDataSystem.SetEntityName(ghost, mind.CharacterName); + else if (!string.IsNullOrWhiteSpace(mind.Session?.Name)) + metaDataSystem.SetEntityName(ghost, mind.Session.Name); - var comp = _entities.GetComponent(ghost); - EntitySystem.Get().SetCanReturnToBody(comp, canReturn); + mindSystem.Visit(mindId, ghost, mind); } + else + { + metaDataSystem.SetEntityName(ghost, player.Name); + mindSystem.TransferTo(mindId, ghost, mind: mind); + } + + var comp = _entities.GetComponent(ghost); + ghostSystem.SetCanReturnToBody(comp, canReturn); } } diff --git a/Resources/Locale/en-US/administration/commands/aghost.ftl b/Resources/Locale/en-US/administration/commands/aghost.ftl new file mode 100644 index 00000000000..4de0639981e --- /dev/null +++ b/Resources/Locale/en-US/administration/commands/aghost.ftl @@ -0,0 +1,3 @@ +aghost-description = Makes you an admin ghost. +aghost-no-mind-self = You can't ghost here! +aghost-no-mind-other = They can't ghost here! diff --git a/Resources/Locale/en-US/shell.ftl b/Resources/Locale/en-US/shell.ftl index 7a66fbc794d..34460f001a0 100644 --- a/Resources/Locale/en-US/shell.ftl +++ b/Resources/Locale/en-US/shell.ftl @@ -47,3 +47,4 @@ shell-argument-number-invalid = Argument {$index} must be a valid number! # Hints shell-argument-username-hint = +shell-argument-username-optional-hint = [username] From ef8b16af9771fdd785251dc394aa40db30c1c224 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 02:06:49 +0000 Subject: [PATCH 39/83] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index b4b7f699fe1..8acf404ad38 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -136,5 +136,13 @@ Entries: id: 18 time: '2024-03-29T05:03:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26500 +- author: Simyon + changes: + - message: The aghost command now accepts a optional username argument to aghost + other people. + type: Tweak + id: 19 + time: '2024-03-31T02:05:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26546 Name: Admin Order: 1 From daaa7c6de0d21c5b8d9c0b659eb62878a0410d3d Mon Sep 17 00:00:00 2001 From: blueDev2 <89804215+blueDev2@users.noreply.github.com> Date: Sat, 30 Mar 2024 22:20:44 -0400 Subject: [PATCH 40/83] Add new component to Make sound on interact (#26523) * Adds new Component: EmitSoundOnInteractUsing * Missed an import * File-scoping * Replace ID check with Prototype check * Moved component and system to shared. Set prediction to true. * Removed impoper imports and changed namespace of component to reflect changed folder. * Following function naming theme * All this code is basically deltanedas's, but it was a learning experience for me * Update Content.Shared/Sound/Components/EmitSoundOnInteractUsingComponent.cs * Update Content.Shared/Sound/Components/EmitSoundOnInteractUsingComponent.cs --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../EmitSoundOnInteractUsingComponent.cs | 15 +++++++++++++++ Content.Shared/Sound/SharedEmitSoundSystem.cs | 8 ++++++++ 2 files changed, 23 insertions(+) create mode 100644 Content.Shared/Sound/Components/EmitSoundOnInteractUsingComponent.cs diff --git a/Content.Shared/Sound/Components/EmitSoundOnInteractUsingComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnInteractUsingComponent.cs new file mode 100644 index 00000000000..49118d97999 --- /dev/null +++ b/Content.Shared/Sound/Components/EmitSoundOnInteractUsingComponent.cs @@ -0,0 +1,15 @@ +using Content.Shared.Whitelist; +using Robust.Shared.Prototypes; +using Robust.Shared.GameStates; + +namespace Content.Shared.Sound.Components; + +/// +/// Whenever this item is used upon by an entity, with a tag or component within a whitelist, in the hand of a user, play a sound +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class EmitSoundOnInteractUsingComponent : BaseEmitSoundComponent +{ + [DataField(required: true)] + public EntityWhitelist Whitelist = new(); +} diff --git a/Content.Shared/Sound/SharedEmitSoundSystem.cs b/Content.Shared/Sound/SharedEmitSoundSystem.cs index cd7828fc6b3..329626964ef 100644 --- a/Content.Shared/Sound/SharedEmitSoundSystem.cs +++ b/Content.Shared/Sound/SharedEmitSoundSystem.cs @@ -41,6 +41,7 @@ public override void Initialize() SubscribeLocalEvent(OnEmitSoundOnActivateInWorld); SubscribeLocalEvent(OnEmitSoundOnPickup); SubscribeLocalEvent(OnEmitSoundOnDrop); + SubscribeLocalEvent(OnEmitSoundOnInteractUsing); SubscribeLocalEvent(OnEmitSoundOnCollide); } @@ -102,6 +103,13 @@ private void OnEmitSoundOnDrop(EntityUid uid, EmitSoundOnDropComponent component TryEmitSound(uid, component, args.User); } + private void OnEmitSoundOnInteractUsing(Entity ent, ref InteractUsingEvent args) + { + if (ent.Comp.Whitelist.IsValid(args.Used, EntityManager)) + { + TryEmitSound(ent, ent.Comp, args.User); + } + } protected void TryEmitSound(EntityUid uid, BaseEmitSoundComponent component, EntityUid? user=null, bool predict=true) { if (component.Sound == null) From b38547df530705741e0ba0789b051ffee9d6d0cf Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 31 Mar 2024 04:21:31 +0200 Subject: [PATCH 41/83] Increase syndi duffelbag storage (#26565) * Increase syndi duffelbag storage * weh --- Resources/Prototypes/Entities/Clothing/Back/duffel.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml index 2ac53effe63..101599d5adc 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml @@ -167,6 +167,9 @@ sprite: Clothing/Back/Duffels/syndicate.rsi - type: ExplosionResistance damageCoefficient: 0.1 + - type: Storage + grid: + - 0,0,8,4 - type: entity parent: ClothingBackpackDuffelSyndicate From 9d1d5de4a7d5440f2ba457348fc560d2415d060d Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 02:22:37 +0000 Subject: [PATCH 42/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 302aea15ea5..9adf6658423 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix revolver prediction. - type: Fix - id: 5762 - time: '2024-01-21T11:16:46.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/19649 - author: metalgearsloth changes: - message: Fix shuttle docking highlights being inaccurate. @@ -3791,3 +3784,10 @@ id: 6261 time: '2024-03-31T02:01:28.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26566 +- author: lzk228 + changes: + - message: Syndicate duffelbag storage increased from 8x5 to 9x5. + type: Tweak + id: 6262 + time: '2024-03-31T02:21:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26565 From 48e5c3cc8de5f830a74de5cd7671fa42c2995edd Mon Sep 17 00:00:00 2001 From: Velcroboy <107660393+IamVelcroboy@users.noreply.github.com> Date: Sat, 30 Mar 2024 21:24:38 -0500 Subject: [PATCH 43/83] Adds construction/decon graphs for plastic flaps (#26341) * Adds construction/decon graphs for plastic flaps * Dang arbitrage * undo conflict --------- Co-authored-by: Velcroboy --- .../Entities/Structures/plastic_flaps.yml | 17 ++++- .../Graphs/structures/plastic_flaps.yml | 71 +++++++++++++++++++ .../Recipes/Construction/structures.yml | 53 +++++++++++++- 3 files changed, 138 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml index bf49eb1be35..c4ee507395f 100644 --- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml +++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml @@ -66,12 +66,15 @@ - Opaque - MidImpassable - type: Occluder + - type: Construction + graph: PlasticFlapsGraph + node: opaqueFlaps - type: entity id: PlasticFlapsAirtightClear parent: PlasticFlapsClear name: airtight plastic flaps - suffix: Airtight Clear + suffix: Airtight, Clear description: Heavy duty, slightly stronger, airtight plastic flaps. Definitely can't get past those. No way. components: - type: Destructible @@ -83,12 +86,17 @@ - !type:DoActsBehavior acts: ["Destruction"] - type: Airtight + - type: Construction + graph: PlasticFlapsGraph + node: airtightFlaps + - type: StaticPrice + price: 100 - type: entity id: PlasticFlapsAirtightOpaque parent: PlasticFlapsOpaque name: airtight plastic flaps - suffix: Airtight Opaque + suffix: Airtight, Opaque description: Heavy duty, slightly stronger, airtight plastic flaps. Definitely can't get past those. No way. components: - type: Destructible @@ -100,3 +108,8 @@ - !type:DoActsBehavior acts: ["Destruction"] - type: Airtight + - type: Construction + graph: PlasticFlapsGraph + node: airtightopaqueFlaps + - type: StaticPrice + price: 100 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/plastic_flaps.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/plastic_flaps.yml index 9f8497ac98a..776c1491a63 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/plastic_flaps.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/plastic_flaps.yml @@ -13,6 +13,7 @@ - material: Plastic amount: 5 doAfter: 10 + - node: plasticFlaps entity: PlasticFlapsClear edges: @@ -24,3 +25,73 @@ steps: - tool: Anchoring doAfter: 10 + + - to: opaqueFlaps + completed: + - !type:SnapToGrid { } + steps: + - tool: Welding + doAfter: 5 + + - to: airtightFlaps + completed: + - !type:SnapToGrid { } + steps: + - material: Plastic + amount: 5 + doAfter: 5 + - tool: Screwing + doAfter: 5 + + - node: opaqueFlaps + entity: PlasticFlapsOpaque + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetPlastic + amount: 5 + steps: + - tool: Anchoring + doAfter: 10 + + - to: airtightopaqueFlaps + completed: + - !type:SnapToGrid { } + steps: + - material: Plastic + amount: 5 + doAfter: 5 + - tool: Screwing + doAfter: 5 + + - node: airtightFlaps + entity: PlasticFlapsAirtightClear + edges: + - to: plasticFlaps + completed: + - !type:SpawnPrototype + prototype: SheetPlastic + amount: 5 + steps: + - tool: Screwing + doAfter: 10 + + - to: airtightopaqueFlaps #test + completed: + - !type:SnapToGrid { } + steps: + - tool: Welding + doAfter: 5 + + - node: airtightopaqueFlaps + entity: PlasticFlapsAirtightOpaque + edges: + - to: opaqueFlaps + completed: + - !type:SpawnPrototype + prototype: SheetPlastic + amount: 5 + steps: + - tool: Screwing + doAfter: 10 diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 963a289babf..bea97beaaa5 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -86,7 +86,7 @@ canRotate: false canBuildInImpassable: false conditions: - - !type:TileNotBlocked + - !type:TileNotBlocked - type: construction name: clock wall @@ -1590,6 +1590,57 @@ conditions: - !type:TileNotBlocked +- type: construction + name: airtight plastic flaps + id: PlasticFlapsAirtight + graph: PlasticFlapsGraph + startNode: start + targetNode: airtightFlaps + category: construction-category-structures + placementMode: SnapgridCenter + description: An airtight plastic flap to let items through and keep people out. + objectType: Structure + canBuildInImpassable: false + icon: + sprite: Structures/plastic_flaps.rsi + state: plasticflaps + conditions: + - !type:TileNotBlocked + +- type: construction + name: opaque plastic flaps + id: PlasticFlapsOpaque + graph: PlasticFlapsGraph + startNode: start + targetNode: opaqueFlaps + category: construction-category-structures + placementMode: SnapgridCenter + description: An opaque plastic flap to let items through and keep people out. + objectType: Structure + canBuildInImpassable: false + icon: + sprite: Structures/plastic_flaps.rsi + state: plasticflaps + conditions: + - !type:TileNotBlocked + +- type: construction + name: airtight opaque plastic flaps + id: PlasticFlapsAirtightOpaque + graph: PlasticFlapsGraph + startNode: start + targetNode: airtightopaqueFlaps + category: construction-category-structures + placementMode: SnapgridCenter + description: An opaque, airtight plastic flap to let items through and keep people out. + objectType: Structure + canBuildInImpassable: false + icon: + sprite: Structures/plastic_flaps.rsi + state: plasticflaps + conditions: + - !type:TileNotBlocked + - type: construction name: bananium clown statue id: BananiumClownStatue From 950a6448bb0c673076c740609ad68bc6315fd058 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 02:25:44 +0000 Subject: [PATCH 44/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9adf6658423..05854cf2a2e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix shuttle docking highlights being inaccurate. - type: Fix - id: 5763 - time: '2024-01-21T12:14:47.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24369 - author: icekot8 changes: - message: Increased the size of flatpacks made by the Flatpacker 1001. @@ -3791,3 +3784,10 @@ id: 6262 time: '2024-03-31T02:21:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26565 +- author: Velcroboy + changes: + - message: Changed plastic flaps to be completely constructable/deconstructable + type: Tweak + id: 6263 + time: '2024-03-31T02:24:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26341 From a98d0cfe2e120f90c269e810f1365dad404d645a Mon Sep 17 00:00:00 2001 From: Flareguy <78941145+Flareguy@users.noreply.github.com> Date: Sat, 30 Mar 2024 22:00:45 -0500 Subject: [PATCH 45/83] Makes secglasses roundstart (#26487) * makes secglasses roundstart * fix epic fail * fix tests questionmark? * Update Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> --------- Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> --- .../Catalog/Fills/Lockers/heads.yml | 6 ++--- .../Catalog/Fills/Lockers/security.yml | 13 ++++------ .../Entities/Clothing/Eyes/glasses.yml | 8 ++++++ .../Entities/Structures/Machines/lathe.yml | 1 - .../Graphs/clothing/glasses_sechud.yml | 25 +++++++++++++++++++ .../Recipes/Construction/clothing.yml | 11 ++++++++ .../Prototypes/Recipes/Lathes/security.yml | 8 ------ Resources/Prototypes/Research/arsenal.yml | 1 - .../Roles/Jobs/Security/detective.yml | 2 +- .../Roles/Jobs/Security/head_of_security.yml | 2 +- .../Roles/Jobs/Security/security_officer.yml | 2 +- .../Prototypes/Roles/Jobs/Security/warden.yml | 2 +- Resources/Prototypes/tags.yml | 3 +++ 13 files changed, 58 insertions(+), 26 deletions(-) create mode 100644 Resources/Prototypes/Recipes/Construction/Graphs/clothing/glasses_sechud.yml diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 25c3fde0bd6..ae5917bc510 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -255,7 +255,6 @@ components: - type: StorageFill contents: - - id: ClothingEyesHudSecurity - id: WeaponDisabler - id: ClothingOuterCoatHoSTrench - id: ClothingMaskNeckGaiter @@ -263,7 +262,7 @@ - id: ClothingMaskGasSwat - id: ClothingBeltSecurityFilled - id: ClothingHeadsetAltSecurity - - id: ClothingEyesGlassesSunglasses + - id: ClothingEyesGlassesSecurity - id: ClothingShoesBootsJack - id: CigarGoldCase prob: 0.50 @@ -282,13 +281,12 @@ components: - type: StorageFill contents: - - id: ClothingEyesHudSecurity - id: WeaponDisabler - id: ClothingOuterCoatHoSTrench - id: ClothingMaskNeckGaiter - id: ClothingBeltSecurityFilled - id: ClothingHeadsetAltSecurity - - id: ClothingEyesGlassesSunglasses + - id: ClothingEyesGlassesSecurity - id: ClothingShoesBootsJack - id: CigarGoldCase prob: 0.50 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 4bb300b1589..2896494978a 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -9,7 +9,7 @@ - id: WeaponDisabler - id: ClothingBeltSecurityFilled - id: Flash - - id: ClothingEyesGlassesSunglasses + - id: ClothingEyesGlassesSecurity - id: ClothingHeadsetAltSecurity - id: ClothingHandsGlovesCombat - id: ClothingShoesBootsJack @@ -19,7 +19,6 @@ - id: DoorRemoteArmory - id: ClothingOuterHardsuitWarden - id: HoloprojectorSecurity - - id: ClothingEyesHudSecurity - type: entity id: LockerWardenFilled @@ -32,7 +31,7 @@ - id: WeaponDisabler - id: ClothingBeltSecurityFilled - id: Flash - - id: ClothingEyesGlassesSunglasses + - id: ClothingEyesGlassesSecurity - id: ClothingHeadsetAltSecurity - id: ClothingHandsGlovesCombat - id: ClothingShoesBootsJack @@ -41,7 +40,6 @@ - id: RubberStampWarden - id: DoorRemoteArmory - id: HoloprojectorSecurity - - id: ClothingEyesHudSecurity - type: entity id: LockerSecurityFilled @@ -60,13 +58,12 @@ - id: ClothingBeltSecurityFilled - id: Flash prob: 0.5 - - id: ClothingEyesGlassesSunglasses + - id: ClothingEyesGlassesSecurity - id: ClothingHeadsetSecurity - id: ClothingHandsGlovesColorBlack - id: ClothingShoesBootsJack - id: WeaponMeleeNeedle prob: 0.1 - - id: ClothingEyesHudSecurity - id: HoloprojectorSecurity prob: 0.6 @@ -77,7 +74,7 @@ components: - type: StorageFill contents: - - id: ClothingEyesHudSecurity + - id: ClothingEyesGlassesSecurity - id: WeaponDisabler - id: TrackingImplanter amount: 2 @@ -112,7 +109,7 @@ components: - type: StorageFill contents: - - id: ClothingEyesHudSecurity + - id: ClothingEyesGlassesSecurity prob: 0.3 - id: ClothingHeadHatFedoraBrown - id: ClothingNeckTieDet diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index e8cf01cb100..24944f02dd5 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -149,6 +149,11 @@ - type: FlashImmunity - type: EyeProtection protectionTime: 5 + - type: Tag + tags: + - Sunglasses + - HamsterWearable + - WhitelistChameleon - type: entity parent: ClothingEyesBase @@ -163,6 +168,9 @@ - type: FlashImmunity - type: EyeProtection protectionTime: 5 + - type: Construction + graph: GlassesSecHUD + node: glassesSec - type: Tag tags: - HamsterWearable diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 5fbe84a3fe7..5a32839a47c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -683,7 +683,6 @@ - CartridgeMagnumUranium - CartridgePistolUranium - CartridgeRifleUranium - - ClothingEyesGlassesSecurity - ExplosivePayload - FlashPayload - HoloprojectorSecurity diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/glasses_sechud.yml b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/glasses_sechud.yml new file mode 100644 index 00000000000..de264dbd588 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/glasses_sechud.yml @@ -0,0 +1,25 @@ +- type: constructionGraph + id: GlassesSecHUD + start: start + graph: + - node: start + edges: + - to: glassesSec + steps: + - tag: Sunglasses + name: sun glasses + icon: + sprite: Clothing/Eyes/Glasses/sunglasses.rsi + state: icon + doAfter: 5 + - tag: HudSecurity + name: security hud + icon: + sprite: Clothing/Eyes/Hud/sec.rsi + state: icon + doAfter: 5 + - material: Cable + amount: 5 + doAfter: 5 + - node: glassesSec + entity: ClothingEyesGlassesSecurity diff --git a/Resources/Prototypes/Recipes/Construction/clothing.yml b/Resources/Prototypes/Recipes/Construction/clothing.yml index 89f22cdf305..8907a47c6b7 100644 --- a/Resources/Prototypes/Recipes/Construction/clothing.yml +++ b/Resources/Prototypes/Recipes/Construction/clothing.yml @@ -96,3 +96,14 @@ description: Comfy, yet haunted by the ghosts of ducks you fed bread to as a child. icon: { sprite: Clothing/Shoes/Misc/duck-slippers.rsi, state: icon } objectType: Item + +- type: construction + name: security glasses + id: ClothingEyesGlassesSecurity + graph: GlassesSecHUD + startNode: start + targetNode: glassesSec + category: construction-category-clothing + description: A pair of sunglasses, modified to have a built-in security HUD. + icon: { sprite: Clothing/Eyes/Glasses/secglasses.rsi, state: icon } + objectType: Item \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index 432594d4b5a..b3100ed70bf 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -87,14 +87,6 @@ materials: Plastic: 100 -- type: latheRecipe - id: ClothingEyesGlassesSecurity - result: ClothingEyesGlassesSecurity - completetime: 2 - materials: - Steel: 300 - Glass: 200 - - type: latheRecipe id: ClothingEyesHudSecurity result: ClothingEyesHudSecurity diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml index b17fb0ce008..3b7284c7497 100644 --- a/Resources/Prototypes/Research/arsenal.yml +++ b/Resources/Prototypes/Research/arsenal.yml @@ -76,7 +76,6 @@ tier: 1 cost: 8000 recipeUnlocks: - - ClothingEyesGlassesSecurity - Truncheon - TelescopicShield - HoloprojectorSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index 21458779a02..488410949a3 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -27,7 +27,7 @@ jumpsuit: ClothingUniformJumpsuitDetective back: ClothingBackpackSecurityFilledDetective shoes: ClothingShoesBootsCombatFilled - eyes: ClothingEyesGlassesSunglasses + eyes: ClothingEyesGlassesSecurity head: ClothingHeadHatFedoraBrown outerClothing: ClothingOuterVestDetective id: DetectivePDA diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 52233573799..ef9a74fcb4a 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -46,7 +46,7 @@ back: ClothingBackpackHOSFilled shoes: ClothingShoesBootsCombatFilled outerClothing: ClothingOuterCoatHoSTrench - eyes: ClothingEyesGlassesSunglasses + eyes: ClothingEyesGlassesSecurity head: ClothingHeadHatBeretHoS id: HoSPDA gloves: ClothingHandsGlovesCombat diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index 686d140447e..83b439fcaba 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -28,7 +28,7 @@ jumpsuit: ClothingUniformJumpsuitSec back: ClothingBackpackSecurityFilled shoes: ClothingShoesBootsCombatFilled - eyes: ClothingEyesGlassesSunglasses + eyes: ClothingEyesGlassesSecurity head: ClothingHeadHelmetBasic outerClothing: ClothingOuterArmorBasic id: SecurityPDA diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index 7d509651b6b..dbefd46a6f7 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -31,7 +31,7 @@ jumpsuit: ClothingUniformJumpsuitWarden back: ClothingBackpackSecurityFilled shoes: ClothingShoesBootsCombatFilled - eyes: ClothingEyesGlassesSunglasses + eyes: ClothingEyesGlassesSecurity outerClothing: ClothingOuterCoatWarden id: WardenPDA ears: ClothingHeadsetSecurity diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index ae1f8c0d19e..fe8c5a3cc17 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -1180,6 +1180,9 @@ - type: Tag id: SuitEVA + +- type: Tag + id: Sunglasses - type: Tag id: SurgeryTool From 80c4d3ea0fd2cd18e4070f7cf714067db591228c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 03:01:52 +0000 Subject: [PATCH 46/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 05854cf2a2e..dbfd5c37db9 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: icekot8 - changes: - - message: Increased the size of flatpacks made by the Flatpacker 1001. - type: Tweak - id: 5764 - time: '2024-01-21T17:07:59.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24367 - author: Nairodian changes: - message: All vent critter events now have a small delay and alert message before @@ -3791,3 +3784,13 @@ id: 6263 time: '2024-03-31T02:24:39.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26341 +- author: Flareguy + changes: + - message: Security glasses have been moved from research to roundstart gear. All + officers now start with them instead of sunglasses by default. + type: Tweak + - message: You can now craft security glasses. + type: Add + id: 6264 + time: '2024-03-31T03:00:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26487 From 5f063d2d6d2a41702b60d11f779e23c34fa74410 Mon Sep 17 00:00:00 2001 From: brainfood1183 <113240905+brainfood1183@users.noreply.github.com> Date: Sun, 31 Mar 2024 04:21:18 +0100 Subject: [PATCH 47/83] Toilet Upgrade (needs review) (#22133) * Toilet Draft * fixes * toilets now have secret stash to place items in cistern. * fixes * plungers now unblock toilets. * fix sprite * new sprites and fix * fixes * improve seat sprites. * fix * removed visualisersystem changed to genericvisualizers * flush sound for toilets and copyright for toilet sprites. * fix atrributions * fixes * fix datafield flushtime * sprite improvements * fixes * multiple changes * fix * fix * fixes remove vv * moved stash related functions to secret stash system from toilet. * fix * fix * changes for recent review. * fix * fix --- .../Disposal/Systems/DisposalUnitSystem.cs | 24 +- Content.Client/Toilet/ToiletVisualsSystem.cs | 25 -- .../Conditions/ToiletLidClosed.cs | 39 --- .../Unit/EntitySystems/DisposalUnitSystem.cs | 7 +- .../Resist/EscapeInventorySystem.cs | 2 +- .../Components/SecretStashComponent.cs | 39 --- Content.Server/Toilet/ToiletSystem.cs | 197 +-------------- .../Buckle/Components/StrapComponent.cs | 11 +- .../Buckle/SharedBuckleSystem.Buckle.cs | 4 +- .../Components/SharedDisposalUnitComponent.cs | 50 ++-- .../Disposal/SharedDisposalUnitSystem.cs | 17 +- .../Plants}/PottedPlantHideComponent.cs | 5 +- .../Plants}/PottedPlantHideSystem.cs | 13 +- .../Plunger/Components/PlungerComponent.cs | 18 ++ .../Plunger/Components/PlungerUseComponent.cs | 42 ++++ Content.Shared/Plunger/PlungerDoAfterEvent.cs | 10 + .../Plunger/Systems/PlungerSystem.cs | 79 ++++++ .../Components/SecretStashComponent.cs | 90 +++++++ .../EntitySystems/SecretStashSystem.cs | 107 +++++++- .../Toilet/Components/ToiletComponent.cs | 40 +++ .../Toilet/Systems/SharedToiletSystem.cs | 109 ++++++++ Content.Shared/Toilet/ToiletComponent.cs | 32 --- Content.Shared/Toilet/ToiletVisuals.cs | 10 - .../Audio/Effects/Fluids/attributions.yml | 10 + Resources/Audio/Effects/Fluids/flush.ogg | Bin 0 -> 132202 bytes Resources/Audio/Effects/Fluids/splash.ogg | Bin 0 -> 44679 bytes Resources/Audio/Weapons/glug.ogg | Bin 0 -> 27517 bytes .../components/secret-stash-component.ftl | 1 + .../Locale/en-US/toilet/toilet-component.ftl | 2 + .../Objects/Specific/Janitorial/janitor.yml | 9 + .../Entities/Structures/Furniture/toilet.yml | 100 ++++++-- .../Structures/Piping/Disposal/units.yml | 20 +- .../Construction/Graphs/furniture/toilet.yml | 1 - .../Recipes/Construction/furniture.yml | 2 +- .../toilet.rsi/closed_toilet_seat_down.png | Bin 1445 -> 0 bytes .../toilet.rsi/closed_toilet_seat_up.png | Bin 1553 -> 0 bytes .../Furniture/toilet.rsi/condisposal.png | Bin 0 -> 31043 bytes .../toilet.rsi/disposal-charging.png | Bin 0 -> 31052 bytes .../Furniture/toilet.rsi/disposal-closed.png | Bin 0 -> 29675 bytes .../Furniture/toilet.rsi/disposal-down.png | Bin 0 -> 29554 bytes .../Furniture/toilet.rsi/disposal-flush.png | Bin 0 -> 25461 bytes .../Furniture/toilet.rsi/disposal-open.png | Bin 0 -> 28502 bytes .../Furniture/toilet.rsi/disposal-up.png | Bin 0 -> 29203 bytes .../Furniture/toilet.rsi/disposal.png | Bin 0 -> 31095 bytes .../Furniture/toilet.rsi/dispover-charge.png | Bin 0 -> 28316 bytes .../Furniture/toilet.rsi/dispover-full.png | Bin 0 -> 17416 bytes .../Furniture/toilet.rsi/dispover-handle.png | Bin 0 -> 17416 bytes .../Furniture/toilet.rsi/dispover-ready.png | Bin 0 -> 28318 bytes .../Structures/Furniture/toilet.rsi/meta.json | 238 +++++++++++++++++- .../toilet.rsi/open_toilet_seat_down.png | Bin 1437 -> 0 bytes .../toilet.rsi/open_toilet_seat_up.png | Bin 1535 -> 0 bytes 51 files changed, 889 insertions(+), 464 deletions(-) delete mode 100644 Content.Client/Toilet/ToiletVisualsSystem.cs delete mode 100644 Content.Server/Construction/Conditions/ToiletLidClosed.cs delete mode 100644 Content.Server/Storage/Components/SecretStashComponent.cs rename {Content.Server/Plants/Components => Content.Shared/Plants}/PottedPlantHideComponent.cs (80%) rename {Content.Server/Plants/Systems => Content.Shared/Plants}/PottedPlantHideSystem.cs (86%) create mode 100644 Content.Shared/Plunger/Components/PlungerComponent.cs create mode 100644 Content.Shared/Plunger/Components/PlungerUseComponent.cs create mode 100644 Content.Shared/Plunger/PlungerDoAfterEvent.cs create mode 100644 Content.Shared/Plunger/Systems/PlungerSystem.cs create mode 100644 Content.Shared/Storage/Components/SecretStashComponent.cs rename {Content.Server => Content.Shared}/Storage/EntitySystems/SecretStashSystem.cs (55%) create mode 100644 Content.Shared/Toilet/Components/ToiletComponent.cs create mode 100644 Content.Shared/Toilet/Systems/SharedToiletSystem.cs delete mode 100644 Content.Shared/Toilet/ToiletComponent.cs delete mode 100644 Content.Shared/Toilet/ToiletVisuals.cs create mode 100644 Resources/Audio/Effects/Fluids/flush.ogg create mode 100644 Resources/Audio/Effects/Fluids/splash.ogg create mode 100644 Resources/Audio/Weapons/glug.ogg delete mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/closed_toilet_seat_down.png delete mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/closed_toilet_seat_up.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/condisposal.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/disposal-charging.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/disposal-closed.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/disposal-down.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/disposal-flush.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/disposal-open.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/disposal-up.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/disposal.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/dispover-charge.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/dispover-full.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/dispover-handle.png create mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/dispover-ready.png delete mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/open_toilet_seat_down.png delete mode 100644 Resources/Textures/Structures/Furniture/toilet.rsi/open_toilet_seat_up.png diff --git a/Content.Client/Disposal/Systems/DisposalUnitSystem.cs b/Content.Client/Disposal/Systems/DisposalUnitSystem.cs index 8c40c784219..b9e4a386604 100644 --- a/Content.Client/Disposal/Systems/DisposalUnitSystem.cs +++ b/Content.Client/Disposal/Systems/DisposalUnitSystem.cs @@ -96,24 +96,22 @@ private void OnAppearanceChange(EntityUid uid, SharedDisposalUnitComponent unit, private void UpdateState(EntityUid uid, SharedDisposalUnitComponent unit, SpriteComponent sprite, AppearanceComponent appearance) { if (!_appearanceSystem.TryGetData(uid, Visuals.VisualState, out var state, appearance)) - { return; - } sprite.LayerSetVisible(DisposalUnitVisualLayers.Unanchored, state == VisualState.UnAnchored); sprite.LayerSetVisible(DisposalUnitVisualLayers.Base, state == VisualState.Anchored); - sprite.LayerSetVisible(DisposalUnitVisualLayers.BaseFlush, state is VisualState.Flushing or VisualState.Charging); + sprite.LayerSetVisible(DisposalUnitVisualLayers.OverlayFlush, state is VisualState.OverlayFlushing or VisualState.OverlayCharging); var chargingState = sprite.LayerMapTryGet(DisposalUnitVisualLayers.BaseCharging, out var chargingLayer) ? sprite.LayerGetState(chargingLayer) : new RSI.StateId(DefaultChargeState); // This is a transient state so not too worried about replaying in range. - if (state == VisualState.Flushing) + if (state == VisualState.OverlayFlushing) { if (!_animationSystem.HasRunningAnimation(uid, AnimationKey)) { - var flushState = sprite.LayerMapTryGet(DisposalUnitVisualLayers.BaseFlush, out var flushLayer) + var flushState = sprite.LayerMapTryGet(DisposalUnitVisualLayers.OverlayFlush, out var flushLayer) ? sprite.LayerGetState(flushLayer) : new RSI.StateId(DefaultFlushState); @@ -125,7 +123,7 @@ private void UpdateState(EntityUid uid, SharedDisposalUnitComponent unit, Sprite { new AnimationTrackSpriteFlick { - LayerKey = DisposalUnitVisualLayers.BaseFlush, + LayerKey = DisposalUnitVisualLayers.OverlayFlush, KeyFrames = { // Play the flush animation @@ -154,26 +152,18 @@ private void UpdateState(EntityUid uid, SharedDisposalUnitComponent unit, Sprite _animationSystem.Play(uid, anim, AnimationKey); } } - else if (state == VisualState.Charging) - { - sprite.LayerSetState(DisposalUnitVisualLayers.BaseFlush, chargingState); - } + else if (state == VisualState.OverlayCharging) + sprite.LayerSetState(DisposalUnitVisualLayers.OverlayFlush, new RSI.StateId("disposal-charging")); else - { _animationSystem.Stop(uid, AnimationKey); - } if (!_appearanceSystem.TryGetData(uid, Visuals.Handle, out var handleState, appearance)) - { handleState = HandleState.Normal; - } sprite.LayerSetVisible(DisposalUnitVisualLayers.OverlayEngaged, handleState != HandleState.Normal); if (!_appearanceSystem.TryGetData(uid, Visuals.Light, out var lightState, appearance)) - { lightState = LightStates.Off; - } sprite.LayerSetVisible(DisposalUnitVisualLayers.OverlayCharging, (lightState & LightStates.Charging) != 0); @@ -189,7 +179,7 @@ public enum DisposalUnitVisualLayers : byte Unanchored, Base, BaseCharging, - BaseFlush, + OverlayFlush, OverlayCharging, OverlayReady, OverlayFull, diff --git a/Content.Client/Toilet/ToiletVisualsSystem.cs b/Content.Client/Toilet/ToiletVisualsSystem.cs deleted file mode 100644 index 5367772ab08..00000000000 --- a/Content.Client/Toilet/ToiletVisualsSystem.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Content.Shared.Toilet; -using Robust.Client.GameObjects; - -namespace Content.Client.Toilet; - -public sealed class ToiletVisualsSystem : VisualizerSystem -{ - protected override void OnAppearanceChange(EntityUid uid, ToiletComponent component, ref AppearanceChangeEvent args) - { - if (args.Sprite == null) return; - - AppearanceSystem.TryGetData(uid, ToiletVisuals.LidOpen, out var lidOpen, args.Component); - AppearanceSystem.TryGetData(uid, ToiletVisuals.SeatUp, out var seatUp, args.Component); - - var state = (lidOpen, seatUp) switch - { - (false, false) => "closed_toilet_seat_down", - (false, true) => "closed_toilet_seat_up", - (true, false) => "open_toilet_seat_down", - (true, true) => "open_toilet_seat_up" - }; - - args.Sprite.LayerSetState(0, state); - } -} diff --git a/Content.Server/Construction/Conditions/ToiletLidClosed.cs b/Content.Server/Construction/Conditions/ToiletLidClosed.cs deleted file mode 100644 index 40a3be006bc..00000000000 --- a/Content.Server/Construction/Conditions/ToiletLidClosed.cs +++ /dev/null @@ -1,39 +0,0 @@ -using Content.Shared.Construction; -using Content.Shared.Examine; -using Content.Shared.Toilet; -using JetBrains.Annotations; - -namespace Content.Server.Construction.Conditions -{ - [UsedImplicitly] - [DataDefinition] - public sealed partial class ToiletLidClosed : IGraphCondition - { - public bool Condition(EntityUid uid, IEntityManager entityManager) - { - if (!entityManager.TryGetComponent(uid, out ToiletComponent? toilet)) - return false; - - return !toilet.LidOpen; - } - - public bool DoExamine(ExaminedEvent args) - { - var entity = args.Examined; - - if (!IoCManager.Resolve().TryGetComponent(entity, out ToiletComponent? toilet)) return false; - if (!toilet.LidOpen) return false; - - args.PushMarkup(Loc.GetString("construction-examine-condition-toilet-lid-closed") + "\n"); - return true; - } - - public IEnumerable GenerateGuideEntry() - { - yield return new ConstructionGuideEntry() - { - Localization = "construction-step-condition-toilet-lid-closed" - }; - } - } -} diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index a03ba5d2313..8a7ea438be2 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -135,8 +135,7 @@ private void AddClimbInsideVerb(EntityUid uid, SharedDisposalUnitComponent compo { // This is not an interaction, activation, or alternative verb type because unfortunately most users are // unwilling to accept that this is where they belong and don't want to accidentally climb inside. - if (!component.MobsCanEnter || - !args.CanAccess || + if (!args.CanAccess || !args.CanInteract || component.Container.ContainedEntities.Contains(args.User) || !_actionBlockerSystem.CanMove(args.User)) @@ -630,10 +629,10 @@ public void UpdateVisualState(EntityUid uid, SharedDisposalUnitComponent compone switch (state) { case DisposalsPressureState.Flushed: - _appearance.SetData(uid, SharedDisposalUnitComponent.Visuals.VisualState, SharedDisposalUnitComponent.VisualState.Flushing, appearance); + _appearance.SetData(uid, SharedDisposalUnitComponent.Visuals.VisualState, SharedDisposalUnitComponent.VisualState.OverlayFlushing, appearance); break; case DisposalsPressureState.Pressurizing: - _appearance.SetData(uid, SharedDisposalUnitComponent.Visuals.VisualState, SharedDisposalUnitComponent.VisualState.Charging, appearance); + _appearance.SetData(uid, SharedDisposalUnitComponent.Visuals.VisualState, SharedDisposalUnitComponent.VisualState.OverlayCharging, appearance); break; case DisposalsPressureState.Ready: _appearance.SetData(uid, SharedDisposalUnitComponent.Visuals.VisualState, SharedDisposalUnitComponent.VisualState.Anchored, appearance); diff --git a/Content.Server/Resist/EscapeInventorySystem.cs b/Content.Server/Resist/EscapeInventorySystem.cs index 6bce38fbacf..35c7d0bc65b 100644 --- a/Content.Server/Resist/EscapeInventorySystem.cs +++ b/Content.Server/Resist/EscapeInventorySystem.cs @@ -1,5 +1,5 @@ using Content.Server.Popups; -using Content.Server.Storage.Components; +using Content.Shared.Storage.Components; using Content.Shared.ActionBlocker; using Content.Shared.DoAfter; using Content.Shared.Hands.EntitySystems; diff --git a/Content.Server/Storage/Components/SecretStashComponent.cs b/Content.Server/Storage/Components/SecretStashComponent.cs deleted file mode 100644 index a63cb074ad2..00000000000 --- a/Content.Server/Storage/Components/SecretStashComponent.cs +++ /dev/null @@ -1,39 +0,0 @@ -using Content.Server.Storage.EntitySystems; -using Content.Shared.Containers.ItemSlots; -using Content.Shared.Item; -using Content.Shared.Toilet; -using Robust.Shared.Containers; -using Robust.Shared.Prototypes; - -namespace Content.Server.Storage.Components -{ - /// - /// Logic for a secret slot stash, like plant pot or toilet cistern. - /// Unlike it doesn't have interaction logic or verbs. - /// Other classes like should implement it. - /// - [RegisterComponent] - [Access(typeof(SecretStashSystem))] - public sealed partial class SecretStashComponent : Component - { - /// - /// Max item size that can be fitted into secret stash. - /// - [DataField("maxItemSize")] - public ProtoId MaxItemSize = "Small"; - - /// - /// IC secret stash name. For example "the toilet cistern". - /// If empty string, will replace it with entity name in init. - /// - [DataField("secretPartName", readOnly: true)] - public string SecretPartName { get; set; } = ""; - - /// - /// Container used to keep secret stash item. - /// - [ViewVariables] - public ContainerSlot ItemContainer = default!; - - } -} diff --git a/Content.Server/Toilet/ToiletSystem.cs b/Content.Server/Toilet/ToiletSystem.cs index 8bf8457e075..e184ddf0d5b 100644 --- a/Content.Server/Toilet/ToiletSystem.cs +++ b/Content.Server/Toilet/ToiletSystem.cs @@ -1,197 +1,8 @@ -using Content.Server.Body.Systems; -using Content.Shared.Buckle; -using Content.Server.Popups; -using Content.Server.Storage.Components; -using Content.Server.Storage.EntitySystems; -using Content.Shared.Audio; -using Content.Shared.Body.Components; -using Content.Shared.Body.Part; -using Content.Shared.Buckle.Components; -using Content.Shared.Examine; -using Content.Shared.IdentityManagement; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Popups; -using Content.Shared.Toilet; -using Content.Shared.Tools; -using Content.Shared.Tools.Components; -using Content.Shared.Verbs; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; -using Robust.Shared.Random; -using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; +using Content.Shared.Toilet.Systems; -namespace Content.Server.Toilet -{ - public sealed class ToiletSystem : EntitySystem - { - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly BodySystem _body = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SecretStashSystem _secretStash = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly SharedToolSystem _tool = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnInteractUsing); - SubscribeLocalEvent(OnInteractHand); - SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent(OnSuicide); - SubscribeLocalEvent(OnToiletPried); - SubscribeLocalEvent>(OnToggleSeatVerb); - } - - private void OnSuicide(EntityUid uid, ToiletComponent component, SuicideEvent args) - { - if (args.Handled) - return; - - // Check that victim has a head - // FIXME: since suiciding turns you into a ghost immediately, both messages are seen, not sure how this can be fixed - if (TryComp(args.Victim, out var body) && - _body.BodyHasPartType(args.Victim, BodyPartType.Head, body)) - { - var othersMessage = Loc.GetString("toilet-component-suicide-head-message-others", - ("victim", Identity.Entity(args.Victim, EntityManager)), ("owner", uid)); - _popup.PopupEntity(othersMessage, uid, Filter.PvsExcept(args.Victim), true, PopupType.MediumCaution); - - var selfMessage = Loc.GetString("toilet-component-suicide-head-message", - ("owner", uid)); - _popup.PopupEntity(selfMessage, uid, args.Victim, PopupType.LargeCaution); - - args.SetHandled(SuicideKind.Asphyxiation); - } - else - { - var othersMessage = Loc.GetString("toilet-component-suicide-message-others", - ("victim", Identity.Entity(args.Victim, EntityManager)), ("owner", uid)); - _popup.PopupEntity(othersMessage, uid, Filter.PvsExcept(uid), true, PopupType.MediumCaution); - - var selfMessage = Loc.GetString("toilet-component-suicide-message", - ("owner", uid)); - _popup.PopupEntity(selfMessage, uid, args.Victim, PopupType.LargeCaution); - - args.SetHandled(SuicideKind.Blunt); - } - } - - private void OnInit(EntityUid uid, ToiletComponent component, ComponentInit args) - { - EnsureComp(uid); - } - - private void OnMapInit(EntityUid uid, ToiletComponent component, MapInitEvent args) - { - // roll is toilet seat will be up or down - component.IsSeatUp = _random.Prob(0.5f); - UpdateSprite(uid, component); - } - - private void OnInteractUsing(EntityUid uid, ToiletComponent component, InteractUsingEvent args) - { - if (args.Handled) - return; - - // are player trying place or lift of cistern lid? - if (_tool.UseTool(args.Used, args.User, uid, component.PryLidTime, component.PryingQuality, new ToiletPryDoAfterEvent())) - { - args.Handled = true; - } - // maybe player trying to hide something inside cistern? - else if (component.LidOpen) - { - args.Handled = true; - _secretStash.TryHideItem(uid, args.User, args.Used); - } - } - - private void OnInteractHand(EntityUid uid, ToiletComponent component, InteractHandEvent args) - { - if (args.Handled) - return; +namespace Content.Server.Toilet; - // trying get something from stash? - if (component.LidOpen) - { - var gotItem = _secretStash.TryGetItem(uid, args.User); - if (gotItem) - { - args.Handled = true; - return; - } - } - - args.Handled = true; - } - - private void OnToggleSeatVerb(EntityUid uid, ToiletComponent component, GetVerbsEvent args) - { - if (!args.CanInteract || !args.CanAccess || !CanToggle(uid)) - return; - - var alterToiletSeatText = component.IsSeatUp ? Loc.GetString("toilet-seat-close") : Loc.GetString("toilet-seat-open"); - - var verb = new AlternativeVerb() - { - Act = () => { - if (CanToggle(uid)) - ToggleToiletSeat(uid, component); - }, - Text = alterToiletSeatText - }; - - args.Verbs.Add(verb); - } - - private void OnExamine(EntityUid uid, ToiletComponent component, ExaminedEvent args) - { - if (args.IsInDetailsRange && component.LidOpen) - { - if (_secretStash.HasItemInside(uid)) - { - var msg = Loc.GetString("toilet-component-on-examine-found-hidden-item"); - args.PushMarkup(msg); - } - } - } - - private void OnToiletPried(EntityUid uid, ToiletComponent toilet, ToiletPryDoAfterEvent args) - { - if (args.Cancelled) - return; - - toilet.LidOpen = !toilet.LidOpen; - UpdateSprite(uid, toilet); - } - - public bool CanToggle(EntityUid uid) - { - return TryComp(uid, out var strap) && strap.BuckledEntities.Count == 0; - } - - public void ToggleToiletSeat(EntityUid uid, ToiletComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; - - component.IsSeatUp = !component.IsSeatUp; - _audio.PlayPvs(component.ToggleSound, uid, AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation)); - UpdateSprite(uid, component); - } - - private void UpdateSprite(EntityUid uid, ToiletComponent component) - { - if (!TryComp(uid, out var appearance)) - return; +public sealed class ToiletSystem : SharedToiletSystem +{ - _appearance.SetData(uid, ToiletVisuals.LidOpen, component.LidOpen, appearance); - _appearance.SetData(uid, ToiletVisuals.SeatUp, component.IsSeatUp, appearance); - } - } } diff --git a/Content.Shared/Buckle/Components/StrapComponent.cs b/Content.Shared/Buckle/Components/StrapComponent.cs index f25e1b03741..72c92ebf84b 100644 --- a/Content.Shared/Buckle/Components/StrapComponent.cs +++ b/Content.Shared/Buckle/Components/StrapComponent.cs @@ -22,9 +22,14 @@ public sealed partial class StrapComponent : Component /// Entities that this strap accepts and can buckle /// If null it accepts any entity /// - [DataField] - [ViewVariables] - public EntityWhitelist? AllowedEntities; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public EntityWhitelist? Whitelist; + + /// + /// Entities that this strap does not accept and cannot buckle. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public EntityWhitelist? Blacklist; /// /// The change in position to the strapped mob diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 3d1fbf2b696..0d67473ffee 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -221,8 +221,8 @@ private bool CanBuckle( } // Does it pass the Whitelist - if (strapComp.AllowedEntities != null && - !strapComp.AllowedEntities.IsValid(userUid, EntityManager)) + if (strapComp.Whitelist != null && + !strapComp.Whitelist.IsValid(buckleUid, EntityManager) || strapComp.Blacklist?.IsValid(buckleUid, EntityManager) == true) { if (_netManager.IsServer) _popup.PopupEntity(Loc.GetString("buckle-component-cannot-fit-message"), userUid, buckleUid, PopupType.Medium); diff --git a/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs b/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs index 72586be1ec6..4948cb6640e 100644 --- a/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs +++ b/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs @@ -1,4 +1,5 @@ using Robust.Shared.Audio; +using Content.Shared.Whitelist; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Serialization; @@ -17,6 +18,18 @@ public abstract partial class SharedDisposalUnitComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("soundFlush")] public SoundSpecifier? FlushSound = new SoundPathSpecifier("/Audio/Machines/disposalflush.ogg"); + /// + /// Blacklists (prevents) entities listed from being placed inside. + /// + [DataField] + public EntityWhitelist? Blacklist; + + /// + /// Whitelists (allows) entities listed from being placed inside. + /// + [DataField] + public EntityWhitelist? Whitelist; + /// /// Sound played when an object is inserted into the disposal unit. /// @@ -33,20 +46,20 @@ public abstract partial class SharedDisposalUnitComponent : Component /// /// State for this disposals unit. /// - [DataField("state")] + [DataField] public DisposalsPressureState State; // TODO: Just make this use vaulting. /// /// We'll track whatever just left disposals so we know what collision we need to ignore until they stop intersecting our BB. /// - [ViewVariables, DataField("recentlyEjected")] + [ViewVariables, DataField] public List RecentlyEjected = new(); /// /// Next time the disposal unit will be pressurized. /// - [DataField("nextPressurized", customTypeSerializer:typeof(TimeOffsetSerializer))] + [DataField(customTypeSerializer:typeof(TimeOffsetSerializer))] public TimeSpan NextPressurized = TimeSpan.Zero; /// @@ -58,63 +71,60 @@ public abstract partial class SharedDisposalUnitComponent : Component /// /// How long it takes from the start of a flush animation to return the sprite to normal. /// - [DataField("flushDelay")] + [DataField] public TimeSpan FlushDelay = TimeSpan.FromSeconds(3); - [DataField("mobsCanEnter")] - public bool MobsCanEnter = true; - /// /// Removes the pressure requirement for flushing. /// - [DataField("disablePressure"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public bool DisablePressure; /// - /// Last time that an entity tried to exit this disposal unit. + /// Last time that an entity tried to exit this disposal unit. /// [ViewVariables] public TimeSpan LastExitAttempt; - [DataField("autoEngageEnabled")] + [DataField] public bool AutomaticEngage = true; [ViewVariables(VVAccess.ReadWrite)] - [DataField("autoEngageTime")] + [DataField] public TimeSpan AutomaticEngageTime = TimeSpan.FromSeconds(30); /// - /// Delay from trying to enter disposals ourselves. + /// Delay from trying to enter disposals ourselves. /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("entryDelay")] + [DataField] public float EntryDelay = 0.5f; /// - /// Delay from trying to shove someone else into disposals. + /// Delay from trying to shove someone else into disposals. /// [ViewVariables(VVAccess.ReadWrite)] public float DraggedEntryDelay = 2.0f; /// - /// Container of entities inside this disposal unit. + /// Container of entities inside this disposal unit. /// [ViewVariables] public Container Container = default!; // TODO: Network power shit instead fam. - [ViewVariables, DataField("powered")] + [ViewVariables, DataField] public bool Powered; /// /// Was the disposals unit engaged for a manual flush. /// - [ViewVariables(VVAccess.ReadWrite), DataField("engaged")] + [ViewVariables(VVAccess.ReadWrite), DataField] public bool Engaged; /// /// Next time this unit will flush. Is the lesser of and /// - [ViewVariables, DataField("nextFlush", customTypeSerializer:typeof(TimeOffsetSerializer))] + [ViewVariables, DataField(customTypeSerializer:typeof(TimeOffsetSerializer))] public TimeSpan? NextFlush; [Serializable, NetSerializable] @@ -130,8 +140,8 @@ public enum VisualState : byte { UnAnchored, Anchored, - Flushing, - Charging + OverlayFlushing, + OverlayCharging } [Serializable, NetSerializable] diff --git a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs index 9afd683cbdc..c39139f9a57 100644 --- a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs +++ b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs @@ -1,12 +1,10 @@ -using System.Diagnostics.CodeAnalysis; +using System.Diagnostics.CodeAnalysis; using Content.Shared.Body.Components; using Content.Shared.Disposal.Components; using Content.Shared.DoAfter; using Content.Shared.DragDrop; using Content.Shared.Emag.Systems; using Content.Shared.Item; -using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; using Content.Shared.Throwing; using Robust.Shared.Audio; using Robust.Shared.Physics.Components; @@ -26,7 +24,6 @@ public abstract class SharedDisposalUnitSystem : EntitySystem { [Dependency] protected readonly IGameTiming GameTiming = default!; [Dependency] protected readonly MetaDataSystem Metadata = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] protected readonly SharedJointSystem Joints = default!; protected static TimeSpan ExitAttemptDelay = TimeSpan.FromSeconds(0.5); @@ -112,19 +109,21 @@ public virtual bool CanInsert(EntityUid uid, SharedDisposalUnitComponent compone if (!Transform(uid).Anchored) return false; - // TODO: Probably just need a disposable tag. var storable = HasComp(entity); if (!storable && !HasComp(entity)) return false; - //Check if the entity is a mob and if mobs can be inserted - if (TryComp(entity, out var damageState) && !component.MobsCanEnter) + if (component.Blacklist?.IsValid(entity, EntityManager) == true) return false; - if (TryComp(entity, out var physics) && (physics.CanCollide || storable)) + if (component.Whitelist != null && component.Whitelist?.IsValid(entity, EntityManager) != true) + return false; + + if (TryComp(entity, out var physics) && (physics.CanCollide) || storable) return true; + else + return false; - return damageState != null && (!component.MobsCanEnter || _mobState.IsDead(entity, damageState)); } public abstract void DoInsertDisposalUnit(EntityUid uid, EntityUid toInsert, EntityUid user, SharedDisposalUnitComponent? disposal = null); diff --git a/Content.Server/Plants/Components/PottedPlantHideComponent.cs b/Content.Shared/Plants/PottedPlantHideComponent.cs similarity index 80% rename from Content.Server/Plants/Components/PottedPlantHideComponent.cs rename to Content.Shared/Plants/PottedPlantHideComponent.cs index bc35bbe44f9..2e02272494f 100644 --- a/Content.Server/Plants/Components/PottedPlantHideComponent.cs +++ b/Content.Shared/Plants/PottedPlantHideComponent.cs @@ -1,8 +1,7 @@ -using Content.Server.Plants.Systems; -using Content.Server.Storage.Components; +using Content.Shared.Storage.Components; using Robust.Shared.Audio; -namespace Content.Server.Plants.Components +namespace Content.Shared.Plants { /// /// Interaction wrapper for . diff --git a/Content.Server/Plants/Systems/PottedPlantHideSystem.cs b/Content.Shared/Plants/PottedPlantHideSystem.cs similarity index 86% rename from Content.Server/Plants/Systems/PottedPlantHideSystem.cs rename to Content.Shared/Plants/PottedPlantHideSystem.cs index 09571c60a13..fd256fd9263 100644 --- a/Content.Server/Plants/Systems/PottedPlantHideSystem.cs +++ b/Content.Shared/Plants/PottedPlantHideSystem.cs @@ -1,18 +1,15 @@ -using Content.Server.Plants.Components; -using Content.Server.Popups; -using Content.Server.Storage.Components; -using Content.Server.Storage.EntitySystems; -using Content.Shared.Audio; +using Content.Shared.Popups; +using Content.Shared.Storage.Components; +using Content.Shared.Storage.EntitySystems; using Content.Shared.Interaction; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; -namespace Content.Server.Plants.Systems +namespace Content.Shared.Plants { public sealed class PottedPlantHideSystem : EntitySystem { - [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SecretStashSystem _stashSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; diff --git a/Content.Shared/Plunger/Components/PlungerComponent.cs b/Content.Shared/Plunger/Components/PlungerComponent.cs new file mode 100644 index 00000000000..101121fe4c4 --- /dev/null +++ b/Content.Shared/Plunger/Components/PlungerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Plunger.Components +{ + /// + /// Allows entity to unblock target entity with PlungerUseComponent. + /// + [RegisterComponent, NetworkedComponent,AutoGenerateComponentState] + public sealed partial class PlungerComponent : Component + { + /// + /// Duration of plunger doafter event. + /// + [DataField] + [AutoNetworkedField] + public float PlungeDuration = 2f; + } +} diff --git a/Content.Shared/Plunger/Components/PlungerUseComponent.cs b/Content.Shared/Plunger/Components/PlungerUseComponent.cs new file mode 100644 index 00000000000..e886a4ef7ad --- /dev/null +++ b/Content.Shared/Plunger/Components/PlungerUseComponent.cs @@ -0,0 +1,42 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Content.Shared.Random; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Plunger.Components +{ + /// + /// Entity can interact with plungers. + /// + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] + public sealed partial class PlungerUseComponent : Component + { + /// + /// If true entity has been plungered. + /// + [DataField] + [AutoNetworkedField] + public bool Plunged; + + /// + /// If true entity can interact with plunger. + /// + [DataField] + [AutoNetworkedField] + public bool NeedsPlunger = false; + + /// + /// A weighted random entity prototype containing the different loot that rummaging can provide. + /// + [DataField] + [AutoNetworkedField] + public ProtoId PlungerLoot = "PlungerLoot"; + + + /// + /// Sound played on rummage completion. + /// + [DataField] + public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Effects/Fluids/glug.ogg"); + } +} diff --git a/Content.Shared/Plunger/PlungerDoAfterEvent.cs b/Content.Shared/Plunger/PlungerDoAfterEvent.cs new file mode 100644 index 00000000000..b803f5136f6 --- /dev/null +++ b/Content.Shared/Plunger/PlungerDoAfterEvent.cs @@ -0,0 +1,10 @@ + +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Plunger; + +[Serializable, NetSerializable] +public sealed partial class PlungerDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Plunger/Systems/PlungerSystem.cs b/Content.Shared/Plunger/Systems/PlungerSystem.cs new file mode 100644 index 00000000000..57bd77a7d95 --- /dev/null +++ b/Content.Shared/Plunger/Systems/PlungerSystem.cs @@ -0,0 +1,79 @@ +using Content.Shared.DoAfter; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Content.Shared.Plunger.Components; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Timing; +using Content.Shared.Random.Helpers; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Content.Shared.Random; + +namespace Content.Shared.Plunger.Systems; + +/// +/// Plungers can be used to unblock entities with PlungerUseComponent. +/// +public sealed class PlungerSystem : EntitySystem +{ + [Dependency] protected readonly IPrototypeManager _proto = default!; + [Dependency] protected readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnInteract); + SubscribeLocalEvent(OnDoAfter); + } + + private void OnInteract(EntityUid uid, PlungerComponent component, AfterInteractEvent args) + { + if (args.Handled) + return; + + if (!args.CanReach || args.Target is not { Valid: true } target) + return; + + if (!TryComp(args.Target, out var plunger)) + return; + + if (plunger.NeedsPlunger) + return; + + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.PlungeDuration, new PlungerDoAfterEvent(), uid, target, uid) + { + BreakOnMove = true, + BreakOnDamage = true, + MovementThreshold = 1.0f, + }); + args.Handled = true; + } + + private void OnDoAfter(EntityUid uid, PlungerComponent component, DoAfterEvent args) + { + if (args.Cancelled || args.Handled || args.Args.Target == null) + return; + + if (args.Target is not { Valid: true } target) + return; + + if (!TryComp(target, out PlungerUseComponent? plunge)) + return; + + _popup.PopupClient(Loc.GetString("plunger-unblock", ("target", target)), args.User, args.User, PopupType.Medium); + plunge.Plunged = true; + + var spawn = _proto.Index(plunge.PlungerLoot).Pick(_random); + + _audio.PlayPredicted(plunge.Sound, uid, uid); + Spawn(spawn, Transform(target).Coordinates); + RemComp(target); + Dirty(target, plunge); + + args.Handled = true; + } +} + diff --git a/Content.Shared/Storage/Components/SecretStashComponent.cs b/Content.Shared/Storage/Components/SecretStashComponent.cs new file mode 100644 index 00000000000..8595f79ca57 --- /dev/null +++ b/Content.Shared/Storage/Components/SecretStashComponent.cs @@ -0,0 +1,90 @@ +using Content.Shared.Storage.EntitySystems; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Item; +using Robust.Shared.Containers; +using Robust.Shared.Prototypes; +using Content.Shared.Tools; +using Robust.Shared.GameStates; +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Storage.Components +{ + /// + /// Logic for a secret slot stash, like plant pot or toilet cistern. + /// Unlike it doesn't have interaction logic or verbs. + /// Other classes like should implement it. + /// + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] + [Access(typeof(SecretStashSystem))] + public sealed partial class SecretStashComponent : Component + { + /// + /// Max item size that can be fitted into secret stash. + /// + [DataField("maxItemSize")] + public ProtoId MaxItemSize = "Small"; + + /// + /// If stash has way to open then this will switch between open and closed. + /// + [DataField, AutoNetworkedField] + public bool ToggleOpen; + + /// + /// Prying the door. + /// + [DataField] + public float PryDoorTime = 1f; + + [DataField] + public ProtoId PryingQuality = "Prying"; + + /// + /// Is stash openable?. + /// + [DataField, AutoNetworkedField] + public bool OpenableStash = false; + + /// + /// IC secret stash name. For example "the toilet cistern". + /// If empty string, will replace it with entity name in init. + /// + [DataField] + public string SecretPartName { get; set; } = ""; + + [DataField, AutoNetworkedField] + public string ExamineStash = "comp-secret-stash-on-examine-found-hidden-item"; + + /// + /// Container used to keep secret stash item. + /// + [ViewVariables] + public ContainerSlot ItemContainer = default!; + + } + + /// + /// Simple pry event for prying open a stash door. + /// + [Serializable, NetSerializable] + public sealed partial class StashPryDoAfterEvent : SimpleDoAfterEvent + { + } + + /// + /// Visualizers for handling stash open closed state if stash has door. + /// + [Serializable, NetSerializable] + public enum StashVisuals : byte + { + DoorVisualState, + } + + [Serializable, NetSerializable] + public enum DoorVisualState : byte + { + DoorOpen, + DoorClosed + } +} diff --git a/Content.Server/Storage/EntitySystems/SecretStashSystem.cs b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs similarity index 55% rename from Content.Server/Storage/EntitySystems/SecretStashSystem.cs rename to Content.Shared/Storage/EntitySystems/SecretStashSystem.cs index 49be0a2f880..9aee1b982e0 100644 --- a/Content.Server/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs @@ -1,25 +1,37 @@ -using Content.Server.Popups; -using Content.Server.Storage.Components; +using Content.Shared.Popups; +using Content.Shared.Storage.Components; using Content.Shared.Destructible; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Item; using Robust.Shared.Containers; +using Content.Shared.Interaction; +using Content.Shared.Tools.Systems; +using Content.Shared.Examine; -namespace Content.Server.Storage.EntitySystems +namespace Content.Shared.Storage.EntitySystems { + /// + /// Secret Stash allows an item to be hidden within. + /// public sealed class SecretStashSystem : EntitySystem { - [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly SharedItemSystem _item = default!; + [Dependency] private readonly SharedToolSystem _tool = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnDestroyed); + SubscribeLocalEvent(OnSecretStashPried); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnExamine); } private void OnInit(EntityUid uid, SecretStashComponent component, ComponentInit args) @@ -42,6 +54,73 @@ public bool HasItemInside(EntityUid uid, SecretStashComponent? component = null) return component.ItemContainer.ContainedEntity != null; } + private void OnInteractUsing(EntityUid uid, SecretStashComponent component, InteractUsingEvent args) + { + if (args.Handled) + return; + + if (!component.OpenableStash) + return; + + // is player trying place or lift off cistern lid? + if (_tool.UseTool(args.Used, args.User, uid, component.PryDoorTime, component.PryingQuality, new StashPryDoAfterEvent())) + args.Handled = true; + // maybe player is trying to hide something inside cistern? + else if (component.ToggleOpen) + { + TryHideItem(uid, args.User, args.Used); + args.Handled = true; + } + } + + private void OnInteractHand(EntityUid uid, SecretStashComponent component, InteractHandEvent args) + { + if (args.Handled) + return; + + if (!component.OpenableStash) + return; + + // trying to get something from stash? + if (component.ToggleOpen) + { + var gotItem = TryGetItem(uid, args.User); + if (gotItem) + { + args.Handled = true; + return; + } + } + args.Handled = true; + } + + private void OnSecretStashPried(EntityUid uid, SecretStashComponent component, StashPryDoAfterEvent args) + { + if (args.Cancelled) + return; + + ToggleOpen(uid, component); + } + + public void ToggleOpen(EntityUid uid, SecretStashComponent? component = null, MetaDataComponent? meta = null) + { + if (!Resolve(uid, ref component)) + return; + + component.ToggleOpen = !component.ToggleOpen; + + UpdateAppearance(uid, component); + Dirty(uid, component, meta); + } + + private void UpdateAppearance(EntityUid uid, SecretStashComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + _appearance.SetData(uid, StashVisuals.DoorVisualState, component.ToggleOpen ? DoorVisualState.DoorOpen : DoorVisualState.DoorClosed); + } + /// /// Tries to hide item inside secret stash from hands of user. /// @@ -62,7 +141,7 @@ public bool TryHideItem(EntityUid uid, EntityUid userUid, EntityUid itemToHideUi if (container.ContainedEntity != null) { var msg = Loc.GetString("comp-secret-stash-action-hide-container-not-empty"); - _popupSystem.PopupEntity(msg, uid, userUid); + _popupSystem.PopupClient(msg, uid, userUid); return false; } @@ -71,7 +150,7 @@ public bool TryHideItem(EntityUid uid, EntityUid userUid, EntityUid itemToHideUi { var msg = Loc.GetString("comp-secret-stash-action-hide-item-too-big", ("item", itemToHideUid), ("stash", GetSecretPartName(uid, component))); - _popupSystem.PopupEntity(msg, uid, userUid); + _popupSystem.PopupClient(msg, uid, userUid); return false; } @@ -84,7 +163,7 @@ public bool TryHideItem(EntityUid uid, EntityUid userUid, EntityUid itemToHideUi // all done, show success message var successMsg = Loc.GetString("comp-secret-stash-action-hide-success", ("item", itemToHideUid), ("this", GetSecretPartName(uid, component))); - _popupSystem.PopupEntity(successMsg, uid, userUid); + _popupSystem.PopupClient(successMsg, uid, userUid); return true; } @@ -113,11 +192,23 @@ public bool TryGetItem(EntityUid uid, EntityUid userUid, SecretStashComponent? c // show success message var successMsg = Loc.GetString("comp-secret-stash-action-get-item-found-something", ("stash", GetSecretPartName(uid, component))); - _popupSystem.PopupEntity(successMsg, uid, userUid); + _popupSystem.PopupClient(successMsg, uid, userUid); return true; } + private void OnExamine(EntityUid uid, SecretStashComponent component, ExaminedEvent args) + { + if (args.IsInDetailsRange && component.ToggleOpen) + { + if (HasItemInside(uid)) + { + var msg = Loc.GetString(component.ExamineStash); + args.PushMarkup(msg); + } + } + } + private string GetSecretPartName(EntityUid uid, SecretStashComponent stash) { if (stash.SecretPartName != "") diff --git a/Content.Shared/Toilet/Components/ToiletComponent.cs b/Content.Shared/Toilet/Components/ToiletComponent.cs new file mode 100644 index 00000000000..5de74e08f6e --- /dev/null +++ b/Content.Shared/Toilet/Components/ToiletComponent.cs @@ -0,0 +1,40 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Toilet.Components +{ + /// + /// Toilets that can be flushed, seats toggled up and down, items hidden in cistern. + /// + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] + public sealed partial class ToiletComponent : Component + { + /// + /// Toggles seat state. + /// + [DataField, AutoNetworkedField] + public bool ToggleSeat; + + + /// + /// Sound to play when toggling toilet seat. + /// + [DataField] + public SoundSpecifier SeatSound = new SoundPathSpecifier("/Audio/Effects/toilet_seat_down.ogg"); + } + + [Serializable, NetSerializable] + public enum ToiletVisuals : byte + { + SeatVisualState, + } + + [Serializable, NetSerializable] + public enum SeatVisualState : byte + { + SeatUp, + SeatDown + } +} + diff --git a/Content.Shared/Toilet/Systems/SharedToiletSystem.cs b/Content.Shared/Toilet/Systems/SharedToiletSystem.cs new file mode 100644 index 00000000000..87df69e88da --- /dev/null +++ b/Content.Shared/Toilet/Systems/SharedToiletSystem.cs @@ -0,0 +1,109 @@ +using Content.Shared.Buckle.Components; +using Content.Shared.Interaction; +using Content.Shared.Verbs; +using Content.Shared.Plunger.Components; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Random; +using Robust.Shared.Utility; +using Content.Shared.Toilet.Components; + +namespace Content.Shared.Toilet.Systems +{ + /// + /// Handles sprite changes for both toilet seat up and down as well as for lid open and closed. Handles interactions with hidden stash + /// + + public abstract class SharedToiletSystem : EntitySystem + { + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent>(OnToggleSeatVerb); + SubscribeLocalEvent(OnActivateInWorld); + } + + private void OnMapInit(EntityUid uid, ToiletComponent component, MapInitEvent args) + { + if (_random.Prob(0.5f)) + component.ToggleSeat = true; + + if (_random.Prob(0.3f)) + { + TryComp(uid, out var plunger); + + if (plunger == null) + return; + + plunger.NeedsPlunger = true; + } + + UpdateAppearance(uid); + Dirty(uid, component); + } + + public bool CanToggle(EntityUid uid) + { + return TryComp(uid, out var strap) && strap.BuckledEntities.Count == 0; + } + + private void OnToggleSeatVerb(EntityUid uid, ToiletComponent component, GetVerbsEvent args) + { + if (!args.CanInteract || !args.CanAccess || !CanToggle(uid) || args.Hands == null) + return; + + AlternativeVerb toggleVerb = new() + { + Act = () => ToggleToiletSeat(uid, args.User, component) + }; + + if (component.ToggleSeat) + { + toggleVerb.Text = Loc.GetString("toilet-seat-close"); + toggleVerb.Icon = + new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/close.svg.192dpi.png")); + } + else + { + toggleVerb.Text = Loc.GetString("toilet-seat-open"); + toggleVerb.Icon = + new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/open.svg.192dpi.png")); + } + args.Verbs.Add(toggleVerb); + } + + private void OnActivateInWorld(EntityUid uid, ToiletComponent comp, ActivateInWorldEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + ToggleToiletSeat(uid, args.User, comp); + } + + public void ToggleToiletSeat(EntityUid uid, EntityUid? user = null, ToiletComponent? component = null, MetaDataComponent? meta = null) + { + if (!Resolve(uid, ref component)) + return; + + component.ToggleSeat = !component.ToggleSeat; + + _audio.PlayPredicted(component.SeatSound, uid, uid); + UpdateAppearance(uid, component); + Dirty(uid, component, meta); + } + + private void UpdateAppearance(EntityUid uid, ToiletComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + _appearance.SetData(uid, ToiletVisuals.SeatVisualState, component.ToggleSeat ? SeatVisualState.SeatUp : SeatVisualState.SeatDown); + } + } +} diff --git a/Content.Shared/Toilet/ToiletComponent.cs b/Content.Shared/Toilet/ToiletComponent.cs deleted file mode 100644 index 161bf81c992..00000000000 --- a/Content.Shared/Toilet/ToiletComponent.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Content.Shared.DoAfter; -using Content.Shared.Tools; -using Robust.Shared.Audio; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Shared.Toilet -{ - [RegisterComponent] - public sealed partial class ToiletComponent : Component - { - [DataField("pryLidTime")] - public float PryLidTime = 1f; - - [DataField("pryingQuality", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string PryingQuality = "Prying"; - - [DataField("toggleSound")] - public SoundSpecifier ToggleSound = new SoundPathSpecifier("/Audio/Effects/toilet_seat_down.ogg"); - - [DataField("lidOpen")] - public bool LidOpen = false; - - [DataField("isSeatUp")] - public bool IsSeatUp = false; - } - - [Serializable, NetSerializable] - public sealed partial class ToiletPryDoAfterEvent : SimpleDoAfterEvent - { - } -} diff --git a/Content.Shared/Toilet/ToiletVisuals.cs b/Content.Shared/Toilet/ToiletVisuals.cs deleted file mode 100644 index c5992bc0be1..00000000000 --- a/Content.Shared/Toilet/ToiletVisuals.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Toilet; - -[Serializable, NetSerializable] -public enum ToiletVisuals -{ - LidOpen, - SeatUp -} diff --git a/Resources/Audio/Effects/Fluids/attributions.yml b/Resources/Audio/Effects/Fluids/attributions.yml index 4e28c992528..aebe3e3c3ff 100644 --- a/Resources/Audio/Effects/Fluids/attributions.yml +++ b/Resources/Audio/Effects/Fluids/attributions.yml @@ -12,3 +12,13 @@ license: "CC0-1.0" copyright: "Created by brittmosel" source: "https://freesound.org/people/brittmosel/sounds/529300/" + +- files: ["splash.ogg"] + license: "CC0-1.0" + copyright: "Created by deadrobotmusic" + source: "https://freesound.org/people/deadrobotmusic/sounds/609953/" + +- files: ["flush.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Created by the_toilet_guy" + source: "https://freesound.org/people/the_toilet_guy/sounds/98770/" diff --git a/Resources/Audio/Effects/Fluids/flush.ogg b/Resources/Audio/Effects/Fluids/flush.ogg new file mode 100644 index 0000000000000000000000000000000000000000..f4ef31c2ab17c405f90f919d5d2449b4eb6ffc7b GIT binary patch literal 132202 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

Rm;+rLYzNcc+E1pe0C9bit2 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 pT8}>{|7@%mm&ZF literal 0 HcmV?d00001 diff --git a/Resources/Audio/Weapons/glug.ogg b/Resources/Audio/Weapons/glug.ogg new file mode 100644 index 0000000000000000000000000000000000000000..424bedd35169c7adffd61011c23b4b375429d92f GIT binary patch literal 27517 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 P>2DsC+9J2}@%aA-FPz9A literal 0 HcmV?d00001 diff --git a/Resources/Locale/en-US/storage/components/secret-stash-component.ftl b/Resources/Locale/en-US/storage/components/secret-stash-component.ftl index d41933b3744..d0dfed2b5dd 100644 --- a/Resources/Locale/en-US/storage/components/secret-stash-component.ftl +++ b/Resources/Locale/en-US/storage/components/secret-stash-component.ftl @@ -5,6 +5,7 @@ comp-secret-stash-action-hide-success = You hide { THE($item) } in { $this } comp-secret-stash-action-hide-container-not-empty = There's already something in here?! comp-secret-stash-action-hide-item-too-big = { THE($item) } is too big to fit in {$stash}! comp-secret-stash-action-get-item-found-something = There was something inside {$stash}! +comp-secret-stash-on-examine-found-hidden-item = There is something hidden inside. secret-stash-part-plant = the plant secret-stash-part-toilet = the toilet cistern diff --git a/Resources/Locale/en-US/toilet/toilet-component.ftl b/Resources/Locale/en-US/toilet/toilet-component.ftl index 7807759e42c..1129f61b4d7 100644 --- a/Resources/Locale/en-US/toilet/toilet-component.ftl +++ b/Resources/Locale/en-US/toilet/toilet-component.ftl @@ -7,3 +7,5 @@ toilet-component-suicide-message-others = {CAPITALIZE(THE($victim))} bashes them toilet-component-suicide-message = You bash yourself with {THE($owner)}! toilet-seat-close = Close Seat toilet-seat-open = Open Seat + +plunger-unblock = You unblock the {THE($target)}! diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml index db08481dc53..cad2d9a9245 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml @@ -622,6 +622,15 @@ damage: types: Blunt: 3 + - type: Plunger + +- type: weightedRandomEntity + id: PlungerLoot + weights: + RandomSpawner100: 56 + SpacemenFigureSpawner: 28 + SpawnMobCockroach: 5 + MaintenanceToolSpawner: 5 - type: entity parent: BaseItem diff --git a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml index a6f14b383cb..f02b1262489 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml @@ -2,48 +2,100 @@ name: toilet id: ToiletEmpty suffix: Empty - parent: SeatBase + parent: [ DisposalUnitBase, SeatBase ] description: The HT-451, a torque rotation-based, waste disposal unit for small matter. This one seems remarkably clean. components: - - type: MeleeSound - soundGroups: - Brute: - path: - "/Audio/Weapons/slash.ogg" - - type: Anchorable - type: Sprite sprite: Structures/Furniture/toilet.rsi - state: closed_toilet_seat_up + layers: + - state: condisposal + map: [ "enum.DisposalUnitVisualLayers.Unanchored" ] + - state: disposal + map: [ "enum.DisposalUnitVisualLayers.Base" ] + - state: disposal-flush + map: [ "enum.DisposalUnitVisualLayers.OverlayFlush" ] + - state: dispover-charge + map: [ "enum.DisposalUnitVisualLayers.OverlayCharging" ] + - state: dispover-ready + map: [ "enum.DisposalUnitVisualLayers.OverlayReady" ] + - state: dispover-full + map: [ "enum.DisposalUnitVisualLayers.OverlayFull" ] + - state: dispover-handle + map: [ "enum.DisposalUnitVisualLayers.OverlayEngaged" ] + - map: [ "DoorVisualState.DoorOpen" ] + - map: [ "SeatVisualState.SeatUp" ] + - type: Rotatable + - type: Transform + noRot: false + - type: Strap + whitelist: + components: + - HumanoidAppearance + - type: DisposalUnit + autoEngageEnabled: false + noUI: true + blacklist: + components: + - HumanoidAppearance + - Plunger + - SolutionTransfer + whitelist: + components: + - Item + soundFlush: /Audio/Effects/Fluids/flush.ogg + soundInsert: /Audio/Effects/Fluids/splash.ogg - type: Toilet - - type: SecretStash - secretPartName: secret-stash-part-toilet - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - type: SolutionContainerManager - solutions: - drainBuffer: - maxVol: 500 - toilet: - maxVol: 250 - - type: Transform - anchored: true + disposals: !type:Container - type: Physics bodyType: Static - type: Construction graph: Toilet node: toilet + - type: PlungerUse - type: Appearance + - type: SecretStash + secretPartName: secret-stash-part-toilet + examineStash: toilet-component-on-examine-found-hidden-item + openableStash: true - type: Drain autoDrain: false - - type: DumpableSolution - solution: drainBuffer - - type: SolutionContainerVisuals - maxFillLevels: 1 - fillBaseName: fill- - solutionName: drainBuffer - type: StaticPrice price: 25 + - type: UserInterface + interfaces: + - key: enum.DisposalUnitUiKey.Key + type: DisposalUnitBoundUserInterface + - type: RatKingRummageable + - type: SolutionContainerManager + solutions: + drainBuffer: + maxVol: 100 + tank: + maxVol: 500 + - type: SolutionRegeneration + solution: tank + generated: + reagents: + - ReagentId: Water + Quantity: 1 + - type: DrainableSolution + solution: tank + - type: ReagentTank + - type: DumpableSolution + solution: drainBuffer + - type: GenericVisualizer + visuals: + enum.ToiletVisuals.SeatVisualState: + SeatVisualState.SeatUp: + SeatUp: { state: disposal-up } + SeatDown: { state: disposal-down } + enum.StashVisuals.DoorVisualState: + DoorVisualState.DoorOpen: + DoorOpen: { state: disposal-open } + DoorClosed: { state: disposal-closed } - type: entity id: ToiletDirtyWater diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml index 1193182d09f..25047bb5752 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml @@ -10,7 +10,6 @@ components: - type: Sprite sprite: Structures/Piping/disposal.rsi - snapCardinals: true layers: - state: condisposal map: [ "enum.DisposalUnitVisualLayers.Unanchored" ] @@ -19,7 +18,7 @@ - state: disposal-charging map: [ "enum.DisposalUnitVisualLayers.BaseCharging" ] - state: disposal-flush - map: [ "enum.DisposalUnitVisualLayers.BaseFlush" ] + map: [ "enum.DisposalUnitVisualLayers.OverlayFlush" ] - state: dispover-charge map: [ "enum.DisposalUnitVisualLayers.OverlayCharging" ] - state: dispover-ready @@ -30,17 +29,6 @@ map: [ "enum.DisposalUnitVisualLayers.OverlayEngaged" ] - type: Physics bodyType: Static - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.4,0.25,0.4" - density: 75 - mask: - - MachineMask - layer: - - MachineLayer - type: Destructible thresholds: - trigger: @@ -82,6 +70,9 @@ parent: DisposalUnitBase name: disposal unit components: + - type: Sprite + sprite: Structures/Piping/disposal.rsi + snapCardinals: true - type: Construction graph: DisposalMachine node: disposal_unit @@ -100,6 +91,7 @@ components: - type: Sprite sprite: Structures/Piping/disposal.rsi + snapCardinals: true layers: - state: conmailing map: [ "enum.DisposalUnitVisualLayers.Unanchored" ] @@ -108,7 +100,7 @@ - state: mailing-charging map: [ "enum.DisposalUnitVisualLayers.BaseCharging" ] - state: mailing-flush - map: [ "enum.DisposalUnitVisualLayers.BaseFlush" ] + map: [ "enum.DisposalUnitVisualLayers.OverlayFlush" ] - state: dispover-charge map: [ "enum.DisposalUnitVisualLayers.OverlayCharging" ] - state: dispover-ready diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/toilet.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/toilet.yml index 7daf9ca22df..d9a4cd02fb4 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/toilet.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/toilet.yml @@ -24,7 +24,6 @@ conditions: - !type:EntityAnchored anchored: false - - !type:ToiletLidClosed {} steps: - tool: Welding doAfter: 2 diff --git a/Resources/Prototypes/Recipes/Construction/furniture.yml b/Resources/Prototypes/Recipes/Construction/furniture.yml index 25978771872..a5cf53107db 100644 --- a/Resources/Prototypes/Recipes/Construction/furniture.yml +++ b/Resources/Prototypes/Recipes/Construction/furniture.yml @@ -606,7 +606,7 @@ description: A human excrement flushing apparatus. icon: sprite: Structures/Furniture/toilet.rsi - state: closed_toilet_seat_up + state: disposal objectType: Structure placementMode: SnapgridCenter canBuildInImpassable: false diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/closed_toilet_seat_down.png b/Resources/Textures/Structures/Furniture/toilet.rsi/closed_toilet_seat_down.png deleted file mode 100644 index 738c92a6d361f4ddb1e3fe611aafc897329d39b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1445 zcmV;W1zP%vP)f? z2|){?XcKPQ1gV>F`N299XSnlxZ{B_X?V2W0+t-n@73x#!)vbMO5P(J?<7j=BC( z9e@x9T)fu1*L?DKboR`-a9CoOP*TF9ZHp-cuy8RzEaqJJz<&t0H?-l^3>0suNZoMCCx0n!KHT1^5lIXRgi zDgmGaBp{=sqqPTs=>tG>Iz@c$?CeY!(S7G;AwB>s^l>_rdFm~I#~>CTAL)(hZ#%$% z@u|i5Qr@uul$Q*20TIeR6#%e4f*(HrVQuqRU0qG$008vk=l5J$003<3+T;jffeHXF zE}fvw0&8n)QAc6~Ji;DI$>7y`fn z=H&z#g1e$l*Z;NQ_>l(y@yEjKqu8)i))t4D*ZKw@t6~uq0Gc>}mWOb8#sLxl(wmN$ z?|8XAcA5$q09n=6o zh|`ywA~3<`co+x3^1nW9s|C(Qrmd=k_k07ylGV6vb{<*^oX z5~kDR_j2+O!2l2h+ZNDxUG1K?jUxa|z;FxzKyv250H{QXO76AA1aiIu*#ea)P|3Ye zetqSIcZ&9|yFpI4tS#V`qJRN#z}jg;wqn%)pjAF}TpfT=#AOW{l)DF8~rLTj4=Y284MO4Te-Yt8vqoKDPqERI{!9l{cW$ip5;@06DR?DjRBT zjMrAFVOZIP$CrXIYa?n|RU5l1s|Yac1pc z-|Mhhd?13R#W{JA#Zce&W3kpWk_1J5wiQmS`GBknj2ROg=5GTS?Gb>ic*RvUawbGf z5X@!-Mv3Lr<9wFYUY8BrP+mU8By+P$W|s0o~#w_&~u-!~R4jTYTcblALZ2@gD^2CMzzac!RN1%)c z@VWFg{RZgrAFhIFJu9sBxV1X2&VX9AtX8kTnW^1a0OLSk00000NkvXXu0mjfobIH7 diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/closed_toilet_seat_up.png b/Resources/Textures/Structures/Furniture/toilet.rsi/closed_toilet_seat_up.png deleted file mode 100644 index 204c5ff89df0d7ad1e4bd2abf6df7f9cd4c68576..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1553 zcmV+s2JZQZP)Px)%Sl8*RCr$PTTMt+Q4qdD>sA%CX(Mfml4%lFp#%?yBI_=Cd% z#a0(rTjc2-=q-?@!a31bSd)<$0327hgDkG7L>VpfCj&qsbW$QiR89bp12FNTvaTqk z-ytcpBts?ubROV~$55PMGFKiT0g$-{L#{6*X9wWM^;;#iEr}2Sdh+y9mP80y=;G>P z3;Q7lH%83;wNVCo2TYl$i2<11nvbXE;ugmS5GLm)OYr5om$c{i_?#G?Fe#6@%>Y1% z!)Fc@U_z)S2+MzezhxG{0sz{O3DWv zc(yn`Id2jGu)^@faM@pjKxZ^JIhWn~5&&4)7y7J@uQC9nB04-hXVGq_ z`>&ZYz)DddI(v-`e9LaPOR-T)pbmUH0MvnMlg8{Yph?!ML)H!hQcy)KM*GwaN6H+# zXQ7E-<6&ZH`K<9(|e-tA~aLYh(At(sUC5 zU|C$=CZRzI0Be?Avf@hsbiEzbmL>uqx6HC;2t9d%T>|j%!DDBIheb%qfF?LW$pBqQ zl}xyO=VsvrfJ$R9G$cq(0YJ)3U8G;5UO@mzAq@bJ!a1Pj2r7q{*JJ1_b98*tXz0Tw zoCJWRiY!Hg0s4**5Z)^=q|(~S!L!5j%fpgT1-o1VEH#I&zrgb&eqtHmkqYB``5=#| zixE)XH6Q0EAW#f)`0f<(_ztJsCIF~3(e#zXbKefrl!wFSZ8cZOW{AV5D+EebqfH5b z%mYF!@Et|#L35o6x_k!nmDpvikgT-+P97jLLD#vP#d&d1d@^;m^h<5S)Rq9m4r;a2 zWBf_%5ALIoDX>kr-=V54UiSP!gHj)HI{_i?Can=JuCos$jI4MF-yM83a zG@i0(*(89zQzLIdM1!C&Bm51&4RZaK$#st?bYvE+2)VAO(3AeH0O(~CyD$+1fK?(S zAKKf>t!9-|+1UDyz1P2Cl(*LCt8issR)1V$nwNm9GwIfD0HmXK$ysR$SPvulJA%Cm zfifS!|N6?Vk2$`(3+AeDjFL@#-vOYhmdhpgf6sv5>dmib5PItT00000NkvXXu0mjf D0+_@x diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/condisposal.png b/Resources/Textures/Structures/Furniture/toilet.rsi/condisposal.png new file mode 100644 index 0000000000000000000000000000000000000000..c60cabe80b18aa8a578e2225633f58de1b405a5b GIT binary patch literal 31043 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/disposal-charging.png b/Resources/Textures/Structures/Furniture/toilet.rsi/disposal-charging.png new file mode 100644 index 0000000000000000000000000000000000000000..cb9ad3a9c75d02d9915666999f56fa89dbcd3d24 GIT binary patch literal 31052 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/disposal-down.png b/Resources/Textures/Structures/Furniture/toilet.rsi/disposal-down.png new file mode 100644 index 0000000000000000000000000000000000000000..97712ddc65380c3b71547a3b31bc8e6263080778 GIT binary patch literal 29554 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/disposal-open.png b/Resources/Textures/Structures/Furniture/toilet.rsi/disposal-open.png new file mode 100644 index 0000000000000000000000000000000000000000..f48f67bf9a6467f84373d16fdea11b6b28e5d682 GIT binary patch literal 28502 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 hBqqeRluU(tV51%s>3@{|3?0LSz5{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/disposal-up.png b/Resources/Textures/Structures/Furniture/toilet.rsi/disposal-up.png new file mode 100644 index 0000000000000000000000000000000000000000..3b37aba4729a861a0a8b57de28bad057864f07b8 GIT binary patch literal 29203 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/disposal.png b/Resources/Textures/Structures/Furniture/toilet.rsi/disposal.png new file mode 100644 index 0000000000000000000000000000000000000000..cb2db2f9d8e9006ef560ad3c6962142e9de840dd GIT binary patch literal 31095 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/dispover-charge.png b/Resources/Textures/Structures/Furniture/toilet.rsi/dispover-charge.png new file mode 100644 index 0000000000000000000000000000000000000000..23ecafa9d8245cbbc5ce3a248e644b7c0c775f4f GIT binary patch literal 28316 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 VznP1#7v1jdy)pQ+oiG2^e*?F$;(`DG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/dispover-full.png b/Resources/Textures/Structures/Furniture/toilet.rsi/dispover-full.png new file mode 100644 index 0000000000000000000000000000000000000000..ceb04dfb268413751fab3bdd4a36b96ba49ba594 GIT binary patch literal 17416 zcmeI4KWyAo7{DD`p*B?|BqTtctgDcyz~}$=*}A(n&9x*F7ozm4rY!W?e!f__v#++3 zyF?&WFtNgd5Cbzpj4TXH%rGz@1~vu|QWqAc^8D}FcezVmNC6?esL6eO{{Hy=zVE&F z*~5LXx$*ktujOV8_Dm5XVKr!y@x-ekBg(V`w_!jdOrDGVm|rwC5BnO z;`O%U?d}_<9SrNh2`pHj3`a0$J*QQ>r*?(zXcg{w zYlk7cbGXs74|i?Dsa&Q5RKRSM=9dNf1?Dka=0)B-vC1Q<2#Gr`BFZQZsa1bE|VZ4~PEO zs_n$_$mIF)cw8UL^&sr?qG1@kAn}sKAq_4%@MAFH{OD@tr0~;$ksW%Y*b96%@e8bA zFK*RpNg(`_&ucisf&3_EhbZzBFyh6!z|S*sY-}^y3kT_~IW`Xma0vZ4LU!U@yU|V% z2hmQjASAxLFfhtVw~J%Xz2D(*Zs;h!wT}?wNatEcy@L_tw_p_Pg*LpkkEU{U-t41z z3zpd-aD~+8I*L7afuH2cLI`l;Eig;2WM*kiWvOl=Xy$4NK^%m=AQ-f>a@{O)!LF{R z<;lKs&-0yN99?VjvnFNXl-^(m#IP+1lFSJz`qvXR6VXVEQJOVJYtR8PILSd(t>VJ5O*aUKAZ~j@(1-lU?>G5!u%d~J z(p(J&L5S`Mw&f;2Z+Na%C$RUDRk7mRFhVJaDycyUO4t2O(4QVHE)2YOw(B^7?Kx%{ zR2H>{;R*_;+pdnlLC68w5jaK>Z3Vp)=^8fb2otaCC{WX@0on-ihy080U? z;AX`(ZC*|~cU?qBuIEo20;nmnB5)1C(Xxp*6v^cpy6rSHSyC0fk(MP2RB?7B(3_!$ z4jM41=p=J-&|Cz=RV=yD;4H;;IZaYT4nWJ{Y`G!pwk6pb(2Edr+#CtD<|QR{FrDGF zr0&3n)1zfcrANXDgb_?OyjHE)@$eavRY_he>BeaSJ2_0+cCw8?R9RD_>d4s1$ySBxxiL|u4OtN<^1XVOh{#(e6W z$h|xHbIii_ne34yyVZ)bd9i}CcFym(ecrp2#n^rH+n%+O&w0e2gw6whIdvROJqsc^J^p`J39zUYKimf01G3LT;EXo61Y9G%?vI zdPRob&hhy5TqS4t;p6EG<&2)bZ|soegmow`jDkd3f<&OWNGM?)iVLG45hyMaN?3>D!YD`tii?C2)}gpC z3KD_hBB6wJC@zeGM4-4xC}ACn3!@+rj>WZHe&Gf5(YIWT(brjQ>@HnHUxmTiYg=80 zIeeL69=*>ne?CENgbhIujg@a=DJBi)_#&Ps3c)9>FeEiugbbHX2w z-)a3=`{JV?`ggv&_#AuV5wrBn`3rwvcy#FnhI#Vj9CP=pbMKnJY<-4eGV8ZCI$z#= G@ZMi6)#3gC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/dispover-handle.png b/Resources/Textures/Structures/Furniture/toilet.rsi/dispover-handle.png new file mode 100644 index 0000000000000000000000000000000000000000..4f40192d5bc52eee3a62b5066f434e89ba6d3dde GIT binary patch literal 17416 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 diff --git a/Resources/Textures/Structures/Furniture/toilet.rsi/open_toilet_seat_up.png b/Resources/Textures/Structures/Furniture/toilet.rsi/open_toilet_seat_up.png deleted file mode 100644 index 77995657cf61bffee7e5180374375219108ba40f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1535 zcmVMGzPWMTiAqt3W|WXd{w_xCsn|gf=2+h?~GbP-v9|B@zWf zLeN4e+=QDpLAq)k80W$H+<%)lbLaWq|GxSI@$J8PGxwf*=FXja=eH%1?Z)lvN4{6y zzIxXdIb>72M+pn%H(tK+3OsPO^(%m7gNt*tFD0DXOZNtHk_0U#|806IH6ognP* z?ei;IgUeWVVi7w7|;4FHrM z9UZO7uYJ+f)Kn4+LKFba^Z`&F4%X#>@g0q`yu2I*LKFbaV!)+qLq{`{Lz$MBl!lBj zl$8l)0Q#@qO3|O0UrSb(9ywjX@Yv%7fh9=1I(4xt zRT>Ing5O{E>OjDAKEne%-#yqhjURHXO$Pu@@cg;1lmS^mkctSx`2q=0%sLEdh56^^=F)DQTN*-t7qc6fC`tjK6wd-c zSvFV*4W1hRVuXkRAk-JnW9H5UfL5MD0faIDSXfx7+y6r#U@M%Mm@w&P>ZBO}09;P+ zp9cWQV+r_n0iFh9Xy~)3T>l}<%jeel%?u#5;c!4P?UCVq5vIa9(N|c5kq`hJSNDS~ zu3d>TTIP=ifI{fR2rW;R6txQ=24LVtWnH_FeukjT5)7FD&~boNR$2v0bDJzG4v+xI zSc6+`)|Om20Au$aq|~+qLI7y#`O`uIAw;3;+v|1gha5Z@G4|I+8SEW2MWQAKV0MP1 zmYiTrEN*dZ0AY4zHU(dO9GUKudrI4@0tN13$WMw0Emght;(|>S?KaX+@39tPtF?!0IV=FJ(9k!L7+2Q znO!N|`Vs(GIcw{)I=hFpPRR3SlvcU(rmFw|)8g_r2@OgBn6pf&?W?*X z-;Y*B03dfrw>DUR{>d|EhKET=$$%<2LCFA}NR>>Oe0V>}1b|9oFmxnHRRKWCOkJd3 zqh4MBn03(ruoTV#EhVTTyu2PmUzwxhlSackNSJDW5ClL{MW&*`0DVUY2sa80skBxK zo*kZF7E62?>~sk*)$F_e0?&{A6UzWiDva-CLmW{SBcQx%KF&`-pcv%ftrE=~mhVu& zF#$lOiDp(xyy)9uT5vdQ-d1yM+1%pr>DmG%tI;O~K*j++7G#y8^`J%71YJIZ@k;2j zmQPk%zZM5zB1VF)x|_v$aZr3Rbhf+~+lQeo0SFapwb#f0sbgIvs6mkQ@=YQsSGMw0 zMuXs53R#M?uS}oUod)HZfL7&TK5q)Eqc!T7%wsPOIzG9i?Chs&2Y(%hb@4%7K#&&a z;AIv=LrVm*%9zCEq$NPE!ih5<;H$teCZKTGa+>ucDTeWsMaw1u%&Hn?CPXv{`ZB^v z_-&Buw@j{kM81-lHzVY_ot)id*#JmK?UFOs60jB{`8$F}ZGkc#z~B1HZWeR0?klnx&M0x`~ldPqtxPMGKv5I002ovPDHLkV1jyetCs)( From ce71cde429c7fad648d3b8c164f12b1e9649153c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 03:22:24 +0000 Subject: [PATCH 48/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index dbfd5c37db9..f36805bd1d8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Nairodian - changes: - - message: All vent critter events now have a small delay and alert message before - they spawn. - type: Add - id: 5765 - time: '2024-01-22T01:33:38.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24383 - author: Flareguy changes: - message: The Research Director's hardsuit now uses its older sprites. @@ -3794,3 +3786,10 @@ id: 6264 time: '2024-03-31T03:00:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26487 +- author: brainfood1183 + changes: + - message: Toilets can now be connected to the disposal system. + type: Add + id: 6265 + time: '2024-03-31T03:21:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/22133 From de62ec204b04809175945a2ccfd4dbce6dafd8eb Mon Sep 17 00:00:00 2001 From: "J. Brown" Date: Sun, 31 Mar 2024 05:09:15 +0100 Subject: [PATCH 49/83] Uplink store interface searchable with a searchbar. (#24287) * Can now search the uplink store interface with a searchbar. * Search text updates no longer send server messages. Persists listings locally. * Formatting fixes and tidying. * Added helper method to get localised name and description (or otherwise, entity name and description) of store listing items. * Update Content.Client/Store/Ui/StoreMenu.xaml * Review change; moved localisation helper functions to their own class. * Prevent thread-unsafe behaviour as-per review. * Remove dummy boxcontainer --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth --- .../Store/Ui/StoreBoundUserInterface.cs | 40 ++++++++++++++---- Content.Client/Store/Ui/StoreMenu.xaml | 3 +- Content.Client/Store/Ui/StoreMenu.xaml.cs | 25 +++++------ .../Store/Systems/StoreSystem.Ui.cs | 4 +- .../Store/ListingLocalisationHelpers.cs | 42 +++++++++++++++++++ 5 files changed, 91 insertions(+), 23 deletions(-) create mode 100644 Content.Shared/Store/ListingLocalisationHelpers.cs diff --git a/Content.Client/Store/Ui/StoreBoundUserInterface.cs b/Content.Client/Store/Ui/StoreBoundUserInterface.cs index b549918d7c4..f87b92bc615 100644 --- a/Content.Client/Store/Ui/StoreBoundUserInterface.cs +++ b/Content.Client/Store/Ui/StoreBoundUserInterface.cs @@ -1,22 +1,27 @@ using Content.Shared.Store; using JetBrains.Annotations; -using Robust.Client.GameObjects; using System.Linq; -using System.Threading; -using Serilog; -using Timer = Robust.Shared.Timing.Timer; +using Robust.Shared.Prototypes; namespace Content.Client.Store.Ui; [UsedImplicitly] public sealed class StoreBoundUserInterface : BoundUserInterface { + private IPrototypeManager _prototypeManager = default!; + [ViewVariables] private StoreMenu? _menu; [ViewVariables] private string _windowName = Loc.GetString("store-ui-default-title"); + [ViewVariables] + private string _search = ""; + + [ViewVariables] + private HashSet _listings = new(); + public StoreBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -49,6 +54,12 @@ protected override void Open() SendMessage(new StoreRequestUpdateInterfaceMessage()); }; + _menu.SearchTextUpdated += (_, search) => + { + _search = search.Trim().ToLowerInvariant(); + UpdateListingsWithSearchFilter(); + }; + _menu.OnRefundAttempt += (_) => { SendMessage(new StoreRequestRefundMessage()); @@ -64,10 +75,10 @@ protected override void UpdateState(BoundUserInterfaceState state) switch (state) { case StoreUpdateState msg: - _menu.UpdateBalance(msg.Balance); - _menu.PopulateStoreCategoryButtons(msg.Listings); + _listings = msg.Listings; - _menu.UpdateListing(msg.Listings.ToList()); + _menu.UpdateBalance(msg.Balance); + UpdateListingsWithSearchFilter(); _menu.SetFooterVisibility(msg.ShowFooter); _menu.UpdateRefund(msg.AllowRefund); break; @@ -89,4 +100,19 @@ protected override void Dispose(bool disposing) _menu?.Close(); _menu?.Dispose(); } + + private void UpdateListingsWithSearchFilter() + { + if (_menu == null) + return; + + var filteredListings = new HashSet(_listings); + if (!string.IsNullOrEmpty(_search)) + { + filteredListings.RemoveWhere(listingData => !ListingLocalisationHelpers.GetLocalisedNameOrEntityName(listingData, _prototypeManager).Trim().ToLowerInvariant().Contains(_search) && + !ListingLocalisationHelpers.GetLocalisedDescriptionOrEntityDescription(listingData, _prototypeManager).Trim().ToLowerInvariant().Contains(_search)); + } + _menu.PopulateStoreCategoryButtons(filteredListings); + _menu.UpdateListing(filteredListings.ToList()); + } } diff --git a/Content.Client/Store/Ui/StoreMenu.xaml b/Content.Client/Store/Ui/StoreMenu.xaml index 4b38352a44a..fc4cbe444fc 100644 --- a/Content.Client/Store/Ui/StoreMenu.xaml +++ b/Content.Client/Store/Ui/StoreMenu.xaml @@ -28,7 +28,8 @@ HorizontalAlignment="Right" Text="Refund" /> - + + diff --git a/Content.Client/Store/Ui/StoreMenu.xaml.cs b/Content.Client/Store/Ui/StoreMenu.xaml.cs index 5dc1ab246bd..67e5d360a3a 100644 --- a/Content.Client/Store/Ui/StoreMenu.xaml.cs +++ b/Content.Client/Store/Ui/StoreMenu.xaml.cs @@ -1,5 +1,4 @@ using System.Linq; -using System.Threading; using Content.Client.Actions; using Content.Client.GameTicking.Managers; using Content.Client.Message; @@ -27,6 +26,7 @@ public sealed partial class StoreMenu : DefaultWindow private StoreWithdrawWindow? _withdrawWindow; + public event EventHandler? SearchTextUpdated; public event Action? OnListingButtonPressed; public event Action? OnCategoryButtonPressed; public event Action? OnWithdrawAttempt; @@ -46,6 +46,7 @@ public StoreMenu(string name) WithdrawButton.OnButtonDown += OnWithdrawButtonDown; RefreshButton.OnButtonDown += OnRefreshButtonDown; RefundButton.OnButtonDown += OnRefundButtonDown; + SearchBar.OnTextChanged += _ => SearchTextUpdated?.Invoke(this, SearchBar.Text); if (Window != null) Window.Title = name; @@ -59,7 +60,7 @@ public void UpdateBalance(Dictionary balance) (type.Key, type.Value), type => _prototypeManager.Index(type.Key)); var balanceStr = string.Empty; - foreach (var ((type, amount),proto) in currency) + foreach (var ((_, amount), proto) in currency) { balanceStr += Loc.GetString("store-ui-balance-display", ("amount", amount), ("currency", Loc.GetString(proto.DisplayName, ("amount", 1)))); @@ -81,7 +82,6 @@ public void UpdateListing(List listings) { var sorted = listings.OrderBy(l => l.Priority).ThenBy(l => l.Cost.Values.Sum()); - // should probably chunk these out instead. to-do if this clogs the internet tubes. // maybe read clients prototypes instead? ClearListings(); @@ -129,8 +129,8 @@ private void AddListingGui(ListingData listing) if (!listing.Categories.Contains(CurrentCategory)) return; - var listingName = Loc.GetString(listing.Name); - var listingDesc = Loc.GetString(listing.Description); + var listingName = ListingLocalisationHelpers.GetLocalisedNameOrEntityName(listing, _prototypeManager); + var listingDesc = ListingLocalisationHelpers.GetLocalisedDescriptionOrEntityDescription(listing, _prototypeManager); var listingPrice = listing.Cost; var canBuy = CanBuyListing(Balance, listingPrice); @@ -144,12 +144,6 @@ private void AddListingGui(ListingData listing) { if (texture == null) texture = spriteSys.GetPrototypeIcon(listing.ProductEntity).Default; - - var proto = _prototypeManager.Index(listing.ProductEntity); - if (listingName == string.Empty) - listingName = proto.Name; - if (listingDesc == string.Empty) - listingDesc = proto.Description; } else if (listing.ProductAction != null) { @@ -243,13 +237,16 @@ public void PopulateStoreCategoryButtons(HashSet listings) allCategories = allCategories.OrderBy(c => c.Priority).ToList(); + // This will reset the Current Category selection if nothing matches the search. + if (allCategories.All(category => category.ID != CurrentCategory)) + CurrentCategory = string.Empty; + if (CurrentCategory == string.Empty && allCategories.Count > 0) CurrentCategory = allCategories.First().ID; - if (allCategories.Count <= 1) - return; - CategoryListContainer.Children.Clear(); + if (allCategories.Count < 1) + return; foreach (var proto in allCategories) { diff --git a/Content.Server/Store/Systems/StoreSystem.Ui.cs b/Content.Server/Store/Systems/StoreSystem.Ui.cs index 49db980451e..e6c4eb0ccea 100644 --- a/Content.Server/Store/Systems/StoreSystem.Ui.cs +++ b/Content.Server/Store/Systems/StoreSystem.Ui.cs @@ -15,6 +15,7 @@ using Robust.Server.GameObjects; using Robust.Shared.Audio.Systems; using Robust.Shared.Player; +using Robust.Shared.Prototypes; namespace Content.Server.Store.Systems; @@ -29,6 +30,7 @@ public sealed partial class StoreSystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly StackSystem _stack = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; private void InitializeUi() { @@ -259,7 +261,7 @@ private void OnBuyRequest(EntityUid uid, StoreComponent component, StoreBuyListi //log dat shit. _admin.Add(LogType.StorePurchase, LogImpact.Low, - $"{ToPrettyString(buyer):player} purchased listing \"{Loc.GetString(listing.Name)}\" from {ToPrettyString(uid)}"); + $"{ToPrettyString(buyer):player} purchased listing \"{ListingLocalisationHelpers.GetLocalisedNameOrEntityName(listing, _prototypeManager)}\" from {ToPrettyString(uid)}"); listing.PurchaseAmount++; //track how many times something has been purchased _audio.PlayEntity(component.BuySuccessSound, msg.Session, uid); //cha-ching! diff --git a/Content.Shared/Store/ListingLocalisationHelpers.cs b/Content.Shared/Store/ListingLocalisationHelpers.cs new file mode 100644 index 00000000000..3ac75cd8010 --- /dev/null +++ b/Content.Shared/Store/ListingLocalisationHelpers.cs @@ -0,0 +1,42 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Store; + +public static class ListingLocalisationHelpers +{ + ///

+ /// ListingData's Name field can be either a localisation string or the actual entity's name. + /// This function gets a localised name from the localisation string if it exists, and if not, it gets the entity's name. + /// If neither a localised string exists, or an associated entity name, it will return the value of the "Name" field. + /// + public static string GetLocalisedNameOrEntityName(ListingData listingData, IPrototypeManager prototypeManager) + { + bool wasLocalised = Loc.TryGetString(listingData.Name, out string? listingName); + + if (!wasLocalised && listingData.ProductEntity != null) + { + var proto = prototypeManager.Index(listingData.ProductEntity); + listingName = proto.Name; + } + + return listingName ?? listingData.Name; + } + + /// + /// ListingData's Description field can be either a localisation string or the actual entity's description. + /// This function gets a localised description from the localisation string if it exists, and if not, it gets the entity's description. + /// If neither a localised string exists, or an associated entity description, it will return the value of the "Description" field. + /// + public static string GetLocalisedDescriptionOrEntityDescription(ListingData listingData, IPrototypeManager prototypeManager) + { + bool wasLocalised = Loc.TryGetString(listingData.Description, out string? listingDesc); + + if (!wasLocalised && listingData.ProductEntity != null) + { + var proto = prototypeManager.Index(listingData.ProductEntity); + listingDesc = proto.Description; + } + + return listingDesc ?? listingData.Description; + } +} From 4d2aa1a70a4226cc65399907484c68fdda9e5e5d Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 04:10:21 +0000 Subject: [PATCH 50/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f36805bd1d8..46d239e83ff 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Flareguy - changes: - - message: The Research Director's hardsuit now uses its older sprites. - type: Tweak - id: 5766 - time: '2024-01-22T01:52:32.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24377 - author: SonicHDC changes: - message: Added reinforced diagonal! @@ -3793,3 +3786,11 @@ id: 6265 time: '2024-03-31T03:21:18.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/22133 +- author: DrMelon + changes: + - message: Syndicate Uplinks now have a searchbar to help those dirty, rotten antagonists + find appropriate equipment more easily! + type: Tweak + id: 6266 + time: '2024-03-31T04:09:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24287 From 02273ca0e7a4091bac88e585ecca5253dd0e7fd7 Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Sat, 30 Mar 2024 23:29:47 -0500 Subject: [PATCH 51/83] Improved RCDs (#22799) * Initial radial menu prototyping for the RCD * Radial UI buttons can send messages to the server * Beginning to update RCDSystem * RCD building system in progress * Further updates * Added extra effects, RCDSystem now reads RCD prototype data * Replacing tiles is instant, multiple constructions are allowed, deconstruction is broken * Added extra functionality to RadialContainers plus documentation * Fixed localization of RCD UI strings * Menu opens near cursor, added basic RCD * Avoiding merge conflict * Implemented atomized construction / deconstruction rules * Increased RCD ammo base charges * Moved input context definition to content * Removed obsoleted code * Updates to system * Switch machine and computer frames for electrical cabling * Added construction ghosts * Fixed issue with keybind detection code * Fixed RCD construction ghost mispredications * Code clean up * Updated deconstruction effects * RCDs effects don't rotate * Code clean up * Balancing for ammo counts * Code clean up * Added missing localized strings * More clean up * Made directional window handling more robust * Added documentation to radial menus and made them no longer dependent on Content * Made radial containers more robust * Further robustness to the radial menu * The RCD submenu buttons are only shown when the destination layer has at least one children * Expanded upon deconstructing plus construction balance * Fixed line endings * Updated list of RCD deconstructable entities. Now needs a component to deconstruct instead of a tag * Bug fixes * Revert unnecessary change * Updated RCD strings * Fixed bug * More fixes * Deconstructed tiles/subflooring convert to lattice instead * Fixed failed tests (Linux doesn't like invalid spritespecifer paths) * Fixing merge conflict * Updated airlock assembly * Fixing merge conflict * Fixing merge conflict * More fixing... * Removed erroneous project file change * Fixed string handling issue * Trying to fix merge conflict * Still fixing merge conflicts * Balancing * Hidden RCD construction ghosts when in 'build' mode * Fixing merge conflict * Implemented requested changes (Part 1) * Added more requested changes * Fix for failed test. Removed sussy null suppression * Made requested changes - custom construction ghost system was replaced * Fixing merge conflict * Fixed merge conflict * Fixed bug in RCD construction ghost validation * Fixing merge conflict * Merge conflict fixed * Made required update * Removed lingering RCD deconstruct tag * Fixing merge conflict * Merge conflict fixed * Made requested changes * Bug fixes and balancing * Made string names more consistent * Can no longer stack catwalks --- Content.Client/Input/ContentContexts.cs | 3 + Content.Client/RCD/AlignRCDConstruction.cs | 122 ++++ .../RCD/RCDConstructionGhostSystem.cs | 78 ++ Content.Client/RCD/RCDMenu.xaml | 47 ++ Content.Client/RCD/RCDMenu.xaml.cs | 137 ++++ .../RCD/RCDMenuBoundUserInterface.cs | 49 ++ Content.Client/Stylesheets/StyleNano.cs | 47 +- .../UserInterface/Controls/RadialContainer.cs | 105 +++ .../UserInterface/Controls/RadialMenu.cs | 255 +++++++ .../Charges/Systems/SharedChargesSystem.cs | 22 + .../Components/ComputerBoardComponent.cs | 4 +- .../RCD/Components/RCDAmmoComponent.cs | 4 +- Content.Shared/RCD/Components/RCDComponent.cs | 71 +- .../Components/RCDDeconstructibleComponent.cs | 34 + Content.Shared/RCD/RCDEvents.cs | 34 + Content.Shared/RCD/RCDPrototype.cs | 144 ++++ Content.Shared/RCD/Systems/RCDSystem.cs | 682 +++++++++++++----- .../en-US/rcd/components/rcd-component.ftl | 68 +- Resources/Locale/en-US/ui/general.ftl | 3 + .../Catalog/Fills/Crates/engineering.yml | 6 +- .../Entities/Effects/chemistry_effects.yml | 7 +- Resources/Prototypes/Entities/Effects/rcd.yml | 107 ++- .../Entities/Markers/construction_ghost.yml | 2 +- .../Entities/Objects/Tools/tools.yml | 71 +- .../Structures/Doors/Airlocks/airlocks.yml | 44 +- .../Doors/Airlocks/base_assembly.yml | 4 + .../Doors/Airlocks/base_structureairlocks.yml | 54 +- .../Structures/Doors/Airlocks/external.yml | 2 +- .../Structures/Doors/Airlocks/shuttle.yml | 2 +- .../Structures/Doors/Firelocks/firelock.yml | 4 + .../Structures/Doors/Firelocks/frame.yml | 4 + .../Doors/MaterialDoors/material_doors.yml | 4 + .../Doors/SecretDoor/secret_door.yml | 8 + .../Structures/Doors/Windoors/assembly.yml | 4 + .../Doors/Windoors/base_structurewindoors.yml | 6 +- .../Structures/Lighting/base_lighting.yml | 6 +- .../Structures/Power/cable_terminal.yml | 4 + .../Entities/Structures/Power/cables.yml | 4 + .../Entities/Structures/Walls/fence_metal.yml | 7 +- .../Entities/Structures/Walls/fence_wood.yml | 5 +- .../Entities/Structures/Walls/grille.yml | 14 +- .../Entities/Structures/Walls/railing.yml | 18 +- .../Entities/Structures/Walls/walls.yml | 58 +- .../Entities/Structures/Windows/mining.yml | 2 +- .../Entities/Structures/Windows/plasma.yml | 4 +- .../Structures/Windows/reinforced.yml | 8 + .../Entities/Structures/Windows/rplasma.yml | 4 +- .../Entities/Structures/Windows/ruranium.yml | 2 +- .../Entities/Structures/Windows/shuttle.yml | 2 +- .../Entities/Structures/Windows/uranium.yml | 2 +- .../Entities/Structures/Windows/window.yml | 25 +- .../Entities/Structures/catwalk.yml | 4 + Resources/Prototypes/RCD/rcd.yml | 294 ++++++++ Resources/Prototypes/tags.yml | 3 - .../Textures/Effects/rcd.rsi/construct.png | Bin 3612 -> 0 bytes .../Textures/Effects/rcd.rsi/construct0.png | Bin 0 -> 1095 bytes .../Textures/Effects/rcd.rsi/construct1.png | Bin 0 -> 3663 bytes .../Textures/Effects/rcd.rsi/construct2.png | Bin 0 -> 3663 bytes .../Textures/Effects/rcd.rsi/construct3.png | Bin 0 -> 3663 bytes .../Textures/Effects/rcd.rsi/construct4.png | Bin 0 -> 6200 bytes .../Textures/Effects/rcd.rsi/deconstruct2.png | Bin 0 -> 4964 bytes .../Textures/Effects/rcd.rsi/deconstruct4.png | Bin 0 -> 8158 bytes .../Textures/Effects/rcd.rsi/deconstruct6.png | Bin 0 -> 8158 bytes .../Textures/Effects/rcd.rsi/deconstruct8.png | Bin 0 -> 7941 bytes .../Effects/rcd.rsi/deconstructPreview.png | Bin 0 -> 47364 bytes Resources/Textures/Effects/rcd.rsi/meta.json | 411 ++++++++++- .../Textures/Interface/Radial/RCD/airlock.png | Bin 0 -> 710 bytes .../Interface/Radial/RCD/airlocks.png | Bin 0 -> 776 bytes .../Interface/Radial/RCD/bulb_light.png | Bin 0 -> 283 bytes .../Interface/Radial/RCD/cable_terminal.png | Bin 0 -> 646 bytes .../Textures/Interface/Radial/RCD/catwalk.png | Bin 0 -> 404 bytes .../Interface/Radial/RCD/computer_frame.png | Bin 0 -> 467 bytes .../Radial/RCD/computers_and_frames.png | Bin 0 -> 775 bytes .../Interface/Radial/RCD/deconstruct.png | Bin 0 -> 1200 bytes .../Interface/Radial/RCD/directional.png | Bin 0 -> 312 bytes .../Radial/RCD/directional_reinforced.png | Bin 0 -> 296 bytes .../Interface/Radial/RCD/firelock.png | Bin 0 -> 637 bytes .../Interface/Radial/RCD/glass_airlock.png | Bin 0 -> 698 bytes .../Textures/Interface/Radial/RCD/grille.png | Bin 0 -> 223 bytes .../Textures/Interface/Radial/RCD/hv_coil.png | Bin 0 -> 856 bytes .../Interface/Radial/RCD/lighting.png | Bin 0 -> 901 bytes .../Textures/Interface/Radial/RCD/lv_coil.png | Bin 0 -> 850 bytes .../Interface/Radial/RCD/machine_frame.png | Bin 0 -> 655 bytes .../Interface/Radial/RCD/metal_tile.png | Bin 0 -> 297 bytes .../Interface/Radial/RCD/multicoil.png | Bin 0 -> 976 bytes .../Textures/Interface/Radial/RCD/mv_coil.png | Bin 0 -> 833 bytes .../Textures/Interface/Radial/RCD/plating.png | Bin 0 -> 436 bytes .../Interface/Radial/RCD/reinforced_wall.png | Bin 0 -> 2312 bytes .../Interface/Radial/RCD/solid_wall.png | Bin 0 -> 448 bytes .../Interface/Radial/RCD/tube_light.png | Bin 0 -> 266 bytes .../Radial/RCD/walls_and_flooring.png | Bin 0 -> 431 bytes .../Textures/Interface/Radial/RCD/window.png | Bin 0 -> 739 bytes .../Radial/RCD/window_reinforced.png | Bin 0 -> 1175 bytes .../Radial/RCD/windows_and_grilles.png | Bin 0 -> 1205 bytes .../Textures/Interface/Radial/back_hover.png | Bin 0 -> 495 bytes .../Textures/Interface/Radial/back_normal.png | Bin 0 -> 525 bytes .../Interface/Radial/button_hover.png | Bin 0 -> 211 bytes .../Interface/Radial/button_normal.png | Bin 0 -> 186 bytes .../Textures/Interface/Radial/close_hover.png | Bin 0 -> 389 bytes .../Interface/Radial/close_normal.png | Bin 0 -> 391 bytes 100 files changed, 2750 insertions(+), 365 deletions(-) create mode 100644 Content.Client/RCD/AlignRCDConstruction.cs create mode 100644 Content.Client/RCD/RCDConstructionGhostSystem.cs create mode 100644 Content.Client/RCD/RCDMenu.xaml create mode 100644 Content.Client/RCD/RCDMenu.xaml.cs create mode 100644 Content.Client/RCD/RCDMenuBoundUserInterface.cs create mode 100644 Content.Client/UserInterface/Controls/RadialContainer.cs create mode 100644 Content.Client/UserInterface/Controls/RadialMenu.cs create mode 100644 Content.Shared/RCD/Components/RCDDeconstructibleComponent.cs create mode 100644 Content.Shared/RCD/RCDEvents.cs create mode 100644 Content.Shared/RCD/RCDPrototype.cs create mode 100644 Resources/Locale/en-US/ui/general.ftl create mode 100644 Resources/Prototypes/RCD/rcd.yml delete mode 100644 Resources/Textures/Effects/rcd.rsi/construct.png create mode 100644 Resources/Textures/Effects/rcd.rsi/construct0.png create mode 100644 Resources/Textures/Effects/rcd.rsi/construct1.png create mode 100644 Resources/Textures/Effects/rcd.rsi/construct2.png create mode 100644 Resources/Textures/Effects/rcd.rsi/construct3.png create mode 100644 Resources/Textures/Effects/rcd.rsi/construct4.png create mode 100644 Resources/Textures/Effects/rcd.rsi/deconstruct2.png create mode 100644 Resources/Textures/Effects/rcd.rsi/deconstruct4.png create mode 100644 Resources/Textures/Effects/rcd.rsi/deconstruct6.png create mode 100644 Resources/Textures/Effects/rcd.rsi/deconstruct8.png create mode 100644 Resources/Textures/Effects/rcd.rsi/deconstructPreview.png create mode 100644 Resources/Textures/Interface/Radial/RCD/airlock.png create mode 100644 Resources/Textures/Interface/Radial/RCD/airlocks.png create mode 100644 Resources/Textures/Interface/Radial/RCD/bulb_light.png create mode 100644 Resources/Textures/Interface/Radial/RCD/cable_terminal.png create mode 100644 Resources/Textures/Interface/Radial/RCD/catwalk.png create mode 100644 Resources/Textures/Interface/Radial/RCD/computer_frame.png create mode 100644 Resources/Textures/Interface/Radial/RCD/computers_and_frames.png create mode 100644 Resources/Textures/Interface/Radial/RCD/deconstruct.png create mode 100644 Resources/Textures/Interface/Radial/RCD/directional.png create mode 100644 Resources/Textures/Interface/Radial/RCD/directional_reinforced.png create mode 100644 Resources/Textures/Interface/Radial/RCD/firelock.png create mode 100644 Resources/Textures/Interface/Radial/RCD/glass_airlock.png create mode 100644 Resources/Textures/Interface/Radial/RCD/grille.png create mode 100644 Resources/Textures/Interface/Radial/RCD/hv_coil.png create mode 100644 Resources/Textures/Interface/Radial/RCD/lighting.png create mode 100644 Resources/Textures/Interface/Radial/RCD/lv_coil.png create mode 100644 Resources/Textures/Interface/Radial/RCD/machine_frame.png create mode 100644 Resources/Textures/Interface/Radial/RCD/metal_tile.png create mode 100644 Resources/Textures/Interface/Radial/RCD/multicoil.png create mode 100644 Resources/Textures/Interface/Radial/RCD/mv_coil.png create mode 100644 Resources/Textures/Interface/Radial/RCD/plating.png create mode 100644 Resources/Textures/Interface/Radial/RCD/reinforced_wall.png create mode 100644 Resources/Textures/Interface/Radial/RCD/solid_wall.png create mode 100644 Resources/Textures/Interface/Radial/RCD/tube_light.png create mode 100644 Resources/Textures/Interface/Radial/RCD/walls_and_flooring.png create mode 100644 Resources/Textures/Interface/Radial/RCD/window.png create mode 100644 Resources/Textures/Interface/Radial/RCD/window_reinforced.png create mode 100644 Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png create mode 100644 Resources/Textures/Interface/Radial/back_hover.png create mode 100644 Resources/Textures/Interface/Radial/back_normal.png create mode 100644 Resources/Textures/Interface/Radial/button_hover.png create mode 100644 Resources/Textures/Interface/Radial/button_normal.png create mode 100644 Resources/Textures/Interface/Radial/close_hover.png create mode 100644 Resources/Textures/Interface/Radial/close_normal.png diff --git a/Content.Client/Input/ContentContexts.cs b/Content.Client/Input/ContentContexts.cs index 589de6d6a78..2e888b3df98 100644 --- a/Content.Client/Input/ContentContexts.cs +++ b/Content.Client/Input/ContentContexts.cs @@ -45,6 +45,9 @@ public static void SetupContexts(IInputContextContainer contexts) // Not in engine because the engine doesn't understand what a flipped object is common.AddFunction(ContentKeyFunctions.EditorFlipObject); + // Not in engine so that the RCD can rotate objects + common.AddFunction(EngineKeyFunctions.EditorRotateObject); + var human = contexts.GetContext("human"); human.AddFunction(EngineKeyFunctions.MoveUp); human.AddFunction(EngineKeyFunctions.MoveDown); diff --git a/Content.Client/RCD/AlignRCDConstruction.cs b/Content.Client/RCD/AlignRCDConstruction.cs new file mode 100644 index 00000000000..da7b22c91a8 --- /dev/null +++ b/Content.Client/RCD/AlignRCDConstruction.cs @@ -0,0 +1,122 @@ +using System.Numerics; +using Content.Client.Gameplay; +using Content.Shared.Hands.Components; +using Content.Shared.Interaction; +using Content.Shared.RCD.Components; +using Content.Shared.RCD.Systems; +using Robust.Client.Placement; +using Robust.Client.Player; +using Robust.Client.State; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; + +namespace Content.Client.RCD; + +public sealed class AlignRCDConstruction : PlacementMode +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly RCDSystem _rcdSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly IStateManager _stateManager = default!; + + private const float SearchBoxSize = 2f; + private const float PlaceColorBaseAlpha = 0.5f; + + private EntityCoordinates _unalignedMouseCoords = default; + + /// + /// This placement mode is not on the engine because it is content specific (i.e., for the RCD) + /// + public AlignRCDConstruction(PlacementManager pMan) : base(pMan) + { + var dependencies = IoCManager.Instance!; + _entityManager = dependencies.Resolve(); + _mapManager = dependencies.Resolve(); + _playerManager = dependencies.Resolve(); + _stateManager = dependencies.Resolve(); + + _mapSystem = _entityManager.System(); + _rcdSystem = _entityManager.System(); + _transformSystem = _entityManager.System(); + + ValidPlaceColor = ValidPlaceColor.WithAlpha(PlaceColorBaseAlpha); + } + + public override void AlignPlacementMode(ScreenCoordinates mouseScreen) + { + _unalignedMouseCoords = ScreenToCursorGrid(mouseScreen); + MouseCoords = _unalignedMouseCoords.AlignWithClosestGridTile(SearchBoxSize, _entityManager, _mapManager); + + var gridId = MouseCoords.GetGridUid(_entityManager); + + if (!_entityManager.TryGetComponent(gridId, out var mapGrid)) + return; + + CurrentTile = _mapSystem.GetTileRef(gridId.Value, mapGrid, MouseCoords); + + float tileSize = mapGrid.TileSize; + GridDistancing = tileSize; + + if (pManager.CurrentPermission!.IsTile) + { + MouseCoords = new EntityCoordinates(MouseCoords.EntityId, new Vector2(CurrentTile.X + tileSize / 2, + CurrentTile.Y + tileSize / 2)); + } + else + { + MouseCoords = new EntityCoordinates(MouseCoords.EntityId, new Vector2(CurrentTile.X + tileSize / 2 + pManager.PlacementOffset.X, + CurrentTile.Y + tileSize / 2 + pManager.PlacementOffset.Y)); + } + } + + public override bool IsValidPosition(EntityCoordinates position) + { + var player = _playerManager.LocalSession?.AttachedEntity; + + // If the destination is out of interaction range, set the placer alpha to zero + if (!_entityManager.TryGetComponent(player, out var xform)) + return false; + + if (!xform.Coordinates.InRange(_entityManager, _transformSystem, position, SharedInteractionSystem.InteractionRange)) + { + InvalidPlaceColor = InvalidPlaceColor.WithAlpha(0); + return false; + } + + // Otherwise restore the alpha value + else + { + InvalidPlaceColor = InvalidPlaceColor.WithAlpha(PlaceColorBaseAlpha); + } + + // Determine if player is carrying an RCD in their active hand + if (!_entityManager.TryGetComponent(player, out var hands)) + return false; + + var heldEntity = hands.ActiveHand?.HeldEntity; + + if (!_entityManager.TryGetComponent(heldEntity, out var rcd)) + return false; + + // Retrieve the map grid data for the position + if (!_rcdSystem.TryGetMapGridData(position, out var mapGridData)) + return false; + + // Determine if the user is hovering over a target + var currentState = _stateManager.CurrentState; + + if (currentState is not GameplayStateBase screen) + return false; + + var target = screen.GetClickedEntity(_unalignedMouseCoords.ToMap(_entityManager, _transformSystem)); + + // Determine if the RCD operation is valid or not + if (!_rcdSystem.IsRCDOperationStillValid(heldEntity.Value, rcd, mapGridData.Value, target, player.Value, false)) + return false; + + return true; + } +} diff --git a/Content.Client/RCD/RCDConstructionGhostSystem.cs b/Content.Client/RCD/RCDConstructionGhostSystem.cs new file mode 100644 index 00000000000..792916b8922 --- /dev/null +++ b/Content.Client/RCD/RCDConstructionGhostSystem.cs @@ -0,0 +1,78 @@ +using Content.Shared.Hands.Components; +using Content.Shared.Interaction; +using Content.Shared.RCD; +using Content.Shared.RCD.Components; +using Content.Shared.RCD.Systems; +using Robust.Client.Placement; +using Robust.Client.Player; +using Robust.Shared.Enums; + +namespace Content.Client.RCD; + +public sealed class RCDConstructionGhostSystem : EntitySystem +{ + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly RCDSystem _rcdSystem = default!; + [Dependency] private readonly IPlacementManager _placementManager = default!; + + private string _placementMode = typeof(AlignRCDConstruction).Name; + private Direction _placementDirection = default; + + public override void Update(float frameTime) + { + base.Update(frameTime); + + // Get current placer data + var placerEntity = _placementManager.CurrentPermission?.MobUid; + var placerProto = _placementManager.CurrentPermission?.EntityType; + var placerIsRCD = HasComp(placerEntity); + + // Exit if erasing or the current placer is not an RCD (build mode is active) + if (_placementManager.Eraser || (placerEntity != null && !placerIsRCD)) + return; + + // Determine if player is carrying an RCD in their active hand + var player = _playerManager.LocalSession?.AttachedEntity; + + if (!TryComp(player, out var hands)) + return; + + var heldEntity = hands.ActiveHand?.HeldEntity; + + if (!TryComp(heldEntity, out var rcd)) + { + // If the player was holding an RCD, but is no longer, cancel placement + if (placerIsRCD) + _placementManager.Clear(); + + return; + } + + // Update the direction the RCD prototype based on the placer direction + if (_placementDirection != _placementManager.Direction) + { + _placementDirection = _placementManager.Direction; + RaiseNetworkEvent(new RCDConstructionGhostRotationEvent(GetNetEntity(heldEntity.Value), _placementDirection)); + } + + // If the placer has not changed, exit + _rcdSystem.UpdateCachedPrototype(heldEntity.Value, rcd); + + if (heldEntity == placerEntity && rcd.CachedPrototype.Prototype == placerProto) + return; + + // Create a new placer + var newObjInfo = new PlacementInformation + { + MobUid = heldEntity.Value, + PlacementOption = _placementMode, + EntityType = rcd.CachedPrototype.Prototype, + Range = (int) Math.Ceiling(SharedInteractionSystem.InteractionRange), + IsTile = (rcd.CachedPrototype.Mode == RcdMode.ConstructTile), + UseEditorContext = false, + }; + + _placementManager.Clear(); + _placementManager.BeginPlacing(newObjInfo); + } +} diff --git a/Content.Client/RCD/RCDMenu.xaml b/Content.Client/RCD/RCDMenu.xaml new file mode 100644 index 00000000000..b3d5367a5fd --- /dev/null +++ b/Content.Client/RCD/RCDMenu.xaml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/RCD/RCDMenu.xaml.cs b/Content.Client/RCD/RCDMenu.xaml.cs new file mode 100644 index 00000000000..8679e789dc7 --- /dev/null +++ b/Content.Client/RCD/RCDMenu.xaml.cs @@ -0,0 +1,137 @@ +using Content.Client.UserInterface.Controls; +using Content.Shared.RCD; +using Content.Shared.RCD.Components; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; +using System.Numerics; + +namespace Content.Client.RCD; + +[GenerateTypedNameReferences] +public sealed partial class RCDMenu : RadialMenu +{ + [Dependency] private readonly EntityManager _entManager = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + + private readonly SpriteSystem _spriteSystem; + + public event Action>? SendRCDSystemMessageAction; + + public RCDMenu(EntityUid owner, RCDMenuBoundUserInterface bui) + { + IoCManager.InjectDependencies(this); + RobustXamlLoader.Load(this); + + _spriteSystem = _entManager.System(); + + // Find the main radial container + var main = FindControl("Main"); + + if (main == null) + return; + + // Populate secondary radial containers + if (!_entManager.TryGetComponent(owner, out var rcd)) + return; + + foreach (var protoId in rcd.AvailablePrototypes) + { + if (!_protoManager.TryIndex(protoId, out var proto)) + continue; + + if (proto.Mode == RcdMode.Invalid) + continue; + + var parent = FindControl(proto.Category); + + if (parent == null) + continue; + + var name = Loc.GetString(proto.SetName); + name = char.ToUpper(name[0]) + name.Remove(0, 1); + + var button = new RCDMenuButton() + { + StyleClasses = { "RadialMenuButton" }, + SetSize = new Vector2(64f, 64f), + ToolTip = name, + ProtoId = protoId, + }; + + if (proto.Sprite != null) + { + var tex = new TextureRect() + { + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Texture = _spriteSystem.Frame0(proto.Sprite), + TextureScale = new Vector2(2f, 2f), + }; + + button.AddChild(tex); + } + + parent.AddChild(button); + + // Ensure that the button that transitions the menu to the associated category layer + // is visible in the main radial container (as these all start with Visible = false) + foreach (var child in main.Children) + { + var castChild = child as RadialMenuTextureButton; + + if (castChild is not RadialMenuTextureButton) + continue; + + if (castChild.TargetLayer == proto.Category) + { + castChild.Visible = true; + break; + } + } + } + + // Set up menu actions + foreach (var child in Children) + AddRCDMenuButtonOnClickActions(child); + + OnChildAdded += AddRCDMenuButtonOnClickActions; + + SendRCDSystemMessageAction += bui.SendRCDSystemMessage; + } + + private void AddRCDMenuButtonOnClickActions(Control control) + { + var radialContainer = control as RadialContainer; + + if (radialContainer == null) + return; + + foreach (var child in radialContainer.Children) + { + var castChild = child as RCDMenuButton; + + if (castChild == null) + continue; + + castChild.OnButtonUp += _ => + { + SendRCDSystemMessageAction?.Invoke(castChild.ProtoId); + Close(); + }; + } + } +} + +public sealed class RCDMenuButton : RadialMenuTextureButton +{ + public ProtoId ProtoId { get; set; } + + public RCDMenuButton() + { + + } +} diff --git a/Content.Client/RCD/RCDMenuBoundUserInterface.cs b/Content.Client/RCD/RCDMenuBoundUserInterface.cs new file mode 100644 index 00000000000..a37dbcecf8c --- /dev/null +++ b/Content.Client/RCD/RCDMenuBoundUserInterface.cs @@ -0,0 +1,49 @@ +using Content.Shared.RCD; +using Content.Shared.RCD.Components; +using JetBrains.Annotations; +using Robust.Client.Graphics; +using Robust.Client.Input; +using Robust.Shared.Prototypes; + +namespace Content.Client.RCD; + +[UsedImplicitly] +public sealed class RCDMenuBoundUserInterface : BoundUserInterface +{ + [Dependency] private readonly IClyde _displayManager = default!; + [Dependency] private readonly IInputManager _inputManager = default!; + + private RCDMenu? _menu; + + public RCDMenuBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + IoCManager.InjectDependencies(this); + } + + protected override void Open() + { + base.Open(); + + _menu = new(Owner, this); + _menu.OnClose += Close; + + // Open the menu, centered on the mouse + var vpSize = _displayManager.ScreenSize; + _menu.OpenCenteredAt(_inputManager.MouseScreenPosition.Position / vpSize); + } + + public void SendRCDSystemMessage(ProtoId protoId) + { + // A predicted message cannot be used here as the RCD UI is closed immediately + // after this message is sent, which will stop the server from receiving it + SendMessage(new RCDSystemMessage(protoId)); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) return; + + _menu?.Dispose(); + } +} diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index 426af1616ec..2c7a1873a36 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -290,7 +290,7 @@ public StyleNano(IResourceCache resCache) : base(resCache) var buttonTex = resCache.GetTexture("/Textures/Interface/Nano/button.svg.96dpi.png"); var topButtonBase = new StyleBoxTexture { - Texture = buttonTex, + Texture = buttonTex, }; topButtonBase.SetPatchMargin(StyleBox.Margin.All, 10); topButtonBase.SetPadding(StyleBox.Margin.All, 0); @@ -298,19 +298,19 @@ public StyleNano(IResourceCache resCache) : base(resCache) var topButtonOpenRight = new StyleBoxTexture(topButtonBase) { - Texture = new AtlasTexture(buttonTex, UIBox2.FromDimensions(new Vector2(0, 0), new Vector2(14, 24))), + Texture = new AtlasTexture(buttonTex, UIBox2.FromDimensions(new Vector2(0, 0), new Vector2(14, 24))), }; topButtonOpenRight.SetPatchMargin(StyleBox.Margin.Right, 0); var topButtonOpenLeft = new StyleBoxTexture(topButtonBase) { - Texture = new AtlasTexture(buttonTex, UIBox2.FromDimensions(new Vector2(10, 0), new Vector2(14, 24))), + Texture = new AtlasTexture(buttonTex, UIBox2.FromDimensions(new Vector2(10, 0), new Vector2(14, 24))), }; topButtonOpenLeft.SetPatchMargin(StyleBox.Margin.Left, 0); var topButtonSquare = new StyleBoxTexture(topButtonBase) { - Texture = new AtlasTexture(buttonTex, UIBox2.FromDimensions(new Vector2(10, 0), new Vector2(3, 24))), + Texture = new AtlasTexture(buttonTex, UIBox2.FromDimensions(new Vector2(10, 0), new Vector2(3, 24))), }; topButtonSquare.SetPatchMargin(StyleBox.Margin.Horizontal, 0); @@ -368,9 +368,9 @@ public StyleNano(IResourceCache resCache) : base(resCache) }; tabContainerPanel.SetPatchMargin(StyleBox.Margin.All, 2); - var tabContainerBoxActive = new StyleBoxFlat {BackgroundColor = new Color(64, 64, 64)}; + var tabContainerBoxActive = new StyleBoxFlat { BackgroundColor = new Color(64, 64, 64) }; tabContainerBoxActive.SetContentMarginOverride(StyleBox.Margin.Horizontal, 5); - var tabContainerBoxInactive = new StyleBoxFlat {BackgroundColor = new Color(32, 32, 32)}; + var tabContainerBoxInactive = new StyleBoxFlat { BackgroundColor = new Color(32, 32, 32) }; tabContainerBoxInactive.SetContentMarginOverride(StyleBox.Margin.Horizontal, 5); var progressBarBackground = new StyleBoxFlat @@ -409,21 +409,21 @@ public StyleNano(IResourceCache resCache) : base(resCache) // Placeholder var placeholderTexture = resCache.GetTexture("/Textures/Interface/Nano/placeholder.png"); - var placeholder = new StyleBoxTexture {Texture = placeholderTexture}; + var placeholder = new StyleBoxTexture { Texture = placeholderTexture }; placeholder.SetPatchMargin(StyleBox.Margin.All, 19); placeholder.SetExpandMargin(StyleBox.Margin.All, -5); placeholder.Mode = StyleBoxTexture.StretchMode.Tile; - var itemListBackgroundSelected = new StyleBoxFlat {BackgroundColor = new Color(75, 75, 86)}; + var itemListBackgroundSelected = new StyleBoxFlat { BackgroundColor = new Color(75, 75, 86) }; itemListBackgroundSelected.SetContentMarginOverride(StyleBox.Margin.Vertical, 2); itemListBackgroundSelected.SetContentMarginOverride(StyleBox.Margin.Horizontal, 4); - var itemListItemBackgroundDisabled = new StyleBoxFlat {BackgroundColor = new Color(10, 10, 12)}; + var itemListItemBackgroundDisabled = new StyleBoxFlat { BackgroundColor = new Color(10, 10, 12) }; itemListItemBackgroundDisabled.SetContentMarginOverride(StyleBox.Margin.Vertical, 2); itemListItemBackgroundDisabled.SetContentMarginOverride(StyleBox.Margin.Horizontal, 4); - var itemListItemBackground = new StyleBoxFlat {BackgroundColor = new Color(55, 55, 68)}; + var itemListItemBackground = new StyleBoxFlat { BackgroundColor = new Color(55, 55, 68) }; itemListItemBackground.SetContentMarginOverride(StyleBox.Margin.Vertical, 2); itemListItemBackground.SetContentMarginOverride(StyleBox.Margin.Horizontal, 4); - var itemListItemBackgroundTransparent = new StyleBoxFlat {BackgroundColor = Color.Transparent}; + var itemListItemBackgroundTransparent = new StyleBoxFlat { BackgroundColor = Color.Transparent }; itemListItemBackgroundTransparent.SetContentMarginOverride(StyleBox.Margin.Vertical, 2); itemListItemBackgroundTransparent.SetContentMarginOverride(StyleBox.Margin.Horizontal, 4); @@ -489,9 +489,9 @@ public StyleNano(IResourceCache resCache) : base(resCache) sliderForeBox.SetPatchMargin(StyleBox.Margin.All, 12); sliderGrabBox.SetPatchMargin(StyleBox.Margin.All, 12); - var sliderFillGreen = new StyleBoxTexture(sliderFillBox) {Modulate = Color.LimeGreen}; - var sliderFillRed = new StyleBoxTexture(sliderFillBox) {Modulate = Color.Red}; - var sliderFillBlue = new StyleBoxTexture(sliderFillBox) {Modulate = Color.Blue}; + var sliderFillGreen = new StyleBoxTexture(sliderFillBox) { Modulate = Color.LimeGreen }; + var sliderFillRed = new StyleBoxTexture(sliderFillBox) { Modulate = Color.Red }; + var sliderFillBlue = new StyleBoxTexture(sliderFillBox) { Modulate = Color.Blue }; var sliderFillWhite = new StyleBoxTexture(sliderFillBox) { Modulate = Color.White }; var boxFont13 = resCache.GetFont("/Fonts/Boxfont-round/Boxfont Round.ttf", 13); @@ -1468,6 +1468,25 @@ public StyleNano(IResourceCache resCache) : base(resCache) Element
[DataField("charges"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public int Charges = 5; + public int Charges = 30; } - -// TODO: state??? check if it desyncs diff --git a/Content.Shared/RCD/Components/RCDComponent.cs b/Content.Shared/RCD/Components/RCDComponent.cs index 8e1032884aa..39bb6fd3e9f 100644 --- a/Content.Shared/RCD/Components/RCDComponent.cs +++ b/Content.Shared/RCD/Components/RCDComponent.cs @@ -1,20 +1,11 @@ -using Content.Shared.Maps; using Content.Shared.RCD.Systems; using Robust.Shared.Audio; using Robust.Shared.GameStates; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Physics; +using Robust.Shared.Prototypes; namespace Content.Shared.RCD.Components; -public enum RcdMode : byte -{ - Floors, - Walls, - Airlock, - Deconstruct -} - /// /// Main component for the RCD /// Optionally uses LimitedChargesComponent. @@ -25,27 +16,57 @@ public enum RcdMode : byte public sealed partial class RCDComponent : Component { /// - /// Time taken to do an action like placing a wall + /// List of RCD prototypes that the device comes loaded with /// - [DataField("delay"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float Delay = 2f; + [DataField, AutoNetworkedField] + public HashSet> AvailablePrototypes { get; set; } = new(); - [DataField("swapModeSound")] - public SoundSpecifier SwapModeSound = new SoundPathSpecifier("/Audio/Items/genhit.ogg"); + /// + /// Sound that plays when a RCD operation successfully completes + /// + [DataField] + public SoundSpecifier SuccessSound { get; set; } = new SoundPathSpecifier("/Audio/Items/deconstruct.ogg"); - [DataField("successSound")] - public SoundSpecifier SuccessSound = new SoundPathSpecifier("/Audio/Items/deconstruct.ogg"); + /// + /// The ProtoId of the currently selected RCD prototype + /// + [DataField, AutoNetworkedField] + public ProtoId ProtoId { get; set; } = "Invalid"; /// - /// What mode are we on? Can be floors, walls, airlock, deconstruct. + /// A cached copy of currently selected RCD prototype /// - [DataField("mode"), AutoNetworkedField] - public RcdMode Mode = RcdMode.Floors; + /// + /// If the ProtoId is changed, make sure to update the CachedPrototype as well + /// + [ViewVariables(VVAccess.ReadOnly)] + public RCDPrototype CachedPrototype { get; set; } = default!; + + /// + /// The direction constructed entities will face upon spawning + /// + [DataField, AutoNetworkedField] + public Direction ConstructionDirection + { + get + { + return _constructionDirection; + } + set + { + _constructionDirection = value; + ConstructionTransform = new Transform(new(), _constructionDirection.ToAngle()); + } + } + + private Direction _constructionDirection = Direction.South; /// - /// ID of the floor to create when using the floor mode. + /// Returns a rotated transform based on the specified ConstructionDirection /// - [DataField("floor", customTypeSerializer: typeof(PrototypeIdSerializer))] - [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public string Floor = "FloorSteel"; + /// + /// Contains no position data + /// + [ViewVariables(VVAccess.ReadOnly)] + public Transform ConstructionTransform { get; private set; } = default!; } diff --git a/Content.Shared/RCD/Components/RCDDeconstructibleComponent.cs b/Content.Shared/RCD/Components/RCDDeconstructibleComponent.cs new file mode 100644 index 00000000000..0ddc6897f05 --- /dev/null +++ b/Content.Shared/RCD/Components/RCDDeconstructibleComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.RCD.Systems; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.RCD.Components; + +[RegisterComponent, NetworkedComponent] +[Access(typeof(RCDSystem))] +public sealed partial class RCDDeconstructableComponent : Component +{ + /// + /// Number of charges consumed when the deconstruction is completed + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int Cost = 1; + + /// + /// The length of the deconstruction + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Delay = 1f; + + /// + /// The visual effect that plays during deconstruction + /// + [DataField("fx"), ViewVariables(VVAccess.ReadWrite)] + public EntProtoId? Effect = null; + + /// + /// Toggles whether this entity is deconstructable or not + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool Deconstructable = true; +} diff --git a/Content.Shared/RCD/RCDEvents.cs b/Content.Shared/RCD/RCDEvents.cs new file mode 100644 index 00000000000..a15a010277b --- /dev/null +++ b/Content.Shared/RCD/RCDEvents.cs @@ -0,0 +1,34 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.RCD; + +[Serializable, NetSerializable] +public sealed class RCDSystemMessage : BoundUserInterfaceMessage +{ + public ProtoId ProtoId; + + public RCDSystemMessage(ProtoId protoId) + { + ProtoId = protoId; + } +} + +[Serializable, NetSerializable] +public sealed class RCDConstructionGhostRotationEvent : EntityEventArgs +{ + public readonly NetEntity NetEntity; + public readonly Direction Direction; + + public RCDConstructionGhostRotationEvent(NetEntity netEntity, Direction direction) + { + NetEntity = netEntity; + Direction = direction; + } +} + +[Serializable, NetSerializable] +public enum RcdUiKey : byte +{ + Key +} diff --git a/Content.Shared/RCD/RCDPrototype.cs b/Content.Shared/RCD/RCDPrototype.cs new file mode 100644 index 00000000000..1e80abfb723 --- /dev/null +++ b/Content.Shared/RCD/RCDPrototype.cs @@ -0,0 +1,144 @@ +using Content.Shared.Physics; +using Robust.Shared.Physics.Collision.Shapes; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.RCD; + +/// +/// Contains the parameters for a RCD construction / operation +/// +[Prototype("rcd")] +public sealed class RCDPrototype : IPrototype +{ + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// The RCD mode associated with the operation + /// + [DataField(required: true), ViewVariables(VVAccess.ReadOnly)] + public RcdMode Mode { get; private set; } = RcdMode.Invalid; + + /// + /// The name associated with the prototype + /// + [DataField("name"), ViewVariables(VVAccess.ReadOnly)] + public string SetName { get; private set; } = "Unknown"; + + /// + /// The name of the radial container that this prototype will be listed under on the RCD menu + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public string Category { get; private set; } = "Undefined"; + + /// + /// Texture path for this prototypes menu icon + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public SpriteSpecifier? Sprite { get; private set; } = null; + + /// + /// The entity prototype that will be constructed (mode dependent) + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public string? Prototype { get; private set; } = string.Empty; + + /// + /// Number of charges consumed when the operation is completed + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public int Cost { get; private set; } = 1; + + /// + /// The length of the operation + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public float Delay { get; private set; } = 1f; + + /// + /// The visual effect that plays during this operation + /// + [DataField("fx"), ViewVariables(VVAccess.ReadOnly)] + public EntProtoId? Effect { get; private set; } = null; + + /// + /// A list of rules that govern where the entity prototype can be contructed + /// + [DataField("rules"), ViewVariables(VVAccess.ReadOnly)] + public HashSet ConstructionRules { get; private set; } = new(); + + /// + /// The collision mask used for determining whether the entity prototype will fit into a target tile + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public CollisionGroup CollisionMask { get; private set; } = CollisionGroup.None; + + /// + /// Specifies a set of custom collision bounds for determining whether the entity prototype will fit into a target tile + /// + /// + /// Should be set assuming that the entity faces south. + /// Make sure that Rotation is set to RcdRotation.User if the entity is to be rotated by the user + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public Box2? CollisionBounds + { + get + { + return _collisionBounds; + } + + private set + { + _collisionBounds = value; + + if (_collisionBounds != null) + { + var poly = new PolygonShape(); + poly.SetAsBox(_collisionBounds.Value); + + CollisionPolygon = poly; + } + } + } + + private Box2? _collisionBounds = null; + + /// + /// The polygon shape associated with the prototype CollisionBounds (if set) + /// + [ViewVariables(VVAccess.ReadOnly)] + public PolygonShape? CollisionPolygon { get; private set; } = null; + + /// + /// Governs how the local rotation of the constructed entity will be set + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public RcdRotation Rotation { get; private set; } = RcdRotation.User; +} + +public enum RcdMode : byte +{ + Invalid, + Deconstruct, + ConstructTile, + ConstructObject, +} + +// These are to be replaced with more flexible 'RulesRule' at a later time +public enum RcdConstructionRule : byte +{ + MustBuildOnEmptyTile, // Can only be built on empty space (e.g. lattice) + CanBuildOnEmptyTile, // Can be built on empty space or replace an existing tile (e.g. hull plating) + MustBuildOnSubfloor, // Can only be built on exposed subfloor (e.g. catwalks on lattice or hull plating) + IsWindow, // The entity is a window and can be built on grilles + IsCatwalk, // The entity is a catwalk +} + +public enum RcdRotation : byte +{ + Fixed, // The entity has a local rotation of zero + Camera, // The rotation of the entity matches the local player camera + User, // The entity can be rotated by the local player prior to placement +} diff --git a/Content.Shared/RCD/Systems/RCDSystem.cs b/Content.Shared/RCD/Systems/RCDSystem.cs index 6282a117bb3..cd1e90dc1ff 100644 --- a/Content.Shared/RCD/Systems/RCDSystem.cs +++ b/Content.Shared/RCD/Systems/RCDSystem.cs @@ -1,28 +1,35 @@ using Content.Shared.Administration.Logs; using Content.Shared.Charges.Components; using Content.Shared.Charges.Systems; +using Content.Shared.Construction; using Content.Shared.Database; using Content.Shared.DoAfter; using Content.Shared.Examine; +using Content.Shared.Hands.Components; using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; using Content.Shared.Maps; using Content.Shared.Physics; using Content.Shared.Popups; using Content.Shared.RCD.Components; using Content.Shared.Tag; using Content.Shared.Tiles; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Collision.Shapes; +using Robust.Shared.Physics.Dynamics; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Timing; +using System.Diagnostics.CodeAnalysis; +using System.Linq; namespace Content.Shared.RCD.Systems; -public sealed class RCDSystem : EntitySystem +[Virtual] +public class RCDSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly INetManager _net = default!; @@ -34,312 +41,599 @@ public sealed class RCDSystem : EntitySystem [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly TurfSystem _turf = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly TagSystem _tags = default!; - private readonly int _rcdModeCount = Enum.GetValues(typeof(RcdMode)).Length; + private readonly int _instantConstructionDelay = 0; + private readonly EntProtoId _instantConstructionFx = "EffectRCDConstruct0"; + private readonly ProtoId _deconstructTileProto = "DeconstructTile"; + private readonly ProtoId _deconstructLatticeProto = "DeconstructLattice"; + + private HashSet _intersectingEntities = new(); public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent(OnUseInHand); SubscribeLocalEvent(OnAfterInteract); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent>(OnDoAfterAttempt); + SubscribeLocalEvent(OnRCDSystemMessage); + SubscribeNetworkEvent(OnRCDconstructionGhostRotationEvent); } - private void OnExamine(EntityUid uid, RCDComponent comp, ExaminedEvent args) + #region Event handling + + private void OnMapInit(EntityUid uid, RCDComponent component, MapInitEvent args) { - if (!args.IsInDetailsRange) + // On init, set the RCD to its first available recipe + if (component.AvailablePrototypes.Any()) + { + component.ProtoId = component.AvailablePrototypes.First(); + UpdateCachedPrototype(uid, component); + Dirty(uid, component); + return; + } - var msg = Loc.GetString("rcd-component-examine-detail", ("mode", comp.Mode)); - args.PushMarkup(msg); + // The RCD has no valid recipes somehow? Get rid of it + QueueDel(uid); } - private void OnUseInHand(EntityUid uid, RCDComponent comp, UseInHandEvent args) + private void OnRCDSystemMessage(EntityUid uid, RCDComponent component, RCDSystemMessage args) { - if (args.Handled) + // Exit if the RCD doesn't actually know the supplied prototype + if (!component.AvailablePrototypes.Contains(args.ProtoId)) return; - NextMode(uid, comp, args.User); - args.Handled = true; + if (!_protoManager.HasIndex(args.ProtoId)) + return; + + // Set the current RCD prototype to the one supplied + component.ProtoId = args.ProtoId; + UpdateCachedPrototype(uid, component); + Dirty(uid, component); + + if (args.Session.AttachedEntity != null) + { + // Popup message + var msg = (component.CachedPrototype.Prototype != null) ? + Loc.GetString("rcd-component-change-build-mode", ("name", Loc.GetString(component.CachedPrototype.SetName))) : + Loc.GetString("rcd-component-change-mode", ("mode", Loc.GetString(component.CachedPrototype.SetName))); + + _popup.PopupClient(msg, uid, args.Session.AttachedEntity.Value); + } } - private void OnAfterInteract(EntityUid uid, RCDComponent comp, AfterInteractEvent args) + private void OnExamine(EntityUid uid, RCDComponent component, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + // Update cached prototype if required + UpdateCachedPrototype(uid, component); + + var msg = (component.CachedPrototype.Prototype != null) ? + Loc.GetString("rcd-component-examine-build-details", ("name", Loc.GetString(component.CachedPrototype.SetName))) : + Loc.GetString("rcd-component-examine-mode-details", ("mode", Loc.GetString(component.CachedPrototype.SetName))); + + args.PushMarkup(msg); + } + + private void OnAfterInteract(EntityUid uid, RCDComponent component, AfterInteractEvent args) { if (args.Handled || !args.CanReach) return; var user = args.User; + var location = args.ClickLocation; - TryComp(uid, out var charges); - if (_charges.IsEmpty(uid, charges)) + // Initial validity checks + if (!location.IsValid(EntityManager)) + return; + + if (!TryGetMapGridData(location, out var mapGridData)) { - _popup.PopupClient(Loc.GetString("rcd-component-no-ammo-message"), uid, user); + _popup.PopupClient(Loc.GetString("rcd-component-no-valid-grid"), uid, user); return; } - var location = args.ClickLocation; - // Initial validity check - if (!location.IsValid(EntityManager)) + if (!IsRCDOperationStillValid(uid, component, mapGridData.Value, args.Target, args.User)) return; - var gridId = location.GetGridUid(EntityManager); - if (!HasComp(gridId)) + if (!_net.IsServer) + return; + + // Get the starting cost, delay, and effect from the prototype + var cost = component.CachedPrototype.Cost; + var delay = component.CachedPrototype.Delay; + var effectPrototype = component.CachedPrototype.Effect; + + #region: Operation modifiers + + // Deconstruction modifiers + switch (component.CachedPrototype.Mode) { - location = location.AlignWithClosestGridTile(); - gridId = location.GetGridUid(EntityManager); - // Check if fixing it failed / get final grid ID - if (!HasComp(gridId)) - return; + case RcdMode.Deconstruct: + + // Deconstructing an object + if (args.Target != null) + { + if (TryComp(args.Target, out var destructible)) + { + cost = destructible.Cost; + delay = destructible.Delay; + effectPrototype = destructible.Effect; + } + } + + // Deconstructing a tile + else + { + var deconstructedTile = _mapSystem.GetTileRef(mapGridData.Value.GridUid, mapGridData.Value.Component, mapGridData.Value.Location); + var protoName = deconstructedTile.IsSpace() ? _deconstructTileProto : _deconstructLatticeProto; + + if (_protoManager.TryIndex(protoName, out var deconProto)) + { + cost = deconProto.Cost; + delay = deconProto.Delay; + effectPrototype = deconProto.Effect; + } + } + + break; + + case RcdMode.ConstructTile: + + // If replacing a tile, make the construction instant + var contructedTile = _mapSystem.GetTileRef(mapGridData.Value.GridUid, mapGridData.Value.Component, mapGridData.Value.Location); + + if (!contructedTile.Tile.IsEmpty) + { + delay = _instantConstructionDelay; + effectPrototype = _instantConstructionFx; + } + + break; } - var doAfterArgs = new DoAfterArgs(EntityManager, user, comp.Delay, new RCDDoAfterEvent(GetNetCoordinates(location), comp.Mode), uid, target: args.Target, used: uid) + #endregion + + // Try to start the do after + var effect = Spawn(effectPrototype, mapGridData.Value.Location); + var ev = new RCDDoAfterEvent(GetNetCoordinates(mapGridData.Value.Location), component.ProtoId, cost, EntityManager.GetNetEntity(effect)); + + var doAfterArgs = new DoAfterArgs(EntityManager, user, delay, ev, uid, target: args.Target, used: uid) { BreakOnDamage = true, - NeedHand = true, BreakOnHandChange = true, BreakOnMove = true, - AttemptFrequency = AttemptFrequency.EveryTick + AttemptFrequency = AttemptFrequency.EveryTick, + CancelDuplicate = false, + BlockDuplicate = false }; args.Handled = true; - if (_doAfter.TryStartDoAfter(doAfterArgs) && _gameTiming.IsFirstTimePredicted) - Spawn("EffectRCDConstruction", location); + if (!_doAfter.TryStartDoAfter(doAfterArgs)) + QueueDel(effect); } - private void OnDoAfterAttempt(EntityUid uid, RCDComponent comp, DoAfterAttemptEvent args) + private void OnDoAfterAttempt(EntityUid uid, RCDComponent component, DoAfterAttemptEvent args) { - // sus client crash why if (args.Event?.DoAfter?.Args == null) return; - var location = GetCoordinates(args.Event.Location); + // Exit if the RCD prototype has changed + if (component.ProtoId != args.Event.StartingProtoId) + return; - var gridId = location.GetGridUid(EntityManager); - if (!HasComp(gridId)) - { - location = location.AlignWithClosestGridTile(); - gridId = location.GetGridUid(EntityManager); - // Check if fixing it failed / get final grid ID - if (!HasComp(gridId)) - return; - } + // Ensure the RCD operation is still valid + var location = GetCoordinates(args.Event.Location); - var mapGrid = Comp(gridId.Value); - var tile = mapGrid.GetTileRef(location); + if (!TryGetMapGridData(location, out var mapGridData)) + return; - if (!IsRCDStillValid(uid, comp, args.Event.User, args.Event.Target, mapGrid, tile, args.Event.StartingMode)) + if (!IsRCDOperationStillValid(uid, component, mapGridData.Value, args.Event.Target, args.Event.User)) args.Cancel(); } - private void OnDoAfter(EntityUid uid, RCDComponent comp, RCDDoAfterEvent args) + private void OnDoAfter(EntityUid uid, RCDComponent component, RCDDoAfterEvent args) { + if (args.Cancelled && _net.IsServer) + QueueDel(EntityManager.GetEntity(args.Effect)); + if (args.Handled || args.Cancelled || !_timing.IsFirstTimePredicted) return; - var user = args.User; + args.Handled = true; + var location = GetCoordinates(args.Location); - var gridId = location.GetGridUid(EntityManager); - if (!HasComp(gridId)) + if (!TryGetMapGridData(location, out var mapGridData)) + return; + + // Ensure the RCD operation is still valid + if (!IsRCDOperationStillValid(uid, component, mapGridData.Value, args.Target, args.User)) + return; + + // Finalize the operation + FinalizeRCDOperation(uid, component, mapGridData.Value, args.Target, args.User); + + // Play audio and consume charges + _audio.PlayPredicted(component.SuccessSound, uid, args.User); + _charges.UseCharges(uid, args.Cost); + } + + private void OnRCDconstructionGhostRotationEvent(RCDConstructionGhostRotationEvent ev, EntitySessionEventArgs session) + { + var uid = GetEntity(ev.NetEntity); + + // Determine if player that send the message is carrying the specified RCD in their active hand + if (session.SenderSession.AttachedEntity == null) + return; + + if (!TryComp(session.SenderSession.AttachedEntity, out var hands) || + uid != hands.ActiveHand?.HeldEntity) + return; + + if (!TryComp(uid, out var rcd)) + return; + + // Update the construction direction + rcd.ConstructionDirection = ev.Direction; + Dirty(uid, rcd); + } + + #endregion + + #region Entity construction/deconstruction rule checks + + public bool IsRCDOperationStillValid(EntityUid uid, RCDComponent component, MapGridData mapGridData, EntityUid? target, EntityUid user, bool popMsgs = true) + { + // Update cached prototype if required + UpdateCachedPrototype(uid, component); + + // Check that the RCD has enough ammo to get the job done + TryComp(uid, out var charges); + + // Both of these were messages were suppose to be predicted, but HasInsufficientCharges wasn't being checked on the client for some reason? + if (_charges.IsEmpty(uid, charges)) { - location = location.AlignWithClosestGridTile(); - gridId = location.GetGridUid(EntityManager); - // Check if fixing it failed / get final grid ID - if (!HasComp(gridId)) - return; + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-no-ammo-message"), uid, user); + + return false; } - var mapGrid = Comp(gridId.Value); - var tile = mapGrid.GetTileRef(location); - var snapPos = mapGrid.TileIndicesFor(location); + if (_charges.HasInsufficientCharges(uid, component.CachedPrototype.Cost, charges)) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-insufficient-ammo-message"), uid, user); - // I love that this uses entirely separate code to construction and tile placement!!! + return false; + } - switch (comp.Mode) - { - //Floor mode just needs the tile to be a space tile (subFloor) - case RcdMode.Floors: - if (!_floors.CanPlaceTile(gridId.Value, mapGrid, out var reason)) - { - _popup.PopupClient(reason, user, user); - return; - } + // Exit if the target / target location is obstructed + var unobstructed = (target == null) + ? _interaction.InRangeUnobstructed(user, _mapSystem.GridTileToWorld(mapGridData.GridUid, mapGridData.Component, mapGridData.Position), popup: popMsgs) + : _interaction.InRangeUnobstructed(user, target.Value, popup: popMsgs); - mapGrid.SetTile(snapPos, new Tile(_tileDefMan[comp.Floor].TileId)); - _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(args.User):user} used RCD to set grid: {tile.GridUid} {snapPos} to {comp.Floor}"); - break; - //We don't want to place a space tile on something that's already a space tile. Let's do the inverse of the last check. - case RcdMode.Deconstruct: - if (!IsTileBlocked(tile)) // Delete the turf - { - mapGrid.SetTile(snapPos, Tile.Empty); - _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(args.User):user} used RCD to set grid: {tile.GridUid} tile: {snapPos} to space"); - } - else // Delete the targeted thing - { - var target = args.Target!.Value; - _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(args.User):user} used RCD to delete {ToPrettyString(target):target}"); - QueueDel(target); - } - break; - //Walls are a special behaviour, and require us to build a new object with a transform rather than setting a grid tile, - // thus we early return to avoid the tile set code. - case RcdMode.Walls: - // only spawn on the server - if (_net.IsServer) - { - var ent = Spawn("WallSolid", mapGrid.GridTileToLocal(snapPos)); - Transform(ent).LocalRotation = Angle.Zero; // Walls always need to point south. - _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(args.User):user} used RCD to spawn {ToPrettyString(ent)} at {snapPos} on grid {tile.GridUid}"); - } - break; - case RcdMode.Airlock: - // only spawn on the server - if (_net.IsServer) - { - var airlock = Spawn("Airlock", mapGrid.GridTileToLocal(snapPos)); - Transform(airlock).LocalRotation = Transform(uid).LocalRotation; //Now apply icon smoothing. - _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(args.User):user} used RCD to spawn {ToPrettyString(airlock)} at {snapPos} on grid {tile.GridUid}"); - } - break; - default: - args.Handled = true; - return; //I don't know why this would happen, but sure I guess. Get out of here invalid state! + if (!unobstructed) + return false; + + // Return whether the operation location is valid + switch (component.CachedPrototype.Mode) + { + case RcdMode.ConstructTile: return IsConstructionLocationValid(uid, component, mapGridData, user, popMsgs); + case RcdMode.ConstructObject: return IsConstructionLocationValid(uid, component, mapGridData, user, popMsgs); + case RcdMode.Deconstruct: return IsDeconstructionStillValid(uid, component, mapGridData, target, user, popMsgs); } - _audio.PlayPredicted(comp.SuccessSound, uid, user); - _charges.UseCharge(uid); - args.Handled = true; + return false; } - private bool IsRCDStillValid(EntityUid uid, RCDComponent comp, EntityUid user, EntityUid? target, MapGridComponent mapGrid, TileRef tile, RcdMode startingMode) + private bool IsConstructionLocationValid(EntityUid uid, RCDComponent component, MapGridData mapGridData, EntityUid user, bool popMsgs = true) { - //Less expensive checks first. Failing those ones, we need to check that the tile isn't obstructed. - if (comp.Mode != startingMode) + // Check rule: Must build on empty tile + if (component.CachedPrototype.ConstructionRules.Contains(RcdConstructionRule.MustBuildOnEmptyTile) && !mapGridData.Tile.Tile.IsEmpty) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-must-build-on-empty-tile-message"), uid, user); + return false; + } - var unobstructed = target == null - ? _interaction.InRangeUnobstructed(user, mapGrid.GridTileToWorld(tile.GridIndices), popup: true) - : _interaction.InRangeUnobstructed(user, target.Value, popup: true); + // Check rule: Must build on non-empty tile + if (!component.CachedPrototype.ConstructionRules.Contains(RcdConstructionRule.CanBuildOnEmptyTile) && mapGridData.Tile.Tile.IsEmpty) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-cannot-build-on-empty-tile-message"), uid, user); - if (!unobstructed) return false; + } + + // Check rule: Must place on subfloor + if (component.CachedPrototype.ConstructionRules.Contains(RcdConstructionRule.MustBuildOnSubfloor) && !mapGridData.Tile.Tile.GetContentTileDefinition().IsSubFloor) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-must-build-on-subfloor-message"), uid, user); + + return false; + } + + // Tile specific rules + if (component.CachedPrototype.Mode == RcdMode.ConstructTile) + { + // Check rule: Tile placement is valid + if (!_floors.CanPlaceTile(mapGridData.GridUid, mapGridData.Component, out var reason)) + { + if (popMsgs) + _popup.PopupClient(reason, uid, user); + + return false; + } + + // Check rule: Tiles can't be identical + if (mapGridData.Tile.Tile.GetContentTileDefinition().ID == component.CachedPrototype.Prototype) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-cannot-build-identical-tile"), uid, user); + + return false; + } + + // Ensure that all construction rules shared between tiles and object are checked before exiting here + return true; + } + + // Entity specific rules + + // Check rule: The tile is unoccupied + var isWindow = component.CachedPrototype.ConstructionRules.Contains(RcdConstructionRule.IsWindow); + var isCatwalk = component.CachedPrototype.ConstructionRules.Contains(RcdConstructionRule.IsCatwalk); - switch (comp.Mode) + _intersectingEntities.Clear(); + _lookup.GetLocalEntitiesIntersecting(mapGridData.GridUid, mapGridData.Position, _intersectingEntities, -0.05f, LookupFlags.Uncontained); + + foreach (var ent in _intersectingEntities) { - //Floor mode just needs the tile to be a space tile (subFloor) - case RcdMode.Floors: - if (!tile.Tile.IsEmpty) + if (isWindow && HasComp(ent)) + continue; + + if (isCatwalk && _tags.HasTag(ent, "Catwalk")) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-cannot-build-on-occupied-tile-message"), uid, user); + + return false; + } + + if (component.CachedPrototype.CollisionMask != CollisionGroup.None && TryComp(ent, out var fixtures)) + { + foreach (var fixture in fixtures.Fixtures.Values) { - _popup.PopupClient(Loc.GetString("rcd-component-cannot-build-floor-tile-not-empty-message"), uid, user); + // Continue if no collision is possible + if (fixture.CollisionLayer <= 0 || (fixture.CollisionLayer & (int) component.CachedPrototype.CollisionMask) == 0) + continue; + + // Continue if our custom collision bounds are not intersected + if (component.CachedPrototype.CollisionPolygon != null && + !DoesCustomBoundsIntersectWithFixture(component.CachedPrototype.CollisionPolygon, component.ConstructionTransform, ent, fixture)) + continue; + + // Collision was detected + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-cannot-build-on-occupied-tile-message"), uid, user); + return false; } + } + } - return true; - //We don't want to place a space tile on something that's already a space tile. Let's do the inverse of the last check. - case RcdMode.Deconstruct: - if (tile.Tile.IsEmpty) - return false; + return true; + } - //They tried to decon a turf but... - if (target == null) - { - // the turf is blocked - if (IsTileBlocked(tile)) - { - _popup.PopupClient(Loc.GetString("rcd-component-tile-obstructed-message"), uid, user); - return false; - } - // the turf can't be destroyed (planet probably) - var tileDef = (ContentTileDefinition) _tileDefMan[tile.Tile.TypeId]; - if (tileDef.Indestructible) - { - _popup.PopupClient(Loc.GetString("rcd-component-tile-indestructible-message"), uid, user); - return false; - } - } - //They tried to decon a non-turf but it's not in the whitelist - else if (!_tag.HasTag(target.Value, "RCDDeconstructWhitelist")) - { + private bool IsDeconstructionStillValid(EntityUid uid, RCDComponent component, MapGridData mapGridData, EntityUid? target, EntityUid user, bool popMsgs = true) + { + // Attempt to deconstruct a floor tile + if (target == null) + { + // The tile is empty + if (mapGridData.Tile.Tile.IsEmpty) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-nothing-to-deconstruct-message"), uid, user); + + return false; + } + + // The tile has a structure sitting on it + if (_turf.IsTileBlocked(mapGridData.Tile, CollisionGroup.MobMask)) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-tile-obstructed-message"), uid, user); + + return false; + } + + // The tile cannot be destroyed + var tileDef = (ContentTileDefinition) _tileDefMan[mapGridData.Tile.Tile.TypeId]; + + if (tileDef.Indestructible) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-tile-indestructible-message"), uid, user); + + return false; + } + } + + // Attempt to deconstruct an object + else + { + // The object is not in the whitelist + if (!TryComp(target, out var deconstructible) || !deconstructible.Deconstructable) + { + if (popMsgs) _popup.PopupClient(Loc.GetString("rcd-component-deconstruct-target-not-on-whitelist-message"), uid, user); - return false; - } - return true; - //Walls are a special behaviour, and require us to build a new object with a transform rather than setting a grid tile, thus we early return to avoid the tile set code. - case RcdMode.Walls: - if (tile.Tile.IsEmpty) - { - _popup.PopupClient(Loc.GetString("rcd-component-cannot-build-wall-tile-not-empty-message"), uid, user); - return false; - } + return false; + } + } + + return true; + } + + #endregion + + #region Entity construction/deconstruction + + private void FinalizeRCDOperation(EntityUid uid, RCDComponent component, MapGridData mapGridData, EntityUid? target, EntityUid user) + { + if (!_net.IsServer) + return; + + if (component.CachedPrototype.Prototype == null) + return; - if (IsTileBlocked(tile)) + switch (component.CachedPrototype.Mode) + { + case RcdMode.ConstructTile: + _mapSystem.SetTile(mapGridData.GridUid, mapGridData.Component, mapGridData.Position, new Tile(_tileDefMan[component.CachedPrototype.Prototype].TileId)); + _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(user):user} used RCD to set grid: {mapGridData.GridUid} {mapGridData.Position} to {component.CachedPrototype.Prototype}"); + break; + + case RcdMode.ConstructObject: + var ent = Spawn(component.CachedPrototype.Prototype, _mapSystem.GridTileToLocal(mapGridData.GridUid, mapGridData.Component, mapGridData.Position)); + + switch (component.CachedPrototype.Rotation) { - _popup.PopupClient(Loc.GetString("rcd-component-tile-obstructed-message"), uid, user); - return false; + case RcdRotation.Fixed: + Transform(ent).LocalRotation = Angle.Zero; + break; + case RcdRotation.Camera: + Transform(ent).LocalRotation = Transform(uid).LocalRotation; + break; + case RcdRotation.User: + Transform(ent).LocalRotation = component.ConstructionDirection.ToAngle(); + break; } - return true; - case RcdMode.Airlock: - if (tile.Tile.IsEmpty) + + _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(user):user} used RCD to spawn {ToPrettyString(ent)} at {mapGridData.Position} on grid {mapGridData.GridUid}"); + break; + + case RcdMode.Deconstruct: + + if (target == null) { - _popup.PopupClient(Loc.GetString("rcd-component-cannot-build-airlock-tile-not-empty-message"), uid, user); - return false; + // Deconstruct tile (either converts the tile to lattice, or removes lattice) + var tile = (mapGridData.Tile.Tile.GetContentTileDefinition().ID != "Lattice") ? new Tile(_tileDefMan["Lattice"].TileId) : Tile.Empty; + _mapSystem.SetTile(mapGridData.GridUid, mapGridData.Component, mapGridData.Position, tile); + _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(user):user} used RCD to set grid: {mapGridData.GridUid} tile: {mapGridData.Position} open to space"); } - if (IsTileBlocked(tile)) + else { - _popup.PopupClient(Loc.GetString("rcd-component-tile-obstructed-message"), uid, user); - return false; + // Deconstruct object + _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(user):user} used RCD to delete {ToPrettyString(target):target}"); + QueueDel(target); } - return true; - default: - return false; //I don't know why this would happen, but sure I guess. Get out of here invalid state! + + break; } } - private void NextMode(EntityUid uid, RCDComponent comp, EntityUid user) + #endregion + + #region Utility functions + + public bool TryGetMapGridData(EntityCoordinates location, [NotNullWhen(true)] out MapGridData? mapGridData) { - _audio.PlayPredicted(comp.SwapModeSound, uid, user); + mapGridData = null; + var gridUid = location.GetGridUid(EntityManager); + + if (!TryComp(gridUid, out var mapGrid)) + { + location = location.AlignWithClosestGridTile(1.75f, EntityManager); + gridUid = location.GetGridUid(EntityManager); + + // Check if we got a grid ID the second time round + if (!TryComp(gridUid, out mapGrid)) + return false; + } + + gridUid = mapGrid.Owner; - var mode = (int) comp.Mode; - mode = ++mode % _rcdModeCount; - comp.Mode = (RcdMode) mode; - Dirty(uid, comp); + var tile = _mapSystem.GetTileRef(gridUid.Value, mapGrid, location); + var position = _mapSystem.TileIndicesFor(gridUid.Value, mapGrid, location); + mapGridData = new MapGridData(gridUid.Value, mapGrid, location, tile, position); - var msg = Loc.GetString("rcd-component-change-mode", ("mode", comp.Mode.ToString())); - _popup.PopupClient(msg, uid, user); + return true; } - private bool IsTileBlocked(TileRef tile) + private bool DoesCustomBoundsIntersectWithFixture(PolygonShape boundingPolygon, Transform boundingTransform, EntityUid fixtureOwner, Fixture fixture) { - return _turf.IsTileBlocked(tile, CollisionGroup.MobMask); + var entXformComp = Transform(fixtureOwner); + var entXform = new Transform(new(), entXformComp.LocalRotation); + + return boundingPolygon.ComputeAABB(boundingTransform, 0).Intersects(fixture.Shape.ComputeAABB(entXform, 0)); + } + + public void UpdateCachedPrototype(EntityUid uid, RCDComponent component) + { + if (component.ProtoId.Id != component.CachedPrototype?.Prototype) + component.CachedPrototype = _protoManager.Index(component.ProtoId); + } + + #endregion +} + +public struct MapGridData +{ + public EntityUid GridUid; + public MapGridComponent Component; + public EntityCoordinates Location; + public TileRef Tile; + public Vector2i Position; + + public MapGridData(EntityUid gridUid, MapGridComponent component, EntityCoordinates location, TileRef tile, Vector2i position) + { + GridUid = gridUid; + Component = component; + Location = location; + Tile = tile; + Position = position; } } [Serializable, NetSerializable] public sealed partial class RCDDoAfterEvent : DoAfterEvent { - [DataField("location", required: true)] - public NetCoordinates Location = default!; + [DataField(required: true)] + public NetCoordinates Location { get; private set; } = default!; - [DataField("startingMode", required: true)] - public RcdMode StartingMode = default!; + [DataField] + public ProtoId StartingProtoId { get; private set; } = default!; - private RCDDoAfterEvent() - { - } + [DataField] + public int Cost { get; private set; } = 1; + + [DataField("fx")] + public NetEntity? Effect { get; private set; } = null; + + private RCDDoAfterEvent() { } - public RCDDoAfterEvent(NetCoordinates location, RcdMode startingMode) + public RCDDoAfterEvent(NetCoordinates location, ProtoId startingProtoId, int cost, NetEntity? effect = null) { Location = location; - StartingMode = startingMode; + StartingProtoId = startingProtoId; + Cost = cost; + Effect = effect; } public override DoAfterEvent Clone() => this; diff --git a/Resources/Locale/en-US/rcd/components/rcd-component.ftl b/Resources/Locale/en-US/rcd/components/rcd-component.ftl index b7920c9edea..bb65e76f3f7 100644 --- a/Resources/Locale/en-US/rcd/components/rcd-component.ftl +++ b/Resources/Locale/en-US/rcd/components/rcd-component.ftl @@ -1,18 +1,66 @@ ### UI -# Shown when an RCD is examined in details range -rcd-component-examine-detail = It's currently on {$mode} mode. +rcd-component-examine-mode-details = It's currently set to '{$mode}' mode. +rcd-component-examine-build-details = It's currently set to build {MAKEPLURAL($name)}. + ### Interaction Messages -# Shown when changing RCD Mode -rcd-component-change-mode = The RCD is now set to {$mode} mode. +# Mode change +rcd-component-change-mode = The RCD is now set to '{$mode}' mode. +rcd-component-change-build-mode = The RCD is now set to build {MAKEPLURAL($name)}. + +# Ammo count +rcd-component-no-ammo-message = The RCD has run out of charges! +rcd-component-insufficient-ammo-message = The RCD doesn't have enough charges left! -rcd-component-no-ammo-message = The RCD is out of ammo! -rcd-component-tile-obstructed-message = That tile is obstructed! -rcd-component-tile-indestructible-message = That tile can't be destroyed! +# Deconstruction +rcd-component-tile-indestructible-message = That tile can't be destructed! rcd-component-deconstruct-target-not-on-whitelist-message = You can't deconstruct that! -rcd-component-cannot-build-floor-tile-not-empty-message = You can only build a floor on space! -rcd-component-cannot-build-wall-tile-not-empty-message = You cannot build a wall on space! -rcd-component-cannot-build-airlock-tile-not-empty-message = Cannot build an airlock on space! +rcd-component-nothing-to-deconstruct-message = There's nothing to deconstruct! +rcd-component-tile-obstructed-message = You can't deconstruct tiles when there's something on top of them! + +# Construction +rcd-component-no-valid-grid = You're too far into open space to build here! +rcd-component-must-build-on-empty-tile-message = A foundation already exists here! +rcd-component-cannot-build-on-empty-tile-message = You can't build that without a foundation! +rcd-component-must-build-on-subfloor-message = You can only build that on exposed subfloor! +rcd-component-cannot-build-on-subfloor-message = You can't build that on exposed subfloor! +rcd-component-cannot-build-on-occupied-tile-message = You can't build here, the space is already occupied! +rcd-component-cannot-build-identical-tile = That tile already exists there! + + +### Category names + +rcd-component-walls-and-flooring = Walls and flooring +rcd-component-windows-and-grilles = Windows and grilles +rcd-component-airlocks = Airlocks +rcd-component-electrical = Electrical +rcd-component-lighting = Lighting + + +### Prototype names (note: constructable items will be puralized) + +rcd-component-deconstruct = deconstruct +rcd-component-wall-solid = solid wall +rcd-component-floor-steel = steel tile +rcd-component-plating = hull plate +rcd-component-catwalk = catwalk +rcd-component-wall-reinforced = reinforced wall +rcd-component-grille = grille +rcd-component-window = window +rcd-component-window-directional = directional window +rcd-component-window-reinforced-directional = directional reinforced window +rcd-component-reinforced-window = reinforced window +rcd-component-airlock = standard airlock +rcd-component-airlock-glass = glass airlock +rcd-component-firelock = firelock +rcd-component-computer-frame = computer frame +rcd-component-machine-frame = machine frame +rcd-component-tube-light = light +rcd-component-window-bulb-light = small light +rcd-component-window-lv-cable = LV cable +rcd-component-window-mv-cable = MV cable +rcd-component-window-hv-cable = HV cable +rcd-component-window-cable-terminal = cable terminal diff --git a/Resources/Locale/en-US/ui/general.ftl b/Resources/Locale/en-US/ui/general.ftl new file mode 100644 index 00000000000..1471261dcb7 --- /dev/null +++ b/Resources/Locale/en-US/ui/general.ftl @@ -0,0 +1,3 @@ +### Loc for the various UI-related verbs +ui-verb-toggle-open = Toggle UI +verb-instrument-openui = Play Music diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml index 668f3776dd1..03c870fa580 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml @@ -166,8 +166,8 @@ - type: entity id: CrateRCDAmmo parent: CrateEngineering - name: RCD ammo crate - description: 3 RCD ammo, each restoring 5 charges. + name: compressed matter crate + description: Contains three compressed matter cartridges. components: - type: StorageFill contents: @@ -178,7 +178,7 @@ id: CrateRCD parent: CrateEngineeringSecure name: RCD crate - description: A crate containing a single Rapid Construction Device. + description: A crate containing a single rapid construction device. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index a8e28a1ef73..739464e9611 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -128,9 +128,10 @@ snap: - Wall components: - - type: Tag - tags: - - RCDDeconstructWhitelist + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 - type: Clickable - type: InteractionOutline - type: Sprite diff --git a/Resources/Prototypes/Entities/Effects/rcd.yml b/Resources/Prototypes/Entities/Effects/rcd.yml index adc6aa593c1..902429818e5 100644 --- a/Resources/Prototypes/Entities/Effects/rcd.yml +++ b/Resources/Prototypes/Entities/Effects/rcd.yml @@ -1,16 +1,115 @@ - type: entity - id: EffectRCDConstruction + id: EffectRCDBase + abstract: true noSpawn: true components: - type: Transform anchored: True - type: Sprite + snapCardinals: true + noRot: true drawdepth: Effects sprite: /Textures/Effects/rcd.rsi - state: construct - - type: TimedDespawn - lifetime: 3.2 + state: construct0 - type: Tag tags: - HideContextMenu - type: AnimationPlayer + +- type: entity + parent: EffectRCDBase + id: EffectRCDDeconstructPreview + noSpawn: true + components: + - type: Sprite + state: deconstructPreview + +- type: entity + parent: EffectRCDBase + id: EffectRCDConstruct0 + noSpawn: true + components: + - type: Sprite + state: construct0 + - type: TimedDespawn + lifetime: 1.2 + +- type: entity + parent: EffectRCDBase + id: EffectRCDConstruct1 + noSpawn: true + components: + - type: Sprite + state: construct1 + - type: TimedDespawn + lifetime: 2.2 + +- type: entity + parent: EffectRCDBase + id: EffectRCDConstruct2 + noSpawn: true + components: + - type: Sprite + state: construct2 + - type: TimedDespawn + lifetime: 3.2 + +- type: entity + parent: EffectRCDBase + id: EffectRCDConstruct3 + noSpawn: true + components: + - type: Sprite + state: construct3 + - type: TimedDespawn + lifetime: 4.2 + +- type: entity + parent: EffectRCDBase + id: EffectRCDConstruct4 + noSpawn: true + components: + - type: Sprite + state: construct4 + - type: TimedDespawn + lifetime: 5.2 + +- type: entity + parent: EffectRCDBase + id: EffectRCDDeconstruct2 + noSpawn: true + components: + - type: Sprite + state: deconstruct2 + - type: TimedDespawn + lifetime: 3.2 + +- type: entity + parent: EffectRCDBase + id: EffectRCDDeconstruct4 + noSpawn: true + components: + - type: Sprite + state: deconstruct4 + - type: TimedDespawn + lifetime: 5.2 + +- type: entity + parent: EffectRCDBase + id: EffectRCDDeconstruct6 + noSpawn: true + components: + - type: Sprite + state: deconstruct6 + - type: TimedDespawn + lifetime: 7.2 + +- type: entity + parent: EffectRCDBase + id: EffectRCDDeconstruct8 + noSpawn: true + components: + - type: Sprite + state: deconstruct8 + - type: TimedDespawn + lifetime: 9.2 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Markers/construction_ghost.yml b/Resources/Prototypes/Entities/Markers/construction_ghost.yml index d198ebdd51f..be9cc915d91 100644 --- a/Resources/Prototypes/Entities/Markers/construction_ghost.yml +++ b/Resources/Prototypes/Entities/Markers/construction_ghost.yml @@ -7,4 +7,4 @@ color: '#3F38' - type: ConstructionGhost - type: Clickable - - type: InteractionOutline + - type: InteractionOutline \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index b46eded7d84..2b11c211e8e 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -337,15 +337,35 @@ path: "/Audio/Items/drill_hit.ogg" - type: entity - name: RCD - parent: BaseItem id: RCD - description: An advanced construction device which can place/remove walls, floors, and airlocks quickly. + parent: BaseItem + name: RCD + description: The rapid construction device can be used to quickly place and remove various station structures and fixtures. Requires compressed matter to function. components: - type: RCD + availablePrototypes: + - WallSolid + - FloorSteel + - Plating + - Catwalk + - Grille + - Window + - WindowDirectional + - WindowReinforcedDirectional + - ReinforcedWindow + - Airlock + - AirlockGlass + - Firelock + - TubeLight + - BulbLight + - LVCable + - MVCable + - HVCable + - CableTerminal + - Deconstruct - type: LimitedCharges - maxCharges: 5 - charges: 5 + maxCharges: 30 + charges: 30 - type: UseDelay - type: Sprite sprite: Objects/Tools/rcd.rsi @@ -363,6 +383,12 @@ Plastic: 100 - type: StaticPrice price: 100 + - type: UserInterface + interfaces: + - key: enum.RcdUiKey.Key + type: RCDMenuBoundUserInterface + - type: ActivatableUI + key: enum.RcdUiKey.Key - type: entity id: RCDEmpty @@ -370,37 +396,50 @@ suffix: Empty components: - type: LimitedCharges - maxCharges: 5 charges: 0 + - type: RCD + availablePrototypes: + - WallSolid + - FloorSteel + - Plating + - Catwalk + - Grille + - Window + - WindowDirectional + - WindowReinforcedDirectional + - ReinforcedWindow + - Airlock + - AirlockGlass + - Firelock - type: entity id: RCDRecharging parent: RCD - name: experimental rcd - description: A bluespace-enhanced RCD that regenerates charges passively. + name: experimental RCD + description: A bluespace-enhanced rapid construction device that passively generates its own compressed matter. suffix: AutoRecharge components: - type: LimitedCharges - maxCharges: 3 - charges: 3 + maxCharges: 20 + charges: 20 - type: AutoRecharge - rechargeDuration: 30 + rechargeDuration: 10 - type: entity id: RCDExperimental parent: RCD suffix: Admeme - name: experimental rcd - description: A bluespace-enhanced RCD that regenerates charges passively. + name: experimental RCD + description: A bluespace-enhanced rapid construction device that passively generates its own compressed matter. components: - type: AutoRecharge - rechargeDuration: 5 + rechargeDuration: 1 - type: entity - name: RCD Ammo + name: compressed matter parent: BaseItem id: RCDAmmo - description: Ammo cartridge for an RCD. + description: A cartridge of raw matter compacted by bluespace technology. Used in rapid construction devices. components: - type: RCDAmmo - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index ce2b3261294..ff02e315cb2 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -138,48 +138,6 @@ sprite: Structures/Doors/Airlocks/Standard/hatch_maint.rsi # Glass - -- type: entity - id: AirlockGlass - parent: Airlock - name: glass airlock - components: - - type: MeleeSound - soundGroups: - Brute: - collection: GlassSmack - - type: Door - occludes: false - - type: Occluder - enabled: false - - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/glass.rsi - - type: AnimationPlayer - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close - density: 100 - mask: - - FullTileMask - layer: #removed opaque from the layer, allowing lasers to pass through glass airlocks - - GlassAirlockLayer - - type: LayerChangeOnWeld - unWeldedLayer: GlassAirlockLayer - weldedLayer: GlassLayer - - type: Construction - graph: Airlock - node: glassAirlock - - type: PaintableAirlock - group: Glass - - type: RadiationBlocker - resistance: 2 - - type: Tag - tags: - - GlassAirlock - # This tag is used to nagivate the Airlock construction graph. It's needed because the construction graph is shared between Airlock, AirlockGlass, and HighSecDoor - type: entity parent: AirlockGlass id: AirlockEngineeringGlass @@ -295,4 +253,4 @@ - type: Sprite sprite: Structures/Doors/Airlocks/Glass/centcomm.rsi - type: WiresPanelSecurity - securityLevel: medSecurity + securityLevel: medSecurity \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml index fcdb0d2deaf..283c9f22ae5 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml @@ -30,6 +30,10 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 53a32e0f6fa..abc86b2be8e 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -111,6 +111,10 @@ - type: Damageable damageContainer: StructuralInorganic damageModifierSet: StrongMetallic + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -149,5 +153,53 @@ - type: BlockWeather placement: mode: SnapgridCenter + +- type: entity + id: AirlockRCDResistant + parent: Airlock + abstract: true + components: + - type: RCDDeconstructable + deconstructable: false - +- type: entity + id: AirlockGlass + parent: Airlock + name: glass airlock + components: + - type: MeleeSound + soundGroups: + Brute: + collection: GlassSmack + - type: Door + occludes: false + - type: Occluder + enabled: false + - type: Sprite + sprite: Structures/Doors/Airlocks/Glass/glass.rsi + - type: AnimationPlayer + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close + density: 100 + mask: + - FullTileMask + layer: #removed opaque from the layer, allowing lasers to pass through glass airlocks + - GlassAirlockLayer + - type: LayerChangeOnWeld + unWeldedLayer: GlassAirlockLayer + weldedLayer: GlassLayer + - type: Construction + graph: Airlock + node: glassAirlock + - type: PaintableAirlock + group: Glass + - type: RadiationBlocker + resistance: 2 + - type: Tag + tags: + - GlassAirlock + # This tag is used to nagivate the Airlock construction graph. It's needed because the construction graph is shared between Airlock, AirlockGlass, and HighSecDoor \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml index 75b23f70719..293aaac273d 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml @@ -1,5 +1,5 @@ - type: entity - parent: Airlock + parent: AirlockRCDResistant id: AirlockExternal suffix: External description: It opens, it closes, it might crush you, and there might be only space behind it. diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index 9771f633888..5d6b1088f12 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -1,5 +1,5 @@ - type: entity - parent: Airlock + parent: AirlockRCDResistant id: AirlockShuttle suffix: Docking name: external airlock diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index e677ef185be..0dd65ab4d07 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -19,6 +19,10 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic + - type: RCDDeconstructable + cost: 4 + delay: 6 + fx: EffectRCDDeconstruct6 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/frame.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/frame.yml index 8cf75e89e1a..3f4306e4aa1 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/frame.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/frame.yml @@ -25,6 +25,10 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic + - type: RCDDeconstructable + cost: 4 + delay: 6 + fx: EffectRCDDeconstruct6 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml index 8dfe2f62a51..b8fb203b517 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml @@ -43,6 +43,10 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic + - type: RCDDeconstructable + cost: 6 + delay: 6 + fx: EffectRCDDeconstruct6 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml index d6c087af0a5..06e9d2219a5 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml @@ -41,6 +41,10 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -97,6 +101,10 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml index 8d9cedac03a..5d47d9c5c4a 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml @@ -26,6 +26,10 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index d03765d4fc9..d58273edcc9 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -66,7 +66,11 @@ damageContainer: Inorganic damageModifierSet: Glass - type: ExaminableDamage - messages: WindowMessages + messages: WindowMessages + - type: RCDDeconstructable + cost: 8 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index b4b198eb774..ef89088d1ab 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -40,6 +40,10 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic + - type: RCDDeconstructable + cost: 4 + delay: 2 + fx: EffectRCDDeconstruct2 - type: Destructible thresholds: - trigger: @@ -70,7 +74,7 @@ mode: SnapgridCenter snap: - Wallmount - + - type: entity name: light description: "A light fixture. Draws power and produces light when equipped with a light tube." diff --git a/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml b/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml index da724014dc4..2e8f047c214 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml @@ -17,6 +17,10 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Power/cables.yml b/Resources/Prototypes/Entities/Structures/Power/cables.yml index de66dfc66d6..a81c89de0fb 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cables.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cables.yml @@ -43,6 +43,10 @@ lowVoltageNode: power - type: CableVis node: power + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 - type: entity parent: CableBase diff --git a/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml b/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml index 88d2f272c08..1dca59225cb 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml @@ -10,9 +10,6 @@ Brute: path: "/Audio/Weapons/grille_hit.ogg" - - type: Tag - tags: - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/fence.rsi drawdepth: WallTops @@ -78,6 +75,10 @@ True: { visible: True } False: { visible: False } - type: AnimationPlayer + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 - type: entity parent: BaseFenceMetal diff --git a/Resources/Prototypes/Entities/Structures/Walls/fence_wood.yml b/Resources/Prototypes/Entities/Structures/Walls/fence_wood.yml index f2b03aaeb8f..55b7e40803b 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/fence_wood.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/fence_wood.yml @@ -12,7 +12,6 @@ "/Audio/Weapons/boxingpunch1.ogg" - type: Tag tags: - - RCDDeconstructWhitelist - Wooden - type: Sprite sprite: Structures/Walls/wooden_fence.rsi @@ -24,6 +23,10 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Wood + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index b532db221da..11ada142fa5 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -9,9 +9,10 @@ Brute: path: "/Audio/Weapons/grille_hit.ogg" - - type: Tag - tags: - - RCDDeconstructWhitelist + - type: RCDDeconstructable + cost: 6 + delay: 4 + fx: EffectRCDDeconstruct4 - type: CanBuildWindowOnTop - type: Sprite drawdepth: Walls @@ -120,9 +121,10 @@ - type: Icon sprite: Structures/Walls/grille.rsi state: grille_broken - - type: Tag - tags: - - RCDDeconstructWhitelist + - type: RCDDeconstructable + cost: 6 + delay: 4 + fx: EffectRCDDeconstruct4 - type: Construction graph: Grille node: grilleBroken diff --git a/Resources/Prototypes/Entities/Structures/Walls/railing.yml b/Resources/Prototypes/Entities/Structures/Walls/railing.yml index 95d16742d58..a23c559abab 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/railing.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/railing.yml @@ -57,6 +57,10 @@ - type: Construction graph: Railing node: railing + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 - type: entity parent: BaseStructure @@ -126,6 +130,10 @@ - type: Construction graph: Railing node: railingCorner + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 - type: entity parent: BaseStructure @@ -186,7 +194,11 @@ - type: Construction graph: Railing node: railingCornerSmall - + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 + - type: entity parent: BaseStructure id: RailingRound @@ -261,3 +273,7 @@ - type: Construction graph: Railing node: railingRound + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index f06c0fc4244..8eca58b1242 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -59,11 +59,14 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/brick.rsi - type: Icon sprite: Structures/Walls/brick.rsi + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -90,7 +93,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/clock.rsi - type: Icon @@ -123,7 +125,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/clown.rsi - type: Icon @@ -131,6 +132,10 @@ - type: Construction graph: Girder node: bananiumWall + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -156,7 +161,6 @@ components: - type: Tag tags: - - RCDDeconstructWhitelist - Wall - Structure - type: Sprite @@ -190,7 +194,6 @@ components: - type: Tag tags: - - RCDDeconstructWhitelist - Wall - type: Sprite sprite: Structures/Walls/cult.rsi @@ -223,7 +226,6 @@ tags: - Wall - Debug - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/debug.rsi - type: Icon @@ -253,11 +255,14 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/diamond.rsi - type: Icon sprite: Structures/Walls/diamond.rsi + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -283,7 +288,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/gold.rsi - type: Icon @@ -291,6 +295,10 @@ - type: Construction graph: Girder node: goldWall + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -325,7 +333,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/ice.rsi - type: Icon @@ -355,7 +362,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/plasma.rsi - type: Icon @@ -363,6 +369,10 @@ - type: Construction graph: Girder node: plasmaWall + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -399,7 +409,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/plastic.rsi - type: Icon @@ -407,6 +416,10 @@ - type: Construction graph: Girder node: plasticWall + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -459,7 +472,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Destructible thresholds: - trigger: @@ -604,7 +616,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/riveted.rsi - type: Icon @@ -639,11 +650,14 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/sandstone.rsi - type: Icon sprite: Structures/Walls/sandstone.rsi + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -669,7 +683,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/silver.rsi - type: Icon @@ -677,6 +690,10 @@ - type: Construction graph: Girder node: silverWall + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -842,7 +859,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/solid.rsi - type: WallReplacementMarker @@ -851,6 +867,10 @@ node: wall - type: Icon sprite: Structures/Walls/solid.rsi + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -1012,7 +1032,6 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/web.rsi - type: Icon @@ -1224,11 +1243,14 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist - type: Sprite sprite: Structures/Walls/cobblebrick.rsi - type: Icon sprite: Structures/Walls/cobblebrick.rsi + - type: RCDDeconstructable + cost: 6 + delay: 8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Windows/mining.yml b/Resources/Prototypes/Entities/Structures/Windows/mining.yml index 910c3daae2a..82d11b732b6 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/mining.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/mining.yml @@ -1,7 +1,7 @@ - type: entity id: MiningWindow name: mining window - parent: Window + parent: WindowRCDResistant components: - type: Sprite drawdepth: WallTops diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index 0dd2a1b06cc..36a12f2d844 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -1,7 +1,7 @@ - type: entity id: PlasmaWindow name: plasma window - parent: Window + parent: WindowRCDResistant components: - type: Sprite drawdepth: WallTops @@ -55,7 +55,7 @@ - type: entity id: PlasmaWindowDirectional - parent: WindowDirectional + parent: WindowDirectionalRCDResistant name: directional plasma window description: Don't smudge up the glass down there. placement: diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 1c79644ce4d..d8b6c7d11d8 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -14,6 +14,10 @@ - type: Damageable damageContainer: StructuralInorganic damageModifierSet: RGlass + - type: RCDDeconstructable + cost: 6 + delay: 6 + fx: EffectRCDDeconstruct6 - type: Destructible thresholds: - trigger: @@ -99,6 +103,10 @@ sprite: Structures/Windows/cracks_directional.rsi - type: Damageable damageModifierSet: RGlass + - type: RCDDeconstructable + cost: 4 + delay: 4 + fx: EffectRCDDeconstruct4 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index d81204be071..93859b1db2c 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -1,7 +1,7 @@ - type: entity id: ReinforcedPlasmaWindow name: reinforced plasma window - parent: Window + parent: WindowRCDResistant components: - type: Sprite drawdepth: WallTops @@ -58,7 +58,7 @@ - type: entity id: PlasmaReinforcedWindowDirectional - parent: WindowDirectional + parent: WindowDirectionalRCDResistant name: directional reinforced plasma window description: Don't smudge up the glass down there. placement: diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml index 6ed2cc59267..e26fec65b77 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml @@ -1,7 +1,7 @@ - type: entity id: ReinforcedUraniumWindow name: reinforced uranium window - parent: Window + parent: WindowRCDResistant components: - type: Sprite drawdepth: WallTops diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml index d953cc588ac..f1b840c1435 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml @@ -1,7 +1,7 @@ - type: entity id: ShuttleWindow name: shuttle window - parent: Window + parent: WindowRCDResistant components: - type: Sprite drawdepth: WallTops diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index b956d369fa3..e5228bc593e 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -1,7 +1,7 @@ - type: entity id: UraniumWindow name: uranium window - parent: Window + parent: WindowRCDResistant components: - type: Sprite drawdepth: WallTops diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 375d0c16aed..606c54e35b8 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -16,7 +16,6 @@ arc: 360 # interact despite grilles - type: Tag tags: - - RCDDeconstructWhitelist - ForceFixRotations - Window - type: Sprite @@ -42,6 +41,10 @@ - type: ExaminableDamage messages: WindowMessages - type: Repairable + - type: RCDDeconstructable + cost: 6 + delay: 4 + fx: EffectRCDDeconstruct4 - type: Destructible thresholds: - trigger: @@ -89,6 +92,14 @@ - type: StaticPrice price: 100 - type: BlockWeather + +- type: entity + id: WindowRCDResistant + parent: Window + abstract: true + components: + - type: RCDDeconstructable + deconstructable: false - type: entity id: WindowDirectional @@ -139,6 +150,10 @@ damageModifierSet: Glass - type: ExaminableDamage messages: WindowMessages + - type: RCDDeconstructable + cost: 4 + delay: 2 + fx: EffectRCDDeconstruct2 - type: Destructible thresholds: - trigger: @@ -181,6 +196,14 @@ - type: StaticPrice price: 10 +- type: entity + id: WindowDirectionalRCDResistant + parent: WindowDirectional + abstract: true + components: + - type: RCDDeconstructable + deconstructable: false + - type: entity id: WindowFrostedDirectional parent: WindowDirectional diff --git a/Resources/Prototypes/Entities/Structures/catwalk.yml b/Resources/Prototypes/Entities/Structures/catwalk.yml index c727c249522..6dee91365ef 100644 --- a/Resources/Prototypes/Entities/Structures/catwalk.yml +++ b/Resources/Prototypes/Entities/Structures/catwalk.yml @@ -51,3 +51,7 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 \ No newline at end of file diff --git a/Resources/Prototypes/RCD/rcd.yml b/Resources/Prototypes/RCD/rcd.yml new file mode 100644 index 00000000000..cb2c9ed2341 --- /dev/null +++ b/Resources/Prototypes/RCD/rcd.yml @@ -0,0 +1,294 @@ +# Operations +- type: rcd + id: Invalid # Hidden prototype - do not add to RCDs + mode: Invalid + +- type: rcd + id: Deconstruct + name: rcd-component-deconstruct + category: Main + sprite: /Textures/Interface/Radial/RCD/deconstruct.png + mode: Deconstruct + prototype: EffectRCDDeconstructPreview + rotation: Camera + +- type: rcd + id: DeconstructLattice # Hidden prototype - do not add to RCDs + mode: Deconstruct + cost: 2 + delay: 1 + rotation: Camera + fx: EffectRCDDeconstruct2 + +- type: rcd + id: DeconstructTile # Hidden prototype - do not add to RCDs + mode: Deconstruct + cost: 4 + delay: 4 + rotation: Camera + fx: EffectRCDDeconstruct4 + +# Flooring +- type: rcd + id: Plating + name: rcd-component-plating + category: WallsAndFlooring + sprite: /Textures/Interface/Radial/RCD/plating.png + mode: ConstructTile + prototype: Plating + cost: 1 + delay: 1 + collisionMask: InteractImpassable + rules: + - CanBuildOnEmptyTile + fx: EffectRCDConstruct1 + +- type: rcd + id: FloorSteel + name: rcd-component-floor-steel + category: WallsAndFlooring + sprite: /Textures/Interface/Radial/RCD/metal_tile.png + mode: ConstructTile + prototype: FloorSteel + cost: 1 + delay: 1 + collisionMask: InteractImpassable + rules: + - CanBuildOnEmptyTile + fx: EffectRCDConstruct1 + +- type: rcd + id: Catwalk + name: rcd-component-catwalk + category: WallsAndFlooring + sprite: /Textures/Interface/Radial/RCD/catwalk.png + mode: ConstructObject + prototype: Catwalk + cost: 1 + delay: 1 + collisionMask: InteractImpassable + rules: + - MustBuildOnSubfloor + - IsCatwalk + rotation: Fixed + fx: EffectRCDConstruct1 + +# Walls +- type: rcd + id: WallSolid + name: rcd-component-wall-solid + category: WallsAndFlooring + sprite: /Textures/Interface/Radial/RCD/solid_wall.png + mode: ConstructObject + prototype: WallSolid + cost: 4 + delay: 2 + collisionMask: FullTileMask + rotation: Fixed + fx: EffectRCDConstruct2 + +- type: rcd + id: Grille + name: rcd-component-grille + category: WindowsAndGrilles + sprite: /Textures/Interface/Radial/RCD/grille.png + mode: ConstructObject + prototype: Grille + cost: 4 + delay: 2 + collisionMask: FullTileMask + rotation: Fixed + fx: EffectRCDConstruct2 + +# Windows +- type: rcd + id: Window + name: rcd-component-window + category: WindowsAndGrilles + sprite: /Textures/Interface/Radial/RCD/window.png + mode: ConstructObject + prototype: Window + cost: 3 + delay: 2 + collisionMask: FullTileMask + rules: + - IsWindow + rotation: Fixed + fx: EffectRCDConstruct2 + +- type: rcd + id: WindowDirectional + name: rcd-component-window-directional + category: WindowsAndGrilles + sprite: /Textures/Interface/Radial/RCD/directional.png + mode: ConstructObject + prototype: WindowDirectional + cost: 2 + delay: 1 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + rotation: User + fx: EffectRCDConstruct1 + +- type: rcd + id: ReinforcedWindow + name: rcd-component-reinforced-window + category: WindowsAndGrilles + sprite: /Textures/Interface/Radial/RCD/window_reinforced.png + mode: ConstructObject + prototype: ReinforcedWindow + cost: 4 + delay: 3 + collisionMask: FullTileMask + rules: + - IsWindow + rotation: User + fx: EffectRCDConstruct3 + +- type: rcd + id: WindowReinforcedDirectional + name: rcd-component-window-reinforced-directional + category: WindowsAndGrilles + sprite: /Textures/Interface/Radial/RCD/directional_reinforced.png + mode: ConstructObject + prototype: WindowReinforcedDirectional + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + rotation: User + fx: EffectRCDConstruct2 + +# Airlocks +- type: rcd + id: Airlock + name: rcd-component-airlock + category: Airlocks + sprite: /Textures/Interface/Radial/RCD/airlock.png + mode: ConstructObject + prototype: Airlock + cost: 4 + delay: 4 + collisionMask: FullTileMask + rotation: Camera + fx: EffectRCDConstruct4 + +- type: rcd + id: AirlockGlass + name: rcd-component-airlock-glass + category: Airlocks + sprite: /Textures/Interface/Radial/RCD/glass_airlock.png + mode: ConstructObject + prototype: AirlockGlass + cost: 4 + delay: 4 + collisionMask: FullTileMask + rotation: Camera + fx: EffectRCDConstruct4 + +- type: rcd + id: Firelock + name: rcd-component-firelock + category: Airlocks + sprite: /Textures/Interface/Radial/RCD/firelock.png + mode: ConstructObject + prototype: Firelock + cost: 4 + delay: 3 + collisionMask: FullTileMask + rotation: Camera + fx: EffectRCDConstruct3 + +# Lighting +- type: rcd + id: TubeLight + name: rcd-component-tube-light + category: Lighting + sprite: /Textures/Interface/Radial/RCD/tube_light.png + mode: ConstructObject + prototype: Poweredlight + cost: 2 + delay: 1 + collisionMask: TabletopMachineMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct1 + +- type: rcd + id: BulbLight + name: rcd-component-window-bulb-light + category: Lighting + sprite: /Textures/Interface/Radial/RCD/bulb_light.png + mode: ConstructObject + prototype: PoweredSmallLight + cost: 2 + delay: 1 + collisionMask: TabletopMachineMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct1 + +# Electrical +- type: rcd + id: LVCable + name: rcd-component-window-lv-cable + category: Electrical + sprite: /Textures/Interface/Radial/RCD/lv_coil.png + mode: ConstructObject + prototype: CableApcExtension + cost: 1 + delay: 0 + collisionMask: InteractImpassable + rules: + - MustBuildOnSubfloor + rotation: Fixed + fx: EffectRCDConstruct0 + +- type: rcd + id: MVCable + name: rcd-component-window-mv-cable + category: Electrical + sprite: /Textures/Interface/Radial/RCD/mv_coil.png + mode: ConstructObject + prototype: CableMV + cost: 1 + delay: 0 + collisionMask: InteractImpassable + rules: + - MustBuildOnSubfloor + rotation: Fixed + fx: EffectRCDConstruct0 + +- type: rcd + id: HVCable + name: rcd-component-window-hv-cable + category: Electrical + sprite: /Textures/Interface/Radial/RCD/hv_coil.png + mode: ConstructObject + prototype: CableHV + cost: 1 + delay: 0 + collisionMask: InteractImpassable + rules: + - MustBuildOnSubfloor + rotation: Fixed + fx: EffectRCDConstruct0 + +- type: rcd + id: CableTerminal + name: rcd-component-window-cable-terminal + category: Electrical + sprite: /Textures/Interface/Radial/RCD/cable_terminal.png + mode: ConstructObject + prototype: CableTerminal + cost: 1 + delay: 0 + collisionMask: InteractImpassable + rules: + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct0 \ No newline at end of file diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index fe8c5a3cc17..8f0038915de 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -1034,9 +1034,6 @@ - type: Tag id: RawMaterial -- type: Tag - id: RCDDeconstructWhitelist - # Give this to something that doesn't need any special recycler behavior and just needs deleting. - type: Tag id: Recyclable diff --git a/Resources/Textures/Effects/rcd.rsi/construct.png b/Resources/Textures/Effects/rcd.rsi/construct.png deleted file mode 100644 index f4be36c9bf4363ad314986a38dfa3dd7a506ea6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3612 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 a+X}&kW$HhP#uT9I6EM4EfvPrgjs73@Qy{Pa diff --git a/Resources/Textures/Effects/rcd.rsi/construct0.png b/Resources/Textures/Effects/rcd.rsi/construct0.png new file mode 100644 index 0000000000000000000000000000000000000000..d83fa0506c6776eefcde77cb0a4e5203f70efe98 GIT binary patch literal 1095 zcmV-N1i1T&P)003YJ1^@s6nkRXg000CINkl$#fB^)q-zTO16ndjAkeLp zjP0PEoi2mTrh4kT-tWy|NKw%=YIWMvO7F8xvW(@0AVuG0<0{@0E=>PI_>0r%jWu zH;nY!CbwI$-!{fLPTHWaudii5$4Q%%XE)FGsaAvh#d-7a9 zr86QTf_|W1jY$9Gp8oY!O4Wd`t~@!q`6bzxuSG;8v$ZLg`#W~q@7{>>bZ`UE5A>^@ z@68W3fAnmjk*67-RDFhRGI6CR->4|EV_HwHtG<2SC4JvW1d$17-^) zcSK*&fGg`8=TiG4a=E|rubVzNv)(>h8_Wx#KdNti7#`BsVtwOWRzyUO)zx)g?WC`@ExxM3R=i;!M+1jjzXouFf%{YBkmm+H_~ok2C|u zVIGhSIGuiIW8~`%mkc;X1{4vs4CJ#6`eB(zKdKBEn;}?h9xNCF!t1-a-HI!{wtG9T z<+p9=hwhmsUC#shkZZQj9Q-zNCs4X7Cb(4PHK|@Cm4`D zA@S0WWJ!LU_Jpi-TSc`D)@>C9{i0e1^!2sqwu-C=jGMk~Vz(ZUJsIo?(exe}kPN7s z0htGkmwvWT3aaUBq2w;Q%{<_8&I3MfeeFka8VBQyWFYj_^i?w;$FrfYslPhU9M0X> zQSL7tzIit1vc`S)B>h>g=b_ImQvZL~73MQ{iWW1j9ZFxj3r0WL`m5SI<28wczUGsN zIItoB7!VR`K<$UoN!O82OM|4TvX@Ng~@jF>f6ek%WOV>1&!~W;r2`h94FHE z%4Xi>I{tS|y11y91r6UkP$KE))8T-G8<1asDi{C*0tN)YfB*ng!2kdN0000000000 z000000000>2FtMkfF6(@5Hw&<2w*_KfB+Z}Fd#(`L<+~VaXgzUe*t3ehmV#4$AbU> N002ovPDHLkV1lq$_jCXN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Effects/rcd.rsi/construct1.png b/Resources/Textures/Effects/rcd.rsi/construct1.png new file mode 100644 index 0000000000000000000000000000000000000000..0b597fe1080de7a05f31f43f2c38b85a9bbc90c8 GIT binary patch literal 3663 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 BrtAO! literal 0 HcmV?d00001 diff --git a/Resources/Textures/Effects/rcd.rsi/deconstruct2.png b/Resources/Textures/Effects/rcd.rsi/deconstruct2.png new file mode 100644 index 0000000000000000000000000000000000000000..d2144af3c78b41f5a6844dbdd01a23c9694b3d50 GIT binary patch literal 4964 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�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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Effects/rcd.rsi/deconstruct6.png b/Resources/Textures/Effects/rcd.rsi/deconstruct6.png new file mode 100644 index 0000000000000000000000000000000000000000..70771150669b4abb1da6f41476099d5299f097d4 GIT binary patch literal 8158 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�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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Effects/rcd.rsi/deconstruct8.png b/Resources/Textures/Effects/rcd.rsi/deconstruct8.png new file mode 100644 index 0000000000000000000000000000000000000000..79d724e6ba2e76bc3ec4bc2bead42ee8fbc006a3 GIT binary patch literal 7941 zcmYLOdpwix`yXPWIaV}jK04@xk`b~|N`<5xDu*SN9I{jnG27%*>4PLih=q{joaZ=n zpqxey3$ZZ_OWVw0W47Pp^ZkBbzki>+rs=_w$PvtRZqxIS>d0Id|6T z5(p##3_)~R8Q}WcvgRTPw5#)+m8E0o@O(PXUxWFm4c30Xv8I}||IFb`N0SFvOjGWd zqT?PU^?81L^C4eJ*1arW{iWm!cysw>%Klg19L`W}9$zeqG=yI&xZ*1FcI3JyG~BIu zZ{Spb-|AdYApPHCTe+eO85YQIogvV!(mUEtuu=9@TC?qE7_6WaUrh_}}-<_BW zJ#j_)&gYjt2oiL(mCLwReZ&K*0oBP0B*N?B7}iz(o|T41hUcxag`u~g?lj!fqtlLF zEZn2hj5nG@Ho<^%$R;)=4)qWbi_uQ)D}Pe^<7dxK<*x59h-lO_157{IM-PB!j)+{l zTn4_ZE-$I+oBa6cQAJ8W;qILglfXVfHoqqvxVLA#*@Zzl(t2BM`_LAzqVj&Bi*2=g zYqBQcMr@pISNT>i|A~KAgLk09PI&p#e;$fe_gd3GHfZP(P(L70&cJ;YrL`V18LMgP z4(V$ux*H_?A-u3X%Dg75dDpKU;AQ$agPMpxll;SZi^XzgZmmaabFqi`mBGs=(lFu7LLeA#VIird6n$2vyp$dVb4UCEDMcIo100{v>=uVA+vg%n zw2FkKoy<9PPKyh}511sM{XRZwHBj#NpLgXbekv!UA{DV~9M$zGs{sR_*;v2L_?;Hv zz7~|Z1+&R;=VaRR)}?a2rbOO|B>A_{K-cwpPT5~)tUBifzyCIN3+Kkc$GYDgx2>!W zb>iMyk0Q2`hG9;TnG&bkl9v?8P*gPzEF2n%A=Ip6O?hz<9~zfZS#^t^lO3yIR2;er zx4)<*D>w3Pe@=22F;k(TkDJ#iI3FZ%BC4U1J(NszUBA6)eR|(&&xs~CckI<}i#HVN z5PFWl=(sPF6ePICbQwstNIG_BL0Z-n{JwqVN1CoIxlFGynpRM^HgX{&U^A^iuTc$? zw>B~rK6OgT8M|gK>!{n7__?0(T7M9`!<9nW`z(aHA62xzP|&)-_g42hN%qGM7}zMV zZ*RQueLzq<$@$~f{tj)9bV49u>!C#c!2S8mx0tf!A&r24RM70}6JK;X< ziFWI|5|%mCb3F)B!YghV^1oxagFr)++>&PyVv9R*6LMZp1?S<2JP9X3HsCs8?;kvA z5*zppm%O*U#VqteT&uRQck@bXa_dJ!>;p3Nie%a<3{ilxe3HL@qZ* z^$2sVm7U-p-J;$u>tMG2$j?36_n`|~RMHYR=AR4gFh_-wfh~4lt|&UUd$o<|XOWJ) z_j?;pGzslTiw1%JulTk8T!>`xbPT*fAS!u->ac_A@#R4-i|XEB!t7JWF>*tjZ;%v@YQFPoTi2E_~7e z9|G;Q#=1)lQgCtlzbQ{;meRzpl5`s!p&DV&qdnyC`u&{kYsOQ1+<+slE=lf21dV~MGU6}J=u11aLA<|X$k~|lz5Vaa`b-i!E(GJ_Mu?EoE(C$ zJbem?3CapWke1Rn35yNq-YWQC!m-*Tb@k`+MEEQuk9WwXGZ^PFc+-%RGAe3V+}k7g zRe!_)fl~a;T`K*|Tw6(vH^Upr>-%ZXc@{lWI!!Ly6?Kpn!@a^C9Xy5KRMY+`zHX7F z@3BzSjWJsQV(k1|_SeuNzCng70wY0}w_v-GS`$rq^X=l67mBqdfipKx1oH#@B-{Dz zAt0A*WkRC!ciDWlgcNQoh)i4p@tB`ZEe16!LR}4Xz@(aI9b1hV_ zmzwA$QIkc54U*`L(XKn)u|42G9AxyQ6)Cif9evFmtBl+anUkh1rO=2!$NttGNuTXH1AurW*DmPFXYWqE{`-RLg-+K}Sq{l$og@P6%gBv+zna7pC z&hvNe59>SkK!z3`{}D)H7pxeP(pNDgF|#QwfxCEu>ZVO<>+r==geLc0obAP z;Zq0ll|!0th5OC};px04wIJQdKRH68>fyc%f*Zw-fmMf#mwF&fdt>K=9iOR zIQ4EbA!UgI(>Fs(l4nEXoFa8sldJ3~M0dmhKlo7+QwKz5PzvoaBLo)$f8+q_SH{k< z#`J=z`P)qIV9&DU(UAGLee&`s(E6rMy~D#R9+#PEt6S9hoz*L;b;jwlp+V#veY~$` zC>WC*G^-iDIqXY_@X^w9^crtYwP|^ZqDJzY?F_Eq9sBG{TmK29%s~L0b%u6aF$sKI z>2FEha4j``&YrlAwg9Kd!{?F`o8E~0@5cK>-t3} zZ{x>RBZ&wudTKb&ikVlQ8y`j)y&S&vEeh0`bY60{td zkl$U?i87TTjY7tVUldFZTU1z>W{&e5I}hk^sR(_ zYcIS-k7z(JoZXa_7Q(M;nWgWr(P|kloyoH0f}#BJ{i*TXWw(j0wiW6{ z9_0e$lrr)bo!!)F%epGNivCE+Y^S#2E)c;zf4WZu%uTGdxa^4UCM`(cyN0%W!p<>H zr}0(_5MNhgk|k4`$Ppvo`+~@XCD2VCdd&=9D%g5_M?7FPzN6tf82!dsVMdb+LIQ}5 z`(6rIBe+t=sU@-ZqBLg&j3?mMY(NBf@@Res_&Hv-E8?Lq)8&VS^)LuR;x=5vTm4u!VGA5`D`?#*Lh^689CC->TjW)~ z9EW##VY3nkfayx&P@S?>CXwro-$wu^FPVgjYLawgSvq|e3Zu8Nl8DZ#Whwegr(beL2lu>Q z)eh|>O=Z6)o|5;S7%H5dDZhR5;Bo8;lLj+{mxpSPhuyj4CDTh`cFj40^v)~EZWsIF z_rRBL2F-pi3Lt;ftHZ;R`+qW6ioX;34?9jV9euSgJ+M2OumAXOire6xoymg#et??8 z6x^)H%^pcjP%T`WiR49c!jqXuYWSaBDxA9muOGS+y>0~2W~7*GpAxWEk3|w0v}Yy8 zW$9^RSp7LeWu%7_xj*J&*}lJU*wn#H6LN9tKXUNRPsZ*YctGxy@40Ip{WR!KhP{!W zY26)WrTg<@mBzaB{`~{Yhy3~=@J;?M5_DqoeLUAC!)ksN&{6pD~x+&G>v00kne@Dv+ z@_SIDt5~LD7x5jNB$McKeSkM#C9_<=FWpvZtqa}LoUkHIe*lt%d?<(<4a=?_xSj;< zm!Y8{`}&#_|6z{!L4JqWnWo4rr_tU=O3|r)3+C9rLb1;v8v<#x^sln5`Rwt1l@w+jO+!| zql~p0hMK`m?hO+E4Hf?hNdJ~cyW5{3%>eY19KRC;+)Tjupeum59&VtDT4KHl7Ysb? zhlze~ltfrtoX)O)hvtY*%MGl=wh#C$e%JNC>Mxc?pmoELflmhfM9+o2k8lsjIG`lX zQTGC%tbgs8#b=Q)xRA@j6msp|JeNe5V+U-l7QGAoc<7&~(ne3As*8FbYwrxkODyCI zL{$%OPZn<*Q*SlIdH0WIz+i461}(P6!`PDQW71bb>qYmAoHTKbAGVW9LI(ph0UbB2 zK1L&4T{&SJs`N!lA|Eu_IY-xMLtX7NCfz!9S94h)&nt^K#40Tp9DM_gzIn+jaKj+<4h^*0Gr~1wX_BtlJPp04IoJkzmU->Iw`q;~w#oG}U?~GxnzKhP;7ptCL zzif^V0_zk_=gq}v6@5mJ!>RNx=6jqqTsw|MKZ8az&FOR287BB)T*#&=`+!AjeRItF zsj)j!I(kHY1&)Wh)@_fyZFqvG*qjzX=NHnS;q}ARnqASAw;>+H=iUp4E2%*OJ9ugL z$`#%)gBepCw*8l56e${A(84{8l^v5V9haxKYjkz`5i|FV)vY-hR%M&=vjnzmLD|QB zX@Kw(;nUQ6alDlrnXDO1YA4}ZPK!gL{wBDDv}n>m-y)}4>)AzWa~-nI#;$m7z=akt zLHQHpj{Qsg+|QQDwt-mn3Jgi?{x+eHjRrGY6tng5w6TZ%Hz5AQ0SPj# z!pxSDcC}_Sx-K`U$NA2#!r&fOvjYLi=Sa&Y(IhiI#?>v-KdXTNx4X_E9z{eScSyZ`^Xg;W&maVp-DYPB}IBH7y>b$q0TOa;?lyG9O&ZR&CncCX^zJ=-_YG zcGc;TQ=p593c_YTNo_D5Xn%zEM@W<^ybyS4B3@w}?3$CPR;TPN`ZsMtYGL0BdxPSB z6c`btdfKQ3!B?hXNi0PyOK@~FUF|<^j|Kmw6g_jMf4vvzs|*S>HkYqkjlRVh>%{8QnO@l8OUy(FFhX7;e|kdJxfDuSY5z zM`#8kzhF=e2J;Kzl|Lh5qgs}1qo@~|NoG0s)lGsG&#j78sG^2#fFt4+$#5EsXqyIr zn7`W94wy8geZ00$WBtGVhgJZz>qV$(ZG}q!>NRX^x{Y7I_I~_O-|2(q3tGLyU5+Vw=O0MEnVq?21Qk!nK~6D&9_iieu+PaN4BqM7+4 zH|?W$TXBgX4A;8n{WgN)P$>W9LYaa*_M3q0bI%L|hW@(W5QYOX&|j+9?5E6=rn?X| zTn=Uu)cj0l#W|{@)s@8_m#SP`Hn(j?_i#E$+@-UNimwJj5B7akC*fW&*hd%4qNDeX z$@3%lQL4I3oEnS1bcHO+@b%w@Z4XONqtdGfYi~hEL)Q;%k9o7}(UEH5RA6DtO3!dt z`1$w~HF*Z^zjpuhVCipHU66*74*=!Thgb)MO@?nt^ znZ(;@05ZWjmY+W>4?7B+%l=w&(*++ffNPjQ zQXk6@dC9~k64W)4aHG?)PtK6o7!>gQjIjsq!iJO`NnY?uiKFpALC%39f!QcMw5Q{Y z%j)8H9an^0u&TtY>ooTNJSfx;_|~S-u$G(BIt>r~)on_$&9*Q4qfv|!16^vFuAM7a zqS6AWeu3(OawX0KH*vV**rq>P+I6~*;atSn4n2q{#y;Y8^vqW+KDxiMXf!Bbp!#Bk zh5*L?P?uY5tL9Z1T;ZU~g9;C?#8ZC?xsbcsVYVIHcOBbMw9uE6D+pZYVq97XiVoe8 zj%cZ@nK+~RQgtZ0W~*1xT4vkT75nov#m5`nnk-BLP+el^Uk{*)Mx9+c0+n$<>DQfn zrpm2;9lnDY=Q?wIDu(-%MO5h$J{9C+S6&Nto%zrx;e9fk1V2@iX_fWe#lzbXX#tazyPa(+$-cs=5zID-e}0Q}TU#)Qvw-2<_POR@sUyGNn%UwNmjW?^<2WdkEOo)4_guHx|D7KR1QJ);0vG~f~ zs%)}k_rvKI^=HFbaBb~<^tL2{l~v#$enl2Tm!J5H8-7#xx`z{d zhead@As3I=BY5y?!IxvVp>Fm!=9f~@1u0z*K#M+}}@v%T-ht4kpu=H;pmHC|` zK~LN%s`S&}t)%RL`_uY#UQIs!$FmG<0+u_khS8+_AS$pFvwCQah|^8AE1SpF+I8)J z52~M>2?mB;I%> zuEP5>EyC1pLk8&RD@!WZrQ(fo0@-kyOMC^bk%_1l;Y1aCF%gyU`vgD+m`xLaZakR`A>PyP$*CSEP2Hwn^1cVIqSFu}wAK;L&+ zXSiH*F%Ce9Ss}B=8e`}>q;f(MLhITy;<;C?-i>Lij8oO=?07|nDJBbdPv5B{8~}-E zV8~wJ#ESn+iROVkGe1!Nq|vG}Ir?d=c+>j&!n1mr85{QaA2sDqOi;A1K=yN8S#eNM z#M&yV$!6o9AfQJtz#fIX*uIA7DHW$^ATP4SuzmTg)nSyyXVViv%N)v|iXhyXVFO#e zuI8-|j2H>XRS=9&`o$5Xt!U<&XtdOw(O37yc;0DXCAft+n&E$NRIyY5K^}d6B8IoJC9Wlumm7A zy6=!p9BDwvRdu(uc3VZJY4u&=OQk9Q_!>37W=>=H*JwTW!K zD%DJl&Yt#W=#pF;C;owftmwT116>DgVjZe>+Ak`$0@TT>s&}oG`1%FTlaEMl(hTe- z#v}Jseon;Gu}@eY z^jqu>^4kfyf)oKE&S7GCEeA8ZS$4*$^Zk(Q-@7#r_RzzssG(W7()og{8#@$~r=kyd zXBFNOU0pv;`W@svC4YA7?~0yppLS>MY`2&69g=+W5YpY$kf?icGjnU?9m2&%h~1*% zV5f4yRNba4!5D`mP$)n}-l>3rh(mk{3oXgmkIAQ7bwJ8fGtCD!*w76=^p}K|lI$c1 z;1;#+0pykzFaUVWW=((w0|pxuXUGN%iUi$-eY4a8;OxsdeJy}+1#Jj!?5d<2_mL=h zecQ$yz=y(si*gwrY36LH)EifK7cLyqAk8L?1^BJ7A`W-4Z#oN|!#B-PHODsfz7T^^ Yg`;!s@;^-gdK+}^^aZPulh+^rAKYv^4gdfE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Effects/rcd.rsi/deconstructPreview.png b/Resources/Textures/Effects/rcd.rsi/deconstructPreview.png new file mode 100644 index 0000000000000000000000000000000000000000..2d114002fb288ad27decd3b2c005be23cb013b7a GIT binary patch literal 47364 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Effects/rcd.rsi/meta.json b/Resources/Textures/Effects/rcd.rsi/meta.json index 5004a9c4fcf..c9e8320c60b 100644 --- a/Resources/Textures/Effects/rcd.rsi/meta.json +++ b/Resources/Textures/Effects/rcd.rsi/meta.json @@ -8,7 +8,202 @@ "copyright": "Taken from tgStation at commit https://github.com/tgstation/tgstation/commit/d75cbd0a2900fdec4c12cd5ba986b52ccff03713/icons/effects/effects_rcd.dmi", "states": [ { - "name": "construct", + "name": "construct0", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "construct1", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "construct2", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "construct3", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "construct4", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "deconstruct2", "delays": [ [ 0.1, @@ -45,6 +240,220 @@ 0.1 ] ] + }, + { + "name": "deconstruct4", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "deconstruct6", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "deconstruct8", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "deconstructPreview", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] } ] } diff --git a/Resources/Textures/Interface/Radial/RCD/airlock.png b/Resources/Textures/Interface/Radial/RCD/airlock.png new file mode 100644 index 0000000000000000000000000000000000000000..7b1e0e9aa089b0179f3f63a6348e58d5db13725b GIT binary patch literal 710 zcmV;%0y+JOP)_w=D+yqbaBpyWE*{gqm{sHbX|AOI8!VZH7 z8+d8ic5p#*C@ge^K{`7GOCXFf4>sAdCRr-Fdf0Qz^Yi;Y-}imqHzS*yn+#J%8M0gh z7&?HPamuBorPD^ELAhLJcXyYk3k%$ungZba;UOPaSGhkk!K%brERFcT& z^H`P@>NQQH+wCT{GtM7ietsU$^Rn-OQ%M2{lPQXV5CW;EPZCLz5JI3RN+kY|HesPq zh$M>>!!R&SGu9S>E))v?$0?9y`Dy_qaXv7BxI}?2t-VPr&J3V+QtwN2QMa%+2rf%I?q18WN+;(=Hc^! zC}=a)M?t$sOA-Zb_ST93yk9t>z6f_7Ux@je6uf#{<-?oki^{Srs?{p>#l=jMFp&ap zya@-T2nCc5kbm5b^#}0An+QA0466VQ;P$PT>qL~0~j`dU$%iKY0NyE!vFvP07*qoM6N<$g3SC$xBvhE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/RCD/airlocks.png b/Resources/Textures/Interface/Radial/RCD/airlocks.png new file mode 100644 index 0000000000000000000000000000000000000000..1195d79b58bb2196da79fef53d163110eed1d880 GIT binary patch literal 776 zcmV+j1NZ!iP) zO-mb56o#KzWAvKZN;I*7Qd1apilbc!UAZWA5V|bdO*e(E+Et;O?(2V$7P@mG)s@gf z$f5)ZwTc9cA;_pvgw%Xkr3q6(>~vv_rkPBVw!w`DW^vzp?mh24UvuD6F6Dy7W(JOp zjTxGzAnAG??(uM)9EB0j~70t z(`jkUOn*5VMK30~W56_c=`9+@2qg{m@M7XsmMxN7575zuwLEaq~# zitxF)xtfey64*KZ3Q$yve`3?q(}gm$a{G&SQdt6xW}xr>5m!B4vPnB|lt=A(?C4x0 zIMJP&ShRfk$jAu6V6Z+pFg3BrKr+dv-QAMCTQ`~k=;`UH%>(hzcAU<3QmItI-MX&h zcDu=)t7{%r(JA1S> zpS=3V;bFen+sLHTwGpVs?Pf9WYHK_5PE!-DEe1QO9N+i%YY%~beH#+qq7dLs5dN5~ zxzrxro+KE&Q(F?=ymGI!$^3=!|JDglJDklhDi0Zk!BG`@mN~Guw?{IWEc{sB2!PW| zD_<^vjbs)oc&xEp`xQcw^o+U9x#?%}iQFk5$zb|8e{)kuc+ zRvVHeRX>#W_VyZzqM&ISPx@E?Y2uw)?YA6CFXd7$Tz&)TKqMS2eiK#z0000|)|!nmY^~*`d-MAtmv~Y2ZP<5hiLNcb+SWq9GB9x_0&{%_ zkijQ8lzSU|0w`AisEE?XQnW<0Edy&JjLkx939cW}1AuaXPjUcR?{k=d-H8>@0H~l` z0iTSgK@apk#|R)wpZ#_eF?~GrS%vx|YfWG0D(HhMupK*wvu+<6t_dTL8N(<6TiN^% hoM8$?fFKCF^8$1Ha?PK@$TEX>4Tx04R}tkv&MmP!xqvQ%glE3U*L&$WR5rf~bh2RIvyaN?V~-2a}in2u&K2 z6c<1NmzipIj037> z8L4*mUrKu)ve@B2KYqcS*9Bn@jCJJ zrloVJzVjIhC%u0qzJVhK)RE_e5 ztjh}LEzWAW%9{7&FAU|i?Y{ z03*jdDo`Oge(*o|JzKLdIpHRSVnE=8f^XD6qK(j^EZ5Y1m@fn}dwLI8wp=Fl{!l%%IG#@IdAXpOD4&HGY{ zYMvR1%{ljZo^w{u8WI>;!~~eYGy&~1n~L{dw?OyoZ@6&j!YT5L6e(5kUHn2i1F8tbN*b>~(_};{Hk3lFR-*-v znH^#&x~_wB4r`3Mt|6Usczyc>037z`n}pt|o9{>eZ<+=bRvz01WDM+$`t~(rEqkNx zbd2fiYair`tPKFb>G%aAnqnS|mE!LoGP-%0It>v)YYl5HwAObyCAhUV$)JqcCQRZ9 zc<=(bIL{f{GFgO?#GQAlDuM6jaAuZ>rZwc;1#+F};(d<^{F1_BjLa5cNM$MQAoqdHWzFz*j%u=;Qzb8 z+o@0En81^9aZ}1YTyC?Oi)Xt4fH>^W0)Xg^64!2a!j|IME(lMBD)A* y{4nvU`%7GW6LLK~x+a?D1)^T(Lj{8gNSVl5IF!@_duo84O6IE zsR+ISR7zdBtRS07BbD0a5;n~d`hy`Xqm zb$|IiuRw^GxM9>oiLz8W4Gv%!b@V!|Pyh^rF$Dnd)9rGJALerGHLx&I6q&?r+vY36 zWpP4CAo2Np?hD+P*LXaRL?RIgU^1CtI-Q0C;5ZIuvsoYj$8q@jK)xWM*J;7FZHS_X z@p#N!1Nnl4@2?O40G4GzuW69W3fiAduD>8(kf7HzSeE4=&WPke2}2Z)*Sm002ov JPDHLkV1lxd%lZHS literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/RCD/computers_and_frames.png b/Resources/Textures/Interface/Radial/RCD/computers_and_frames.png new file mode 100644 index 0000000000000000000000000000000000000000..0f17ab5ef1d42abf861dcfa6161dfc21ecb6c3bb GIT binary patch literal 775 zcmV+i1Ni)jP)ok{PLVm2R zo!GcgRD>v2(sjQ#o-+af27}?)HO7JhT&|JaHKKow>-C2()f)`hY%NSpy*PADFc{2! z2aHA|CX-23_a_n|911Zx@kCW$d*wQ%rJ}YF#9}d`(P$dJ6^~OP%Y)p1R#gGExXbSIAX z{?Hr%Xliawn`o9X1*J9fW& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/RCD/deconstruct.png b/Resources/Textures/Interface/Radial/RCD/deconstruct.png new file mode 100644 index 0000000000000000000000000000000000000000..ca9548e0cf932a6f099c84b8585b262696df86a9 GIT binary patch literal 1200 zcmV;h1W)^kP)_7Q_+9?!o%}C@8|vI z`{wige7@h$BR-#x`#B8m^LSw3z8kP719$G+sX973SY=tVCpDF-%1ZL`^8pBScWZA` zleqi(_&ge=&NNSLHH?g^%F1c^1qCaWQdTe!Nbxo`?SDHOow+9^rE}M=T?1nokYrV` zZrwVy%CaQep449+5SZri$chy!biHYU$RdvRb!(7sJi!bFcKZX)sQJ#M+832NV6LWuD7Npc;s@p zv>N`Na1HUz_Z&6aho&NO2JA86sVgrKUiu?P60>#KKC3)YOC1GiHJ z>GAtpiGZQ?XBb8aq7RHF7yXl|?sgek09p^FKn#(Y1`GmEjV4D^dLIEe?{@dz4FejG za4d$1d{bPQrhzX6UR6qYfK#Id1F1R!P~!2VPsl)UM&uSOFe9Qh=tOz0>D}`Ns6HY>>3#O|ue~!Xm$q4Hf&kr`oA-C3A<>Te5(}e&Zi7~jnBo^*+ z)zv-WbUNSET5oJ=X>s@pt_F_*IR|SW?^&|D?M|0Kat^r_fQZpOOutDhTbDxFoK9zL zYisL~o}Qk;va+)DV{2~i1IZ>IGXkxLAW&G0v2-MU;$$)YD}6{j7vkI*Kqv5S*OW)g z2c8^g@caE|gTY|I!i5WG0~aS;1x^=~&GFxYm(B6xbb-@_%yqFX&h4DLSS@lc)~WMm zU;I^TeN03ie!soFQYm#Ip>-T|_uO$62#A0!{>)FWn=Jm`LTj;u9053U=FBJM<>d=b z)Yk54YipaF(1w)CSSH&nbHH^g_nQzs8gGeG--tgJ0twp>f_ zmn~cN*KPL$xt&>(1WQKUnmDU+JF`E$XAQ|Pci(D}VxS6P{arKQztV@drbc^fYIHJ< zh8H(m7WJmdB)k1OT7Ny95e_p=)4K4C4hOxfl5l3-?Q?h&a`1^sqrpYSHf(Sg5k@4U5 zJhB&%cqA4H`~o}{3=hnEIwPY4k^MkkFdY3j6WkMCg3{7b_L?T)Sd4HiHX<^KOT#um z3mjEYiq=aJIiO(^O66;<_i3&7CA6zouf8$v2%J8Bnpv}EvA3gxP$&fb{lh;`0{ZFi z?*nABWdU>m4iWiXDU~N8-N0mr!|~&n@B%D4LOdc4xm*ZbLQqAvkA?^|Y O0000T~J=tB9o2v45|A@`Cn9t<@)B1Zf6^*VbPFV~Z6$S=c!KF)%PN{Q32R ziICcxS1(3jvxga%<%-&-KlPJqAH2PFl|wJK=&78g$9oYSvrlhtUFERMZGZUo)>RJk ztma2@mLBhs#jvSmdjE=>nc;85+t)AGpxecQD+J_xlODg`vs`ZN+NB>E7#R5B65dO{ z78X{bienQ)5|{H$dUXHlX%%et;B>&F>gCe3Kpp2S-a8CzU^giJzUw0{(NEp0000xrWIA literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/RCD/firelock.png b/Resources/Textures/Interface/Radial/RCD/firelock.png new file mode 100644 index 0000000000000000000000000000000000000000..5b581a2aa373e2a7a7953aae0ccab5c8f2c75a3e GIT binary patch literal 637 zcmV-@0)qXCP)R4NtX3V{0nb^t7-Is7>4S@u3Po3`KN1;N5Eq&d`86_O;O zR;zgfa7kV50(X*8tFQ^YxSz3z);AA^^t#%`WW4|Y+9xLffbGLy;5p97j9w2s$008W zLte=X!jP^JWyG}Q3Bd1DBM%o-3H&)XVu!|JBX1+{yt$^a7~;2d93FQ~Tb|PJ+1>TP zf^d{AM*v?oZiG9KtUY!p9J)Tfxad0iF7!smz)#+Y;JucL#njbeG~PJ<|1Aia48UM7 z*lVfRJCXrF>qy7@P6q&R{7pk9H)rl0d~O4PDRbiIS1Bl^$khLOivdwI#<15d6J&QojvNo5)b|Z?%@0jhP%lI zLWB*xw5&V0ACg01qbms8%n()rWsG=`#AQultBwxYyXE`)zTfYg_g>!bCAGG;MlbCW zJ+=!0Jr{5#3Y?#x_iD8oxm=FT%}pN8&T@5l7=Um4`@CCPVtQhNPwVR#hC#Vpj^s>D zO<~(MilQKdU}0e))sX=Ia9Nhob)B6?gPlerSl4wu#82Yf93SUPt%j_3^V6#%Glmb{;S@DttNRkwAP1E#*5M;C2 z?rQ)blgUsl7E?*ihGAe?7KUN8t(_F@I8N`s0$G;-qdwplR3?)-I{}U3N-XAwb8&Go zl>a23u8J^w=ZOB%u{K=4JI3Me(J#RI$@Q&&bPUrpJx$X9s8*{ycy`L?tZP8iG^*7q zj^p49={f@2t9_)?gG?8~_}21BTO-UTgxK=yq-O#G8f_VFH`X3Ri3xc!xNPdf_y$tWo|Cimb*@YJ5Xo(ei$!* z_=^1fMkF7=9jH?(y$rf%p-|w>`xlxWnSXfPCm9(5Aq1+bV%s(c2M374Q7x-aO}gNDm><)Bt_6#DAUF=$lkD#%%2+J!j@6eR_ae z>!Y8%@%GI}bqPZcoU!wfuJ*v$`m_gDcfQxv9$4M^URQYlIe;8M4j>1R1IU4Y6nP)EX>4Tx04R}tkv&MmP!xqvQ%glE3U*L&$WR5rf~bh2RIvyaN?V~-2a}in2u&K2 z6c<1NmzipIj037> z8L4*mUrKu)ve@B2KYqcS*9Bn@jCJJ zrloVJzVjIhC%u0qzJVhK)RE_e5 ztjh}LEzWAW%9{7&FAU|i?Y{ z03*jdDo`Oge(*o|JzKLdIpHRSVnE=N_=^lXd^2>?KY z714cfIhP!Xx4VmC^F8Y>ig6*^6+zKO*^q|?WO*fh&$^R$%bn$wL{VwvDnio8h5ez1 zqHG?U0VGeTGf3X`E6PTx2nvfso6Md8e!9x{w--2`Z(5Z~r~`}(puvi4cNdAoWBv=B zo_~GUO0UPzwZ)-Lrhdj^iX2Oh{Tu3I`zucQXbC`a#s&DEMKBx21*DPN+W{DpMlLWe zwD!TDGf2YO65xcl i@8@K0U|?WifcORW6SO_Bl^qn~_51CdINneh{^%T^eR`f?pwaaCY)gQDYtvFl zDQy6Kuf1NkzVg=A)(uIB8r55Xhkz$B>fS)n??p(c+KX70&I55EB}7+cJsda;5NPjc z0^S0C*LD5#$%*m7%}LZszy&;jsXmG@9cy+K!-{D+1~dY`E#ODqy>Q_vMN#5jk0FLlRyZxPNwdyiV z6J6J_TCE5n?pck0czBp_I9$`f5-^7_zDBC~wT>Ba1$u5hbNQC(ER*-th1xT zIdJYxGMNm;ViD6cqmvWk;kLFmB9RC^Jv}>m3I70oK`}-U<_8$o5{3;F^Fx&C$H1>} zB)1CBWwW7br4q~M^UnJEdVD?~CypOud3iZHmKY7MUfSQ^|BuGd3p@l4LR&E?vI70lrz5S_XvZ%1Sws1N;cHyzKmnA8%|6ziX|`xkF0n&n_%HbNkk;Ude zBoe2q)oQGvp~0zX8cv6UAFf^d*YKUhufF)w%TIKMP8Z_wxcqr;PTokRi;Ig`ESBg* zQrorIxBV9Ax_&gD&$}EB2bD?%tJNAE*Ajcz^R0C9RC8}rbBkr b&|c{;rGF|O5qow*00000NkvXXu0mjf4SBQ| literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/RCD/lv_coil.png b/Resources/Textures/Interface/Radial/RCD/lv_coil.png new file mode 100644 index 0000000000000000000000000000000000000000..f83ed75325b3aeb23335db6ac95d9413a414a80e GIT binary patch literal 850 zcmV-Y1FigtP)EX>4Tx04R}tkv&MmP!xqvQ%glE3U*L&$WR5rf~bh2RIvyaN?V~-2a}in2u&K2 z6c<1NmzipIj037> z8L4*mUrKu)ve@B2KYqcS*9Bn@jCJJ zrloVJzVjIhC%u0qzJVhK)RE_e5 ztjh}LEzWAW%9{7&FAU|i?Y{ z03*jdDo`Oge(*o|JzKLdIpHRSVnE=+ut>5SzMB&TEbHtBSF zPw!3#;Nalk@ZZ6vHlJUfjEVK(s`~2&TL@FmOnL9GAKH4oR51|;86U-@Km`EcCmyrC zZ@rY9h|8kVVq3oHL`i|F?+A%*upPN>E#SCAwdI?Rd}#M^hl)hSd87%6^9auS3kg{6 z0Feh7pCktW2vg4JTv=3_BP1+LIs1D1UM8SET-C#)5AEq@5P>CB9{U?`@)nnDG=g38qEO8iStOy zx%(S7*mjNMC!V%{-e0KBYFK;f^nT7=0_I*oo!*{qqd_DET2I42O+q4|4)5;g6dZB~Qr81bgi9LIK^z(k9VA7%bQ1rxXd#2p(BND_=}-_MNVk?k zh8_WHF&!EQgZ(q4RyuU*&?H;^CC4om8i$x`Q?1%uXb|$Id*Ao_-S>O%_ujiZM<$b@ zmDWLvtu3JC0y<9%j76iBW)i)go_74RfU#(_GCKMkS(ckZUMLh8i$*KI6Vds%&56Vt zTjV1nPZ~Rd<2Et=$k7P-iQGxiAtr? z*)vcq7FhedWQ*7z2;+9kjUPdm)5-UzyLeZI5kdg48(GA=GEDCF95><@DEmT4l7tWf zNs_F++uNV)*8o6|K0q!qSLX`^J^BEUw(#TRO)Elx)vN;9$MgpCIM>ranvVXVYOsF@ zgy3*FS?%i@-po1B8_d%i%(I$RDEmT`eIX8)lL#RYLf~9a^JVg&4*&4}a&t1^a=9?g zJpg3+9j568z*JSXvWr~zcraC!OE`{~bz z_&7Dit@&r%*FvzwQOr&TQu<7te>d{L!n(V=L7zFobcqzT^)saO>iULipja$eZFq5F zAAcZBm(yusnqly5|6U#D4}|dt!f1wpW*AnicCUuJ;L5CrovC?vc-6wv2L~u}0=Q;j z`TW=Fg{s!ZpS>d}77M6q9{@XSp{jirc1P`l9Cg@9Q<9HP*CbuH!tnqA002ovPDHLkV1g9tF*5)F literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/RCD/metal_tile.png b/Resources/Textures/Interface/Radial/RCD/metal_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..14f1ce2bd9d63cc5a257255ebae0adeb4958a546 GIT binary patch literal 297 zcmV+^0oMMBP)hMT|COj%1gaOlFq=cz7HP zGIw~*GNo%Q%M$mh!X=8p7}F97A#ls{558cj;n8)g7hd8RbzOrohG*YHN@?W)bz!3| zxibM<;064y07A&0JD`+;av)%K5pm8(k~O@fgb>1rsA(E=0cn~VUCKE}k|f5p#sW-M zv2CrB47i$rQwRv0z3UTEgpe`7x*${A5nMYnCErcJAsLw3{!LZ_R}R=ZvFR<4O6@ZR vOIvG-VHiLtMNt$8!%$n_wypmHc$^b&xLasC2fjuj00000NkvXXu0mjfypVN- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/RCD/multicoil.png b/Resources/Textures/Interface/Radial/RCD/multicoil.png new file mode 100644 index 0000000000000000000000000000000000000000..9e32919a7baaff69fd7af50625709fcc08970d35 GIT binary patch literal 976 zcmV;>126oEP)EX>4Tx04R}tkv&MmP!xqvQ%glE3U*L&$WR5rf~bh2RIvyaN?V~-2a}in2u&K2 z6c<1NmzipIj037> z8L4*mUrKu)ve@B2KYqcS*9Bn@jCJJ zrloVJzVjIhC%u0qzJVhK)RE_e5 ztjh}LEzWAW%9{7&FAU|i?Y{ z03*jdDo`Oge(*o|JzKLdIpHRSVnE=BjE6vuy8 z7gN{N2?aq6GIYt*W^p@t$dC`9QKfY6(oN7TT|3`b=+=OO7mpo01Y9r;>X0R1FbNhk zREuL*iDM$JgK}=%$i;HU-fz=;clZAHfA<6igTe5>BeH_e-#=Tp;qb!|0K2>E>UKN~ z6C9`X`@GND`(J&G=DzReRlND~i2~SrSH6?;{a69i>qW8bdAS6f_r_{t+X6t!VigV( zyqyZ&lPkhuvYG?B_{O$Hzd7LTo6?<|I8I5lT9?YU3&{2ed%b{LPaTo%RG70>V(;*0 zJ^|;wv3mS;jmeLzrJQozGXA%idaWpAd!%j(imCK->TN#RMp3uD9(1?B8vO6YBYwGJWCn(sEX>4Tx04R}tkv&MmP!xqvQ%glE3U*L&$WR5rf~bh2RIvyaN?V~-2a}in2u&K2 z6c<1NmzipIj037> z8L4*mUrKu)ve@B2KYqcS*9Bn@jCJJ zrloVJzVjIhC%u0qzJVhK)RE_e5 ztjh}LEzWAW%9{7&FAU|i?Y{ z03*jdDo`Oge(*o|JzKLdIpHRSVnE=@pMqo?bA%z>?!JzJS0bv|s^r|(MKUhx6XgX=Nn$hfP0TL1t z622X5Y4djb-At_OrysAa?LkV;w(_pmzhHgZtC)zD%4RV{=K%nOIJ4OMPJ79TxGWz* ztSF9yC`9MSj*w_;` zK5&GDNy*vn9;oZ5zg&KxX zk(1?Azoj~kzv9-JC;>!{=mz_w$Alkn{F8w6-4_M~HC0syeE(pVpo_ zeVp@_fVCG$$(b>&Z<^O^5FxtgY5373Bm(O2@&2BdCnO{!BoO`q2UEGHuY0KG00000 LNkvXXu0mjff4_KD literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/RCD/plating.png b/Resources/Textures/Interface/Radial/RCD/plating.png new file mode 100644 index 0000000000000000000000000000000000000000..d3a63acc610c5a0b0bdf72e2850f18200f539cf2 GIT binary patch literal 436 zcmV;l0ZaagP)?`jEiRV}hGB>ruBr-M*CpkM2z6b1@4Nvp zGlpS6p663`&uo3j^W1yxoP!VoecuOPQ>SWlyWMa+9%twOvnHaMOxw07iXvW~RDFHU zmtu*oj5W?X5cFcL{cHg5!pBPxoC0QsF$TsM@4YbwS(afOM+hN;axVoSgg{kQN#*jws6#P18W@B%R=JI4lpqIX5w(k6`{1k=7bS6qEyi>-8G^ zFW%CGFw9@XDYcrDn62+E!Lw`Iwtd-g(=@QwMmMJ902f7(+<1KZ0RZfF zyX2>)Lt{fk==*+RF)8I_OiBr6MwVrGJRURWN+~e&lsORvM^T5GrmpKneX!r}7xBQF eO}$~ms`vrJ)ueS~515(&0000 zaB^>EX>4U6ba`-PAZ2)IW&i+q+SONCb}gq4{bv*z0uqR3I0A~bGJ`k#Y*CF*e{H|~ zj9hX-G#!$%-qE|5IThf56K3J#Y>e7`WO&rjwY@0_E|x$V|zOz>zr zB5FCCPBz%s;PS9OOL#I~0iD-V@f5GV1M=a!Z+JRYVxTe|MH-|uXa@cWziL8t;jS#B;cP<`83G@-B93Jd3eeS&^Z zA#!;f4B#Tj7AQjj2>3)nD3Q<1nFxL?07#)ZhsX^GkO&Vb$uWe)E^}d%jc+ooy)2yA zrcs*!gdm$Tu&F@-R*Zu9$*~}Y6uA{eBuSRyq>84HVv>|nPFCbJha9uylyfe*W-Xz_ zA|;hvN~uLF*MJ%*HPu{8tyPtsLXd)&V!vXhaSJUrX{qH_T5Z}9K0S8nspnpL?K*gb zfif}D$fJxpbR)N+QfzUPEp2%#TitXb)@GP-%1krQGV9a}wFA|s=Le|Kff_HQY+t@m z!>r5sWI6(C_(L`G$?MS%0ATsEb!{u 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png b/Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png new file mode 100644 index 0000000000000000000000000000000000000000..e51ab094233f2f46c2da73f27f0ab409d4f0abea GIT binary patch literal 1205 zcmV;m1WNmfP)Y}j6o#KWo*6ri?HSt>w~ZS56_KV%NN7t3wIBpYRV4(K%1`JX7Oc8~C1S~jU%{qQ zK@~_<7bWe`R1g9wO&bV-B#k{2&)A8-J;Nd&O+sARUC>R>?#!KY=e_5==e=jd&6_uQ zo+j~}?FE464nW@P;l+y=gV*2v0Nb`(1{#LZ(fXswajssyD%t|jKYEsf?_8oQn?*~d zP<@{U0U;q#uaxmTmrPF&G221YG!#X_CqP0_Yc}w_JbKC?QYfOUDxr8B!!X*((R4+M*j$KOj?&W*kdK)sPB2uGQnony+WB5b>5wps#+ z1~tM#f!~UUtlaFhsU_m97K@|~9Gp1hVmxwRuv2^B;eH0pRrM zQ#<@Zp|Hc((!rO^2&99L?W@npP0C}!7&HDDH{g;g98)_g{_ZmW?~b}W+tX5rvMO=grs(nI&gsU zv*H#yOf z4j4w7uDC`#p;0cZJ+-;vfZJTb}p;YW%KZ%f^TJznUh$<=x z+aXMYVzB^1>UxVoU>q8FCLPc=PChs?Y6U!l4ul8@fb84@6JTKMBvD1>)>ofh zk18tJg{2+-^yJi*fA;(Zq*{e!MB(1u3A0hHbgl!nK#*UnqK3QZQocFkhjXk{Wdgqm_^`oj zfVgPllu8s!CH!sa^Z^3!%WH^`#KgqUIBRr157e6h|1`q9b>ff}QyOO9{vKS{WpH@R zx^;WpJl5CCNN+dChexgPJC?be%`34PY;4UY8g=W#BF5E6obMgV0(Xo`ea_u>8z zT>0p7do$sgp~L)f|27L7HO;y%)ou6vUh{z8V%^zTKQnZ={S3VLF?j*t|FnMrHpwI= T(z-m800000NkvXXu0mjf=vzYl literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/back_hover.png b/Resources/Textures/Interface/Radial/back_hover.png new file mode 100644 index 0000000000000000000000000000000000000000..7378a60fef4f78362e422ba5659a1497a87fb5a3 GIT binary patch literal 495 zcmVfN`NmvpMPcmu$Y=bipvZDB&j-L-&_Pd zZwFPafr$7>1`yPneMi@n2)ErIu=#q6dn3tVuIGdb~DsV_AVeI5K%xx&@~0C`NR&-Kt%FtKCyL8L8CXcVrmuFh8(#NB1r6I zR)&=jLKNGEtbnd5KyT;(K%+ObbWOqLFWMlEy^8`IApnFmU~}}m7+W|2&i86QF##lN z07N8r#*VYyA8t}Wx002ovPDHLkV1lJz)-?bC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/back_normal.png b/Resources/Textures/Interface/Radial/back_normal.png new file mode 100644 index 0000000000000000000000000000000000000000..2c4a20048c6b4f75a7e8c7415b01e5766c7f4fef GIT binary patch literal 525 zcmV+o0`mQdP)As=6vzK9pJDl*w=4w{UV0tcz1ub+{=6gcH;+AYC-j!KwHO-24WeoLmI8 z$brEi4qftWNX0}9bZ8y~l6U{h{oc#FcjRt5o#HR;9)D~ZKn9QjXh}rna%E>2d92q< z02sx{Ur0M1zvpfSpv3{eF!FeMdR$!6d*1$}Etf01IEYvPTKsrC^Z-DqL)?@e0BG7n zljhz8uwE}=7Y zc-|hVwqnoQH-j^wees1qk*Cv&$K&^0{~q8Qbm`z{o`@+0 P00000NkvXXu0mjfftc^@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/button_hover.png b/Resources/Textures/Interface/Radial/button_hover.png new file mode 100644 index 0000000000000000000000000000000000000000..49885a26c37de185dd882df53e6cdf4fea744873 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJS)MMAArXg@6C_?X2+mYiQ#0+A zo3^j&s}A>JMuXFzZ>3$l^2swaQ=>1zaav2{z8$+i3F_+f>*h{BojseioTZIf0tn2` zzN$EK{=C2N{rp*1Kc3KE>%4pS3j3^P6KYxF3FM83J;26GS!GbRxVf&sxe_sFP!9iQg6hj{N znm<1#uFGs-?bgoBdieW$zNDLTf(Z*IQP6$>DEl=R679^D-K+w?{pp#{#|}Wxs$F`eiLT0w_6z#d-q#&B z(Lk5l`?_PaU7$v>nuI2`>jB19W3>;awxhUD?WXQ%-@QtNWw}MlfVgS^h?4Zl#E(zQ j$aWO}`8sxRaB%nrkAA6lY1Zx400000NkvXXu0mjfgC?>Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Radial/close_normal.png b/Resources/Textures/Interface/Radial/close_normal.png new file mode 100644 index 0000000000000000000000000000000000000000..99417f28295d3d2693f15493944818ffc2f036e8 GIT binary patch literal 391 zcmV;20eJq2P)I(57Hhkii}DTN(@<^A#TT6&V8^@>>}akcneK;u2#>m&g^umein5)qz0R zC%vcB={+DIAmG0vav^2e`jfMUpxt#A`ZF|pLg988|ITnlOor!b0Da#X`NizXZz;Y@ lsJ7#!i)yazI3OS(;2W3Ut002ovPDHLkV1g--t;7HT literal 0 HcmV?d00001 From 93bda6f5936d52bd42007552192454565ff84fa9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 04:30:53 +0000 Subject: [PATCH 52/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 46d239e83ff..50019fb804c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: SonicHDC - changes: - - message: Added reinforced diagonal! - type: Add - id: 5767 - time: '2024-01-22T14:53:19.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24393 - author: Alekshhh changes: - message: Hud eyepatches have been added to BarDrobes, MediDrobes and SecTechs. @@ -3794,3 +3787,14 @@ id: 6266 time: '2024-03-31T04:09:15.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/24287 +- author: chromiumboy + changes: + - message: Additional construction options have been added to the Rapid Construction + Device (RCD), along with a radial style UI for fast navigation + type: Add + - message: The number of charges and the length of time required to build a structure + with the RCD now vary depending on the complexity of the constructed fixture + type: Tweak + id: 6267 + time: '2024-03-31T04:29:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/22799 From 32bd6630ef7d8ba4993b626f73a7401f4ea27aaa Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 31 Mar 2024 15:36:02 +1100 Subject: [PATCH 53/83] Update submodule to 217.2.0 (#26592) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index b28b5ed09b3..99c5b0ad083 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit b28b5ed09b361c4f2da5dd9c3e392b79e6b23c51 +Subproject commit 99c5b0ad08351af347db3a122373f2c4482e94dc From 6b7427e3ee8a4453d30b585e0fc4fa734f5f46d5 Mon Sep 17 00:00:00 2001 From: UBlueberry <161545003+UBlueberry@users.noreply.github.com> Date: Sun, 31 Mar 2024 00:39:40 -0400 Subject: [PATCH 54/83] Southern accent (#26543) * created the AccentComponent and the AccentSystem * word replacement schtuhff * made it a trait fr ongg!!1 * Update Content.Server/Speech/EntitySystems/SouthernAccentSystem.cs --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../Components/SouthernAccentComponent.cs | 8 ++++++ .../EntitySystems/SouthernAccentSystem.cs | 28 +++++++++++++++++++ Resources/Locale/en-US/accent/southern.ftl | 17 +++++++++++ Resources/Locale/en-US/traits/traits.ftl | 3 ++ .../Prototypes/Accents/word_replacements.yml | 9 ++++++ Resources/Prototypes/Traits/neutral.yml | 7 +++++ 6 files changed, 72 insertions(+) create mode 100644 Content.Server/Speech/Components/SouthernAccentComponent.cs create mode 100644 Content.Server/Speech/EntitySystems/SouthernAccentSystem.cs create mode 100644 Resources/Locale/en-US/accent/southern.ftl diff --git a/Content.Server/Speech/Components/SouthernAccentComponent.cs b/Content.Server/Speech/Components/SouthernAccentComponent.cs new file mode 100644 index 00000000000..0c44290086f --- /dev/null +++ b/Content.Server/Speech/Components/SouthernAccentComponent.cs @@ -0,0 +1,8 @@ +using Content.Server.Speech.EntitySystems; + +namespace Content.Server.Speech.Components; + +[RegisterComponent] +[Access(typeof(SouthernAccentSystem))] +public sealed partial class SouthernAccentComponent : Component +{ } diff --git a/Content.Server/Speech/EntitySystems/SouthernAccentSystem.cs b/Content.Server/Speech/EntitySystems/SouthernAccentSystem.cs new file mode 100644 index 00000000000..4d401367cca --- /dev/null +++ b/Content.Server/Speech/EntitySystems/SouthernAccentSystem.cs @@ -0,0 +1,28 @@ +using System.Text.RegularExpressions; +using Content.Server.Speech.Components; + +namespace Content.Server.Speech.EntitySystems; + +public sealed class SouthernAccentSystem : EntitySystem +{ + [Dependency] private readonly ReplacementAccentSystem _replacement = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnAccent); + } + + private void OnAccent(EntityUid uid, SouthernAccentComponent component, AccentGetEvent args) + { + var message = args.Message; + + message = _replacement.ApplyReplacements(message, "southern"); + + //They shoulda started runnin' an' hidin' from me! + message = Regex.Replace(message, @"ing\b", "in'"); + message = Regex.Replace(message, @"\band\b", "an'"); + message = Regex.Replace(message, "d've", "da"); + args.Message = message; + } +}; diff --git a/Resources/Locale/en-US/accent/southern.ftl b/Resources/Locale/en-US/accent/southern.ftl new file mode 100644 index 00000000000..7e1657a3ed7 --- /dev/null +++ b/Resources/Locale/en-US/accent/southern.ftl @@ -0,0 +1,17 @@ +accent-southern-words-1 = you all +accent-southern-words-replace-1 = y'all + +accent-southern-words-2 = you guys +accent-southern-words-replace-2 = y'all + +accent-southern-words-3 = isn't +accent-southern-words-replace-3 = ain't + +accent-southern-words-4 = is not +accent-southern-words-replace-4 = ain't + +accent-southern-words-5 = aren't +accent-southern-words-replace-5 = ain't + +accent-southern-words-6 = are not +accent-southern-words-replace-6 = ain't diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index b82cb0033a7..98f0817f744 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -33,5 +33,8 @@ trait-frontal-lisp-desc = You thpeak with a lithp trait-socialanxiety-name = Social Anxiety trait-socialanxiety-desc = You are anxious when you speak and stutter. +trait-southern-name = Southern Drawl +trait-southern-desc = Are you wonderin' what this does? + trait-snoring-name = Snoring trait-snoring-desc = You will snore while sleeping. diff --git a/Resources/Prototypes/Accents/word_replacements.yml b/Resources/Prototypes/Accents/word_replacements.yml index abcfeded22b..3fadc69010a 100644 --- a/Resources/Prototypes/Accents/word_replacements.yml +++ b/Resources/Prototypes/Accents/word_replacements.yml @@ -367,6 +367,15 @@ accent-cowboy-words-98: accent-cowboy-replacement-98 accent-cowboy-words-99: accent-cowboy-replacement-99 +- type: accent + id: southern + wordReplacements: + accent-southern-words-1: accent-southern-words-replace-1 + accent-southern-words-2: accent-southern-words-replace-2 + accent-southern-words-3: accent-southern-words-replace-3 + accent-southern-words-4: accent-southern-words-replace-4 + accent-southern-words-5: accent-southern-words-replace-5 + accent-southern-words-6: accent-southern-words-replace-6 # For the chat sanitization system - type: accent diff --git a/Resources/Prototypes/Traits/neutral.yml b/Resources/Prototypes/Traits/neutral.yml index 9e7f7655076..ba9bd8d8868 100644 --- a/Resources/Prototypes/Traits/neutral.yml +++ b/Resources/Prototypes/Traits/neutral.yml @@ -16,3 +16,10 @@ - type: MothAccent - type: ReplacementAccent accent: dwarf + +- type: trait + id: Southern + name: trait-southern-name + description: trait-southern-desc + components: + - type: SouthernAccent From 1b94e0156311c918d17c7de4b79fedd328e04efc Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Sun, 31 Mar 2024 00:40:22 -0400 Subject: [PATCH 55/83] Prevent storing liquids in equipped buckets (#24412) * Block access to solutions in equipped spillables. * Stop Drink verb appearing if the solution can't be accessed. --- .../Fluids/EntitySystems/PuddleSystem.Spillable.cs | 12 ++++++++++++ .../Nutrition/EntitySystems/DrinkSystem.cs | 4 ++++ .../Components/BlockSolutionAccessComponent.cs | 11 +++++++++++ .../EntitySystems/SharedSolutionContainerSystem.cs | 9 +++++++++ 4 files changed, 36 insertions(+) create mode 100644 Content.Shared/Chemistry/Components/BlockSolutionAccessComponent.cs diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs index ce5b5b36378..a365b8d0a45 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs @@ -29,6 +29,7 @@ protected override void InitializeSpillable() // Openable handles the event if it's closed SubscribeLocalEvent(SplashOnMeleeHit, after: [typeof(OpenableSystem)]); SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); SubscribeLocalEvent(OnOverflow); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent(OnAttemptPacifiedThrow); @@ -114,6 +115,9 @@ private void OnGotEquipped(Entity entity, ref GotEquippedEve if (!_solutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.SolutionName, out var soln, out var solution)) return; + // block access to the solution while worn + AddComp(entity); + if (solution.Volume == 0) return; @@ -122,6 +126,14 @@ private void OnGotEquipped(Entity entity, ref GotEquippedEve TrySplashSpillAt(entity.Owner, Transform(args.Equipee).Coordinates, drainedSolution, out _); } + private void OnGotUnequipped(Entity entity, ref GotUnequippedEvent args) + { + if (!entity.Comp.SpillWorn) + return; + + RemCompDeferred(entity); + } + private void SpillOnLand(Entity entity, ref LandEvent args) { if (!_solutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.SolutionName, out var soln, out var solution)) diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index 5fb090087a7..036c855dbba 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -410,6 +410,10 @@ private void AddDrinkVerb(Entity entity, ref GetVerbsEvent(ev.User, out var stomachs, body)) return; + // Make sure the solution exists + if (!_solutionContainer.TryGetSolution(entity.Owner, entity.Comp.Solution, out var solution)) + return; + // no drinking from living drinks, have to kill them first. if (_mobState.IsAlive(entity)) return; diff --git a/Content.Shared/Chemistry/Components/BlockSolutionAccessComponent.cs b/Content.Shared/Chemistry/Components/BlockSolutionAccessComponent.cs new file mode 100644 index 00000000000..182f92d7d33 --- /dev/null +++ b/Content.Shared/Chemistry/Components/BlockSolutionAccessComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Chemistry.Components; + +/// +/// Blocks all attempts to access solutions contained by this entity. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class BlockSolutionAccessComponent : Component +{ +} diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs index 6e762aa5984..d71fffcdee6 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs @@ -133,6 +133,12 @@ public bool TryGetSolution(Entity container, /// public bool TryGetSolution(Entity container, string? name, [NotNullWhen(true)] out Entity? entity) { + if (TryComp(container, out BlockSolutionAccessComponent? blocker)) + { + entity = null; + return false; + } + EntityUid uid; if (name is null) uid = container; @@ -178,6 +184,9 @@ public bool TryGetSolution(SolutionContainerManagerComponent container, string n if (!Resolve(container, ref container.Comp, logMissing: false)) yield break; + if (HasComp(container)) + yield break; + foreach (var name in container.Comp.Containers) { if (ContainerSystem.GetContainer(container, $"solution@{name}") is ContainerSlot slot && slot.ContainedEntity is { } solutionId) From 1ad509173dc99b9ed577ed5aa696641ebcb354cc Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 04:41:28 +0000 Subject: [PATCH 56/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 50019fb804c..02a44e56383 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,19 +1,4 @@ Entries: -- author: Alekshhh - changes: - - message: Hud eyepatches have been added to BarDrobes, MediDrobes and SecTechs. - They're just cooler looking huds. - type: Add - id: 5768 - time: '2024-01-22T14:59:32.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24132 -- author: CrigCrag - changes: - - message: Removed the revolutionaries gamemode pending a rework. - type: Remove - id: 5769 - time: '2024-01-23T02:11:09.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24420 - author: themias changes: - message: Added different footstep sounds for blood, soda and juice @@ -3798,3 +3783,18 @@ id: 6267 time: '2024-03-31T04:29:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/22799 +- author: UBlueberry + changes: + - message: Nanotransen is now recruitin' personnel that speak with a Southern drawl. + type: Add + id: 6268 + time: '2024-03-31T04:39:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26543 +- author: Tayrtahn + changes: + - message: You can no longer drink out of or put liquids into buckets worn on your + head. + type: Fix + id: 6269 + time: '2024-03-31T04:40:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24412 From 4e618e9387ffe9696e1241f6073aaa03e126832d Mon Sep 17 00:00:00 2001 From: drteaspoon420 <87363733+drteaspoon420@users.noreply.github.com> Date: Sun, 31 Mar 2024 07:59:36 +0300 Subject: [PATCH 57/83] Fix 'Hypopen shouldn't display solution examine text' (#26453) * stealthy hypo * ExaminableSolution hand check when in covert implement. ExaminableSolution now has 'hidden' datafield to enable chemical inspection only in hand. * cleaning code * more cleaning * Hidden datafield renamed to HeldOnly * review --------- Co-authored-by: metalgearsloth --- .../ExaminableSolutionComponent.cs | 6 +++++ .../SharedSolutionContainerSystem.cs | 26 +++++++++++++++++++ .../Objects/Specific/Medical/hypospray.yml | 1 + 3 files changed, 33 insertions(+) diff --git a/Content.Shared/Chemistry/Components/SolutionManager/ExaminableSolutionComponent.cs b/Content.Shared/Chemistry/Components/SolutionManager/ExaminableSolutionComponent.cs index 76e7967db26..1abe81180c8 100644 --- a/Content.Shared/Chemistry/Components/SolutionManager/ExaminableSolutionComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionManager/ExaminableSolutionComponent.cs @@ -5,4 +5,10 @@ public sealed partial class ExaminableSolutionComponent : Component { [DataField, ViewVariables(VVAccess.ReadWrite)] public string Solution = "default"; + + /// + /// If false then the hidden solution is always visible. + /// + [DataField] + public bool HeldOnly; } diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs index d71fffcdee6..5bb97e83ebf 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs @@ -13,6 +13,8 @@ using System.Linq; using System.Runtime.CompilerServices; using System.Text; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; using Dependency = Robust.Shared.IoC.DependencyAttribute; namespace Content.Shared.Chemistry.EntitySystems; @@ -53,6 +55,7 @@ public abstract partial class SharedSolutionContainerSystem : EntitySystem [Dependency] protected readonly ChemicalReactionSystem ChemicalReactionSystem = default!; [Dependency] protected readonly ExamineSystemShared ExamineSystem = default!; [Dependency] protected readonly SharedAppearanceSystem AppearanceSystem = default!; + [Dependency] protected readonly SharedHandsSystem Hands = default!; [Dependency] protected readonly SharedContainerSystem ContainerSystem = default!; public override void Initialize() @@ -729,6 +732,9 @@ private void OnExamineSolution(Entity entity, ref E return; } + if (!CanSeeHiddenSolution(entity,args.Examiner)) + return; + var primaryReagent = solution.GetPrimaryReagentId(); if (string.IsNullOrEmpty(primaryReagent?.Prototype)) @@ -825,6 +831,9 @@ private void OnSolutionExaminableVerb(Entity entity return; } + if (!CanSeeHiddenSolution(entity,args.User)) + return; + var target = args.Target; var user = args.User; var verb = new ExamineVerb() @@ -874,5 +883,22 @@ private FormattedMessage GetSolutionExamine(Solution solution) return msg; } + /// + /// Check if examinable solution requires you to hold the item in hand. + /// + private bool CanSeeHiddenSolution(Entity entity, EntityUid examiner) + { + // If not held-only then it's always visible. + if (!entity.Comp.HeldOnly) + return true; + + if (TryComp(examiner, out HandsComponent? handsComp)) + { + return Hands.IsHolding(examiner, entity, out _, handsComp); + } + + return true; + } + #endregion Event Handlers } diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index abcabd74810..dbc78a84098 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -417,6 +417,7 @@ solution: hypospray - type: ExaminableSolution solution: hypospray + heldOnly: true # Allow examination only when held in hand. - type: Hypospray onlyAffectsMobs: false - type: UseDelay From 213c075e13a2b8aa5f1995dbf95ca82ef4b2ba92 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 05:00:42 +0000 Subject: [PATCH 58/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 02a44e56383..19c1c744cf1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Added different footstep sounds for blood, soda and juice - type: Add - id: 5770 - time: '2024-01-23T04:18:33.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24406 - author: TheShuEd changes: - message: 'Flesh and Rock anom reworked: It should be easier to maintain them now @@ -3798,3 +3791,11 @@ id: 6269 time: '2024-03-31T04:40:22.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/24412 +- author: DrTeaspoon + changes: + - message: Hypopen no longer shows chemical contents when examined, when not held + by the examinee. + type: Fix + id: 6270 + time: '2024-03-31T04:59:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26453 From c91ed9685349efd0cb7dc0e541f5349dbdb17f81 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 31 Mar 2024 16:12:52 +1100 Subject: [PATCH 59/83] Revert Paint (#26593) * Revert "Fix build (#26258)" This reverts commit 6de5fbfafbde700d711a566f6a43f05f7a99e455. * Revert "Spray Paint (Review Ready) (#23003)" This reverts commit e4d5e7f1aebfc37b1bc3453fdb39578f3897b6a1. # Conflicts: # Resources/Prototypes/Entities/Structures/Holographic/projections.yml --- Content.Client/Paint/PaintVisualizerSystem.cs | 116 ------- Content.Server/Paint/PaintSystem.cs | 178 ----------- .../EntitySystems/SpawnItemsOnUseSystem.cs | 6 +- Content.Shared/Paint/PaintComponent.cs | 60 ---- Content.Shared/Paint/PaintDoAfterEvent.cs | 9 - Content.Shared/Paint/PaintRemoverComponent.cs | 24 -- .../Paint/PaintRemoverDoAfterEvent.cs | 9 - Content.Shared/Paint/PaintRemoverSystem.cs | 94 ------ Content.Shared/Paint/PaintedComponent.cs | 41 --- Content.Shared/Paint/SharedPaintSystem.cs | 11 - .../SprayPainter/SharedSprayPainterSystem.cs | 3 - Resources/Locale/en-US/paint/paint.ftl | 8 - .../Prototypes/Catalog/Cargo/cargo_fun.yml | 10 - .../Prototypes/Catalog/Fills/Crates/fun.yml | 48 +-- .../Prototypes/Catalog/Fills/Lockers/misc.yml | 4 - .../Markers/Spawners/Random/crates.yml | 1 - .../Markers/Spawners/Random/maintenance.yml | 5 - .../Prototypes/Entities/Mobs/NPCs/carp.yml | 1 - .../Entities/Mobs/NPCs/revenant.yml | 3 - .../Entities/Mobs/Player/guardian.yml | 2 - .../Entities/Objects/Fun/spray_paint.yml | 292 ------------------ .../Objects/Materials/Sheets/glass.yml | 1 - .../Objects/Materials/Sheets/metal.yml | 1 - .../Objects/Materials/Sheets/other.yml | 3 - .../Entities/Objects/Materials/materials.yml | 1 - .../Entities/Objects/Misc/tiles.yml | 3 - .../Objects/Specific/Janitorial/soap.yml | 1 - .../Objects/Weapons/Melee/e_sword.yml | 4 - .../Structures/Decoration/bonfire.yml | 3 - .../Structures/Holographic/projections.yml | 3 - .../Entities/Structures/hydro_tray.yml | 3 - Resources/Prototypes/tags.yml | 3 - .../Textures/Interface/VerbIcons/paint.svg | 39 --- .../Interface/VerbIcons/paint.svg.192dpi.png | Bin 15653 -> 0 bytes .../VerbIcons/paint.svg.192dpi.png.yml | 2 - .../Fun/spraycans.rsi/clown-inhand-left.png | Bin 20773 -> 0 bytes .../Fun/spraycans.rsi/clown-inhand-right.png | Bin 20783 -> 0 bytes .../Objects/Fun/spraycans.rsi/meta.json | 19 +- .../Fun/spraycans.rsi/spray-inhand-left.png | Bin 21199 -> 0 bytes .../Fun/spraycans.rsi/spray-inhand-right.png | Bin 21213 -> 0 bytes .../Objects/Fun/spraycans.rsi/spray_cap.png | Bin 0 -> 246 bytes 41 files changed, 11 insertions(+), 1000 deletions(-) delete mode 100644 Content.Client/Paint/PaintVisualizerSystem.cs delete mode 100644 Content.Server/Paint/PaintSystem.cs delete mode 100644 Content.Shared/Paint/PaintComponent.cs delete mode 100644 Content.Shared/Paint/PaintDoAfterEvent.cs delete mode 100644 Content.Shared/Paint/PaintRemoverComponent.cs delete mode 100644 Content.Shared/Paint/PaintRemoverDoAfterEvent.cs delete mode 100644 Content.Shared/Paint/PaintRemoverSystem.cs delete mode 100644 Content.Shared/Paint/PaintedComponent.cs delete mode 100644 Content.Shared/Paint/SharedPaintSystem.cs delete mode 100644 Resources/Locale/en-US/paint/paint.ftl delete mode 100644 Resources/Prototypes/Entities/Objects/Fun/spray_paint.yml delete mode 100644 Resources/Textures/Interface/VerbIcons/paint.svg delete mode 100644 Resources/Textures/Interface/VerbIcons/paint.svg.192dpi.png delete mode 100644 Resources/Textures/Interface/VerbIcons/paint.svg.192dpi.png.yml delete mode 100644 Resources/Textures/Objects/Fun/spraycans.rsi/clown-inhand-left.png delete mode 100644 Resources/Textures/Objects/Fun/spraycans.rsi/clown-inhand-right.png delete mode 100644 Resources/Textures/Objects/Fun/spraycans.rsi/spray-inhand-left.png delete mode 100644 Resources/Textures/Objects/Fun/spraycans.rsi/spray-inhand-right.png create mode 100644 Resources/Textures/Objects/Fun/spraycans.rsi/spray_cap.png diff --git a/Content.Client/Paint/PaintVisualizerSystem.cs b/Content.Client/Paint/PaintVisualizerSystem.cs deleted file mode 100644 index 8d037811fab..00000000000 --- a/Content.Client/Paint/PaintVisualizerSystem.cs +++ /dev/null @@ -1,116 +0,0 @@ -using System.Linq; -using Robust.Client.GameObjects; -using static Robust.Client.GameObjects.SpriteComponent; -using Content.Shared.Clothing; -using Content.Shared.Hands; -using Content.Shared.Paint; -using Robust.Client.Graphics; -using Robust.Shared.Prototypes; - -namespace Content.Client.Paint; - -public sealed class PaintedVisualizerSystem : VisualizerSystem -{ - /// - /// Visualizer for Paint which applies a shader and colors the entity. - /// - - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly IPrototypeManager _protoMan = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnHeldVisualsUpdated); - SubscribeLocalEvent(OnShutdown); - SubscribeLocalEvent(OnEquipmentVisualsUpdated); - } - - protected override void OnAppearanceChange(EntityUid uid, PaintedComponent component, ref AppearanceChangeEvent args) - { - var shader = _protoMan.Index(component.ShaderName).Instance(); - - if (args.Sprite == null) - return; - - // What is this even doing? It's not even checking what the value is. - if (!_appearance.TryGetData(uid, PaintVisuals.Painted, out bool isPainted)) - return; - - var sprite = args.Sprite; - - foreach (var spriteLayer in sprite.AllLayers) - { - if (spriteLayer is not Layer layer) - continue; - - if (layer.Shader == null) // If shader isn't null we dont want to replace the original shader. - { - layer.Shader = shader; - layer.Color = component.Color; - } - } - } - - private void OnHeldVisualsUpdated(EntityUid uid, PaintedComponent component, HeldVisualsUpdatedEvent args) - { - if (args.RevealedLayers.Count == 0) - return; - - if (!TryComp(args.User, out SpriteComponent? sprite)) - return; - - foreach (var revealed in args.RevealedLayers) - { - if (!sprite.LayerMapTryGet(revealed, out var layer)) - continue; - - sprite.LayerSetShader(layer, component.ShaderName); - sprite.LayerSetColor(layer, component.Color); - } - } - - private void OnEquipmentVisualsUpdated(EntityUid uid, PaintedComponent component, EquipmentVisualsUpdatedEvent args) - { - if (args.RevealedLayers.Count == 0) - return; - - if (!TryComp(args.Equipee, out SpriteComponent? sprite)) - return; - - foreach (var revealed in args.RevealedLayers) - { - if (!sprite.LayerMapTryGet(revealed, out var layer)) - continue; - - sprite.LayerSetShader(layer, component.ShaderName); - sprite.LayerSetColor(layer, component.Color); - } - } - - private void OnShutdown(EntityUid uid, PaintedComponent component, ref ComponentShutdown args) - { - if (!TryComp(uid, out SpriteComponent? sprite)) - return; - - component.BeforeColor = sprite.Color; - var shader = _protoMan.Index(component.ShaderName).Instance(); - - if (!Terminating(uid)) - { - foreach (var spriteLayer in sprite.AllLayers) - { - if (spriteLayer is not Layer layer) - continue; - - if (layer.Shader == shader) // If shader isn't same as one in component we need to ignore it. - { - layer.Shader = null; - if (layer.Color == component.Color) // If color isn't the same as one in component we don't want to change it. - layer.Color = component.BeforeColor; - } - } - } - } -} diff --git a/Content.Server/Paint/PaintSystem.cs b/Content.Server/Paint/PaintSystem.cs deleted file mode 100644 index 892f961d634..00000000000 --- a/Content.Server/Paint/PaintSystem.cs +++ /dev/null @@ -1,178 +0,0 @@ -using Content.Shared.Popups; -using Content.Shared.Paint; -using Content.Shared.Sprite; -using Content.Shared.DoAfter; -using Content.Shared.Interaction; -using Content.Server.Chemistry.Containers.EntitySystems; -using Robust.Shared.Audio.Systems; -using Content.Shared.Humanoid; -using Robust.Shared.Utility; -using Content.Shared.Verbs; -using Content.Shared.SubFloor; -using Content.Server.Nutrition.Components; -using Content.Shared.Inventory; -using Content.Server.Nutrition.EntitySystems; - -namespace Content.Server.Paint; - -/// -/// Colors target and consumes reagent on each color success. -/// -public sealed class PaintSystem : SharedPaintSystem -{ - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; - [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; - [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly OpenableSystem _openable = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnInteract); - SubscribeLocalEvent(OnPaint); - SubscribeLocalEvent>(OnPaintVerb); - } - - private void OnInteract(EntityUid uid, PaintComponent component, AfterInteractEvent args) - { - if (!args.CanReach) - return; - - if (args.Target is not { Valid: true } target) - return; - - PrepPaint(uid, component, target, args.User); - } - - private void OnPaintVerb(EntityUid uid, PaintComponent component, GetVerbsEvent args) - { - if (!args.CanInteract || !args.CanAccess) - return; - - var paintText = Loc.GetString("paint-verb"); - - var verb = new UtilityVerb() - { - Act = () => - { - PrepPaint(uid, component, args.Target, args.User); - }, - - Text = paintText, - Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/paint.svg.192dpi.png")) - }; - args.Verbs.Add(verb); - } - private void PrepPaint(EntityUid uid, PaintComponent component, EntityUid target, EntityUid user) - { - - var doAfterEventArgs = new DoAfterArgs(EntityManager, user, component.Delay, new PaintDoAfterEvent(), uid, target: target, used: uid) - { - BreakOnMove = true, - NeedHand = true, - BreakOnHandChange = true - }; - - _doAfterSystem.TryStartDoAfter(doAfterEventArgs); - } - - private void OnPaint(Entity entity, ref PaintDoAfterEvent args) - { - if (args.Target == null || args.Used == null) - return; - - if (args.Handled || args.Cancelled) - return; - - if (args.Target is not { Valid: true } target) - return; - - if (!_openable.IsOpen(entity)) - { - _popup.PopupEntity(Loc.GetString("paint-closed", ("used", args.Used)), args.User, args.User, PopupType.Medium); - return; - } - - if (HasComp(target) || HasComp(target)) - { - _popup.PopupEntity(Loc.GetString("paint-failure-painted", ("target", args.Target)), args.User, args.User, PopupType.Medium); - return; - } - - if (!entity.Comp.Blacklist?.IsValid(target, EntityManager) != true || HasComp(target) || HasComp(target)) - { - _popup.PopupEntity(Loc.GetString("paint-failure", ("target", args.Target)), args.User, args.User, PopupType.Medium); - return; - } - - if (TryPaint(entity, target)) - { - EnsureComp(target, out PaintedComponent? paint); - EnsureComp(target); - - paint.Color = entity.Comp.Color; // set the target color to the color specified in the spray paint yml. - _audio.PlayPvs(entity.Comp.Spray, entity); - paint.Enabled = true; - - if (HasComp(target)) // Paint any clothing the target is wearing. - { - if (_inventory.TryGetSlots(target, out var slotDefinitions)) - { - foreach (var slot in slotDefinitions) - { - if (!_inventory.TryGetSlotEntity(target, slot.Name, out var slotEnt)) - continue; - - if (HasComp(slotEnt.Value) || !entity.Comp.Blacklist?.IsValid(slotEnt.Value, - EntityManager) != true - || HasComp(slotEnt.Value) || - HasComp( - slotEnt.Value)) - { - continue; - } - - EnsureComp(slotEnt.Value, out PaintedComponent? slotpaint); - EnsureComp(slotEnt.Value); - slotpaint.Color = entity.Comp.Color; - _appearanceSystem.SetData(slotEnt.Value, PaintVisuals.Painted, true); - Dirty(slotEnt.Value, slotpaint); - } - } - } - - _popup.PopupEntity(Loc.GetString("paint-success", ("target", args.Target)), args.User, args.User, PopupType.Medium); - _appearanceSystem.SetData(target, PaintVisuals.Painted, true); - Dirty(target, paint); - args.Handled = true; - return; - } - - if (!TryPaint(entity, target)) - { - _popup.PopupEntity(Loc.GetString("paint-empty", ("used", args.Used)), args.User, args.User, PopupType.Medium); - return; - } - } - - private bool TryPaint(Entity reagent, EntityUid target) - { - if (HasComp(target) || HasComp(target)) - return false; - - if (_solutionContainer.TryGetSolution(reagent.Owner, reagent.Comp.Solution, out _, out var solution)) - { - var quantity = solution.RemoveReagent(reagent.Comp.Reagent, reagent.Comp.ConsumptionUnit); - if (quantity > 0)// checks quantity of solution is more than 0. - return true; - - if (quantity < 1) - return false; - } - return false; - } -} diff --git a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs index 0b4b13d6e4b..c49bfdec931 100644 --- a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs +++ b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs @@ -80,6 +80,11 @@ private void OnUseInHand(EntityUid uid, SpawnItemsOnUseComponent component, UseI _adminLogger.Add(LogType.EntitySpawn, LogImpact.Low, $"{ToPrettyString(args.User)} used {ToPrettyString(uid)} which spawned {ToPrettyString(entityToPlaceInHands.Value)}"); } + if (component.Sound != null) + { + _audio.PlayPvs(component.Sound, uid); + } + component.Uses--; // Delete entity only if component was successfully used @@ -92,7 +97,6 @@ private void OnUseInHand(EntityUid uid, SpawnItemsOnUseComponent component, UseI if (entityToPlaceInHands != null) { _hands.PickupOrDrop(args.User, entityToPlaceInHands.Value); - _audio.PlayPvs(component.Sound, entityToPlaceInHands.Value); } } } diff --git a/Content.Shared/Paint/PaintComponent.cs b/Content.Shared/Paint/PaintComponent.cs deleted file mode 100644 index ad09f4ca730..00000000000 --- a/Content.Shared/Paint/PaintComponent.cs +++ /dev/null @@ -1,60 +0,0 @@ -using Content.Shared.Chemistry.Reagent; -using Content.Shared.FixedPoint; -using Robust.Shared.Audio; -using Content.Shared.Whitelist; -using Robust.Shared.Prototypes; -using Robust.Shared.GameStates; - -namespace Content.Shared.Paint; - -/// -/// Entity when used on another entity will paint target entity. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -[Access(typeof(SharedPaintSystem))] -public sealed partial class PaintComponent : Component -{ - /// - /// Noise made when paint applied. - /// - [DataField] - public SoundSpecifier Spray = new SoundPathSpecifier("/Audio/Effects/spray2.ogg"); - - /// - /// Solution on the entity that contains the paint. - /// - [DataField] - public string Solution = "drink"; - - /// - /// How long the doafter will take. - /// - [DataField] - public int Delay = 2; - - /// - /// Reagent that will be used as paint. - /// - [DataField, AutoNetworkedField] - public ProtoId Reagent = "SpaceGlue"; - - /// - /// Color that the painting entity will instruct the painted entity to be. - /// - [DataField, AutoNetworkedField] - public Color Color = Color.FromHex("#c62121"); - - [DataField, ViewVariables(VVAccess.ReadWrite)] - public EntityWhitelist? Blacklist; - /// - /// Reagent consumption per use. - /// - [DataField] - public FixedPoint2 ConsumptionUnit = FixedPoint2.New(5); - - /// - /// Duration per unit - /// - [DataField] - public TimeSpan DurationPerUnit = TimeSpan.FromSeconds(6); -} diff --git a/Content.Shared/Paint/PaintDoAfterEvent.cs b/Content.Shared/Paint/PaintDoAfterEvent.cs deleted file mode 100644 index 0851f1541b4..00000000000 --- a/Content.Shared/Paint/PaintDoAfterEvent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.DoAfter; -using Robust.Shared.Serialization; - -namespace Content.Shared.Paint; - -[Serializable, NetSerializable] -public sealed partial class PaintDoAfterEvent : SimpleDoAfterEvent -{ -} diff --git a/Content.Shared/Paint/PaintRemoverComponent.cs b/Content.Shared/Paint/PaintRemoverComponent.cs deleted file mode 100644 index 54d0ed7a71b..00000000000 --- a/Content.Shared/Paint/PaintRemoverComponent.cs +++ /dev/null @@ -1,24 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Audio; - -namespace Content.Shared.Paint; - -/// -/// Removes paint from an entity that was painted with spray paint. -/// -[RegisterComponent, NetworkedComponent] -[Access(typeof(PaintRemoverSystem))] -public sealed partial class PaintRemoverComponent : Component -{ - /// - /// Sound when target is cleaned. - /// - [DataField] - public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Effects/Fluids/watersplash.ogg"); - - /// - /// DoAfter wait time. - /// - [DataField] - public float CleanDelay = 2f; -} diff --git a/Content.Shared/Paint/PaintRemoverDoAfterEvent.cs b/Content.Shared/Paint/PaintRemoverDoAfterEvent.cs deleted file mode 100644 index 940b1aa513c..00000000000 --- a/Content.Shared/Paint/PaintRemoverDoAfterEvent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.DoAfter; -using Robust.Shared.Serialization; - -namespace Content.Shared.Paint; - -[Serializable, NetSerializable] -public sealed partial class PaintRemoverDoAfterEvent : SimpleDoAfterEvent -{ -} diff --git a/Content.Shared/Paint/PaintRemoverSystem.cs b/Content.Shared/Paint/PaintRemoverSystem.cs deleted file mode 100644 index efc1ded0677..00000000000 --- a/Content.Shared/Paint/PaintRemoverSystem.cs +++ /dev/null @@ -1,94 +0,0 @@ -using Content.Shared.Popups; -using Content.Shared.Interaction; -using Content.Shared.DoAfter; -using Content.Shared.Verbs; -using Content.Shared.Sprite; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Timing; - -namespace Content.Shared.Paint; - -/// -/// Removes paint from an entity. -/// -public sealed class PaintRemoverSystem : SharedPaintSystem -{ - [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnInteract); - SubscribeLocalEvent(OnDoAfter); - SubscribeLocalEvent>(OnPaintRemoveVerb); - } - - // When entity is painted, remove paint from that entity. - private void OnInteract(EntityUid uid, PaintRemoverComponent component, AfterInteractEvent args) - { - if (args.Handled) - return; - - if (!args.CanReach || args.Target is not { Valid: true } target || !HasComp(target)) - return; - - _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.CleanDelay, new PaintRemoverDoAfterEvent(), uid, args.Target, uid) - { - BreakOnMove = true, - BreakOnDamage = true, - MovementThreshold = 1.0f, - }); - args.Handled = true; - } - - private void OnDoAfter(EntityUid uid, PaintRemoverComponent component, DoAfterEvent args) - { - if (args.Cancelled || args.Handled || args.Args.Target == null) - return; - - if (args.Target is not { Valid: true } target) - return; - - if (!TryComp(target, out PaintedComponent? paint)) - return; - - paint.Enabled = false; - _audio.PlayPredicted(component.Sound, target, args.User); - _popup.PopupClient(Loc.GetString("paint-removed", ("target", target)), args.User, args.User, PopupType.Medium); - _appearanceSystem.SetData(target, PaintVisuals.Painted, false); - RemComp(target); - Dirty(target, paint); - - args.Handled = true; - } - - private void OnPaintRemoveVerb(EntityUid uid, PaintRemoverComponent component, GetVerbsEvent args) - { - if (!args.CanInteract || !args.CanAccess) - return; - - var paintremovalText = Loc.GetString("paint-remove-verb"); - - var verb = new UtilityVerb() - { - Act = () => - { - - _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.CleanDelay, new PaintRemoverDoAfterEvent(), uid, args.Target, uid) - { - BreakOnMove = true, - BreakOnDamage = true, - MovementThreshold = 1.0f, - }); - }, - - Text = paintremovalText - }; - - args.Verbs.Add(verb); - } -} diff --git a/Content.Shared/Paint/PaintedComponent.cs b/Content.Shared/Paint/PaintedComponent.cs deleted file mode 100644 index a6ee7377e11..00000000000 --- a/Content.Shared/Paint/PaintedComponent.cs +++ /dev/null @@ -1,41 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Paint; - -/// -/// Component applied to target entity when painted. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class PaintedComponent : Component -{ - /// - /// Color of the paint. - /// - [DataField, AutoNetworkedField] - public Color Color = Color.FromHex("#2cdbd5"); - - /// - /// Used to remove the color when component removed. - /// - [DataField, AutoNetworkedField] - public Color BeforeColor; - - /// - /// If paint is enabled. - /// - [DataField, AutoNetworkedField] - public bool Enabled; - - /// - /// Name of the shader. - /// - [DataField, AutoNetworkedField] - public string ShaderName = "Greyscale"; -} - -[Serializable, NetSerializable] -public enum PaintVisuals : byte -{ - Painted, -} diff --git a/Content.Shared/Paint/SharedPaintSystem.cs b/Content.Shared/Paint/SharedPaintSystem.cs deleted file mode 100644 index 10185817b86..00000000000 --- a/Content.Shared/Paint/SharedPaintSystem.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Content.Shared.Paint; - -/// -/// Colors target and consumes reagent on each color success. -/// -public abstract class SharedPaintSystem : EntitySystem -{ - public virtual void UpdateAppearance(EntityUid uid, PaintedComponent? component = null) - { - } -} diff --git a/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs b/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs index feb1cebb8e1..b238c6fc722 100644 --- a/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs +++ b/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs @@ -4,7 +4,6 @@ using Content.Shared.Doors.Components; using Content.Shared.Interaction; using Content.Shared.Popups; -using Content.Shared.Paint; using Content.Shared.SprayPainter.Components; using Content.Shared.SprayPainter.Prototypes; using Robust.Shared.Audio.Systems; @@ -130,8 +129,6 @@ private void OnAirlockInteract(Entity ent, ref Intera return; } - RemComp(ent); - var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, painter.AirlockSprayTime, new SprayPainterDoorDoAfterEvent(sprite, style.Department), args.Used, target: ent, used: args.Used) { BreakOnMove = true, diff --git a/Resources/Locale/en-US/paint/paint.ftl b/Resources/Locale/en-US/paint/paint.ftl deleted file mode 100644 index 200b1f6e3f3..00000000000 --- a/Resources/Locale/en-US/paint/paint.ftl +++ /dev/null @@ -1,8 +0,0 @@ -paint-success = {THE($target)} has been covered in paint! -paint-failure = Can't cover {THE($target)} in paint! -paint-failure-painted = {THE($target)} is already covered in paint! -paint-empty = {THE($used)} is empty! -paint-removed = You clean off the paint! -paint-closed = You must open {THE($used)} first! -paint-verb = Paint -paint-remove-verb = Remove Paint diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml index c29458a1ee5..61085f13b94 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml @@ -68,16 +68,6 @@ category: cargoproduct-category-name-fun group: market -- type: cargoProduct - id: FunSprayPaints - icon: - sprite: Objects/Fun/spraycans.rsi - state: death2_cap - product: CrateFunSprayPaints - cost: 2000 - category: Fun - group: market - - type: cargoProduct id: FunParty icon: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index 17018cb9e60..72cf6c447cc 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -290,21 +290,14 @@ contents: - id: SnapPopBox - id: CrazyGlue + amount: 2 - id: PlasticBanana - - id: FunnyPaint - orGroup: Paint - prob: 0.5 - - id: FunnyPaintYellow - orGroup: Paint - prob: 0.5 - id: WhoopieCushion - id: ToyHammer - id: MrChips - prob: 0.5 - orGroup: Dummy + orGroup: GiftPool - id: MrDips - prob: 0.5 - orGroup: Dummy + orGroup: Giftpool - id: RevolverCapGun - id: BalloonNT - id: ClothingShoesClownLarge @@ -337,41 +330,6 @@ amount: 15 prob: 0.05 -- type: entity - id: CrateFunSprayPaints - name: spray paint crate - description: a crate filled with spray paint. - parent: CratePlastic - suffix: Spray Paint - components: - - type: StorageFill - contents: - - id: SprayPaintBlue - amount: 2 - prob: 0.33 - - id: SprayPaintRed - amount: 2 - prob: 0.33 - - id: SprayPaintOrange - amount: 2 - prob: 0.33 - - id: SprayPaintBlack - amount: 2 - prob: 0.33 - - id: SprayPaintGreen - amount: 2 - prob: 0.33 - - id: SprayPaintPurple - amount: 2 - prob: 0.33 - - id: SprayPaintWhite - amount: 2 - prob: 0.33 - - id: DeathPaint - amount: 2 - - id: DeathPaintTwo - amount: 2 - - type: entity name: dartboard box set description: A box with everything you need for a fun game of darts. diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index 850fb912734..25078dbe57f 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -145,10 +145,6 @@ prob: 0.25 - id: StrangePill prob: 0.20 - - id: DeathPaint - prob: 0.05 - - id: DeathPaintTwo - prob: 0.05 - id: DrinkMopwataBottleRandom prob: 0.20 - id: ModularReceiver diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/crates.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/crates.yml index 883182aae8d..ae7e5bcf762 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/crates.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/crates.yml @@ -44,7 +44,6 @@ - CrateMaterialPlastic - CrateMaterialWood - CrateMaterialPlasteel - - CrateFunSprayPaints - CrateFunArtSupplies - CrateEngineeringCableLV - CrateEngineeringCableMV diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 450b501d1aa..6419c1aaa10 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -173,12 +173,7 @@ - MaterialCloth10 - MaterialWoodPlank10 - ResearchDisk - - DeathPaint - Plunger - - SprayPaintBlue - - SprayPaintRed - - SprayPaintGreen - - SprayPaintOrange - TechnologyDisk - PowerCellMedium - PowerCellSmall diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index 3e6c603626b..73082674736 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -70,7 +70,6 @@ tags: - Carp - DoorBumpOpener - - NoPaint - type: ReplacementAccent accent: genericAggressive - type: Speech diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index 4a35f71ac05..68ebf52dc06 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -93,6 +93,3 @@ - RevenantTheme - type: Speech speechVerb: Ghost - - type: Tag - tags: - - NoPaint diff --git a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml index 9f0d54ee64a..c7cd40988d4 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml @@ -104,7 +104,6 @@ - type: Tag tags: - CannotSuicide - - NoPaint # From the uplink injector - type: entity @@ -213,7 +212,6 @@ tags: - CannotSuicide - FootstepSound - - NoPaint - type: Inventory templateId: holoclown - type: Hands diff --git a/Resources/Prototypes/Entities/Objects/Fun/spray_paint.yml b/Resources/Prototypes/Entities/Objects/Fun/spray_paint.yml deleted file mode 100644 index 1b417f6cde0..00000000000 --- a/Resources/Prototypes/Entities/Objects/Fun/spray_paint.yml +++ /dev/null @@ -1,292 +0,0 @@ -# Base Paints -- type: entity - parent: BaseItem - id: PaintBase - name: spray paint - description: A tin of spray paint. - noSpawn: true - components: - - type: Appearance - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - state: clown_cap - layers: - - state: clown_cap - map: ["enum.OpenableVisuals.Layer"] - - type: Paint - consumptionUnit: 10 - blacklist: - tags: - - NoPaint - - type: Item - sprite: Objects/Fun/spraycans.rsi - heldPrefix: spray - - type: SolutionContainerManager - solutions: - drink: - maxVol: 50 - reagents: - - ReagentId: SpaceGlue - Quantity: 50 - - type: TrashOnSolutionEmpty - solution: drink - - type: Sealable - - type: Openable - sound: - path: /Audio/Effects/pop_high.ogg - closeable: true - closeSound: - path: /Audio/Effects/pop_high.ogg - -# Paints - -# funnypaint -- type: entity - parent: PaintBase - id: FunnyPaint - name: funny paint - description: A tin of funny paint, manufactured by Honk! Co. - components: - - type: Paint - color: "#fa74df" - - type: Item - sprite: Objects/Fun/spraycans.rsi - heldPrefix: clown - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "clown"} - False: {state: "clown_cap"} - -- type: entity - parent: PaintBase - id: FunnyPaintYellow - name: funny paint - description: A tin of funny paint, manufactured by Honk! Co. - components: - - type: Paint - color: "#d5e028" - - type: Item - sprite: Objects/Fun/spraycans.rsi - heldPrefix: clown - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - state: clown2_cap - layers: - - state: clown2_cap - map: ["enum.OpenableVisuals.Layer"] - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "clown2"} - False: {state: "clown2_cap"} - -#death paint -- type: entity - parent: PaintBase - id: DeathPaint - components: - - type: Paint - color: "#ff20c8" - - type: Item - sprite: Objects/Fun/spraycans.rsi - heldPrefix: spray - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - state: death_cap - layers: - - state: death_cap - map: ["enum.OpenableVisuals.Layer"] - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "death"} - False: {state: "death_cap"} - -- type: entity - parent: PaintBase - id: DeathPaintTwo - components: - - type: Paint - color: "#ff2020" - - type: Item - sprite: Objects/Fun/spraycans.rsi - heldPrefix: spray - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - state: death2_cap - layers: - - state: death2_cap - map: ["enum.OpenableVisuals.Layer"] - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "death2"} - False: {state: "death2_cap"} - -#Sprays - -#Blue -- type: entity - parent: PaintBase - id: SprayPaintBlue - suffix: Blue - components: - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - layers: - - state: spray - map: ["Base"] - - state: spray_cap_colors - map: ["enum.OpenableVisuals.Layer"] - color: "#5890f7" - - type: Paint - color: "#5890f7" - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "spray_colors" , color: "#5890f7"} - False: {state: "spray_cap_colors" , color: "#5890f7"} - -#Red -- type: entity - parent: PaintBase - id: SprayPaintRed - suffix: Red - components: - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - layers: - - state: spray - map: ["Base"] - - state: spray_cap_colors - map: ["enum.OpenableVisuals.Layer"] - color: "#ff3b3b" - - type: Paint - color: "#ff3b3b" - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "spray_colors" , color: "#ff3b3b"} - False: {state: "spray_cap_colors" , color: "#ff3b3b"} - -#Green -- type: entity - parent: PaintBase - id: SprayPaintGreen - suffix: Green - components: - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - layers: - - state: spray - map: ["Base"] - - state: spray_cap_colors - map: ["enum.OpenableVisuals.Layer"] - color: "#73f170" - - type: Paint - color: "#73f170" - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "spray_colors" , color: "#73f170"} - False: {state: "spray_cap_colors" , color: "#73f170"} - -#Black -- type: entity - parent: PaintBase - id: SprayPaintBlack - suffix: Black - components: - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - layers: - - state: spray - map: ["Base"] - - state: spray_cap_colors - map: ["enum.OpenableVisuals.Layer"] - color: "#3a3a3a" - - type: Paint - color: "#3a3a3a" - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "spray_colors" , color: "#3a3a3a"} - False: {state: "spray_cap_colors" , color: "#3a3a3a"} - -#Orange -- type: entity - parent: PaintBase - id: SprayPaintOrange - suffix: Orange - components: - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - layers: - - state: spray - map: ["Base"] - - state: spray_cap_colors - map: ["enum.OpenableVisuals.Layer"] - color: "#f6a44b" - - type: Paint - color: "#f6a44b" - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "spray_colors" , color: "#f6a44b"} - False: {state: "spray_cap_colors" , color: "#f6a44b"} - -#Purple -- type: entity - parent: PaintBase - id: SprayPaintPurple - suffix: Purple - components: - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - layers: - - state: spray - map: ["Base"] - - state: spray_cap_colors - map: ["enum.OpenableVisuals.Layer"] - color: "#c063f5" - - type: Paint - color: "#c063f5" - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "spray_colors" , color: "#c063f5"} - False: {state: "spray_cap_colors" , color: "#c063f5"} - -#White -- type: entity - parent: PaintBase - id: SprayPaintWhite - suffix: White - components: - - type: Sprite - sprite: Objects/Fun/spraycans.rsi - layers: - - state: spray - map: ["Base"] - - state: spray_cap_colors - map: ["enum.OpenableVisuals.Layer"] - color: "#f2f2f2" - - type: Paint - color: "#f2f2f2" - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "spray_colors" , color: "#f2f2f2"} - False: {state: "spray_cap_colors" , color: "#f2f2f2"} diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml index 2e0eec7a658..59d8ed19220 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml @@ -15,7 +15,6 @@ - type: Tag tags: - Sheet - - NoPaint - type: Material - type: Damageable damageContainer: Inorganic diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml index 3a887848bf5..82b9f62837a 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml @@ -15,7 +15,6 @@ tags: - Sheet - Metal - - NoPaint - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index 9dc87a9117d..dfb51336289 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -12,7 +12,6 @@ - type: Tag tags: - Sheet - - NoPaint - type: Damageable damageContainer: Inorganic - type: Destructible @@ -111,7 +110,6 @@ - type: Tag tags: - Sheet - - NoPaint - type: entity parent: SheetPlasma @@ -134,7 +132,6 @@ tags: - Plastic - Sheet - - NoPaint - type: Material - type: PhysicalComposition materialComposition: diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 2bfd409c300..d11df5d94e8 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -12,7 +12,6 @@ - type: Tag tags: - RawMaterial - - NoPaint - type: Damageable damageContainer: Inorganic - type: Destructible diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index 6f351ee9db2..3b2e4cd8f1b 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -15,9 +15,6 @@ Blunt: 5 - type: Stack count: 1 - - type: Tag - tags: - - NoPaint - type: Damageable damageContainer: Inorganic - type: Destructible diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml index 56786057d57..5678de6bafc 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml @@ -62,7 +62,6 @@ solution: soap - type: DeleteOnSolutionEmpty solution: soap - - type: PaintRemover - type: FlavorProfile flavors: - clean diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index c5ea3595409..13c8b9cb25c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -78,9 +78,6 @@ malus: 0 - type: Reflect enabled: false - - type: Tag - tags: - - NoPaint - type: IgnitionSource temperature: 700 @@ -159,7 +156,6 @@ - type: Tag tags: - Write - - NoPaint - type: DisarmMalus malus: 0 diff --git a/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml b/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml index f82fe8b51bb..7777153bbac 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml @@ -31,9 +31,6 @@ sound: path: /Audio/Ambience/Objects/fireplace.ogg - type: AlwaysHot - - type: Tag - tags: - - NoPaint - type: entity id: LegionnaireBonfire diff --git a/Resources/Prototypes/Entities/Structures/Holographic/projections.yml b/Resources/Prototypes/Entities/Structures/Holographic/projections.yml index a62af015f72..aaa0ed716d7 100644 --- a/Resources/Prototypes/Entities/Structures/Holographic/projections.yml +++ b/Resources/Prototypes/Entities/Structures/Holographic/projections.yml @@ -25,9 +25,6 @@ behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - - type: Tag - tags: - - NoPaint - type: entity id: HoloFan diff --git a/Resources/Prototypes/Entities/Structures/hydro_tray.yml b/Resources/Prototypes/Entities/Structures/hydro_tray.yml index 43b8bd197a5..1ab1fd5b2fd 100644 --- a/Resources/Prototypes/Entities/Structures/hydro_tray.yml +++ b/Resources/Prototypes/Entities/Structures/hydro_tray.yml @@ -92,9 +92,6 @@ - type: GuideHelp guides: - Botany - - type: Tag - tags: - - NoPaint - type: entity parent: hydroponicsTray diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 8f0038915de..303a9b7c87b 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -911,9 +911,6 @@ - type: Tag id: NoBlockAnchoring -- type: Tag - id: NoPaint - - type: Tag id: NozzleBackTank diff --git a/Resources/Textures/Interface/VerbIcons/paint.svg b/Resources/Textures/Interface/VerbIcons/paint.svg deleted file mode 100644 index 78a56e3570a..00000000000 --- a/Resources/Textures/Interface/VerbIcons/paint.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - diff --git a/Resources/Textures/Interface/VerbIcons/paint.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/paint.svg.192dpi.png deleted file mode 100644 index b7bd88245f2ab069dbf5a39850a866af0c5dc174..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15653 zcmeI3Ym6J!6@c$%At6fwD^Z{%uuL393Tejkve)auHrd!ob^#~b&7$l^6=XbfZ4a?$ zoSE^icLQO0mqGyXgEvtlDvC%zAkn5$c`8a@KR`fGMTH1e8(?XniJ&}$1l*bN^RD+2 zK_vcM%O3mObI&>Ve&?R!`7^f-ZQQW9Ye^RXVDaEUY8ZX5aX+WcN7pCx9q*v8g{6Tp z8-NRLbw3?<9X$>KxOkO5GU|+`FPBxb7*sSf1A~=f3C#u|c1fkAsN12#WMED=;(`DD z@x=h6Yw^IAaGFn-k}$6iOj&UA)W#8YYP%ZM0+%GZVig%VC_+bJD#e0f%awS*^DCp@ z?l2c%yeZE1c%a`6$c(0kn51bzCLHW#RlYaEM4~|<9EpS?s~M3O!W=Jg63>c~9OC7W z$W&i}L>KxMv$U){oLXNEhopEQ?>Hry<0d91f)i5Ev~rvfjYc_Mg|JMlok4OD+s_f;&_0~vOe9iqrploBTdd9Iz2rq*pr zWvk#VO;b5ofJJCHHnJ1i+LiLAW7>Ihj*xZroPkkJhV@+DvFq{MuG#YDv|R%7kWQ1W zi^aBugabg z<-_PbBJ|3l^fO+NdA`YmKMiw`HZ?svS#uC#dC_&i^Kv*OhoW13^QK9-IjTHOag^_J z&^)clg{I0`(<&-XLN6*g$d!y-jB5hvH6m++G<$_}5;(-dQ z!K_j)IDtem$umRcOhH$flvz}CgGoV6R~4^5tLI5|^Q4bMRC+}d9SOJEOP-D9nQ&9k zGQAYXIJcw=dg~he(blDTdz-b5SiQ{Tq**X6L>nfg7}svNiAcTl%>G|h4MqM=|}ffstSqQ-{9s>Eth6fBd;s;r=9#7L-5vzZbuw8|-Se054j$BE zT+3)#&A8*Rs9&9t~OehxY&!OXSB8|`Y+G>Wo zZ(n&QB@4DP{=;%`VkPxGa?qwn|9Ba2S^Lq|JnFKj3vsoBTN^mBr1`0At*Ba+&aS|i z`?oBk>P3gi>)Ht+#?2aQME2*8x>Z;xdsQYxMIOC4!M#>(oAtQu*mu}A>v7wL=@o|V zB*bbsY`DqFy?gNg3pS%$WtivVor!L$??281k9Tx33&mg2&IkVT4%%m>p_To@3tNO6(*U|Na`140%lE;1iXOL1X9 z$Rfo>=7VV|E({1+q`1g@FfGM}0U?VN7nu*HrMNI4WRc<`^TD(f7Y2kZQe0#{n3m$g zfRIIsi_8bpQd}4ivPf}}`CwX#3j;zHDK0V}OiOWLK*%D+MdpKPDJ~2MS){ngd@wD= zg#jUp6c?Efrlq(rAY_r^BJ;tt6c+}BEK*!#KA4u`!hn!PBCf8+1F+CQPrXi{$6Mb! zmwOC78q25y!)XAfRsb-4BLH81gT7|~DDwb(xD5dLegMuj@44#GdH_1ggQ@`d;nH-J03Zr|Ct&;EP&wwn%Znb)2De;!;OJaeCP>1qFb`z&qb zg)8@-^X`%LZ){q!ck-1BpXgZqbmESl&P`|DK7V@ADIfoI-Z{G~r|l^uJHXQD`dFJrr zYaZS8?4R>VcFlroKUneXvSrhEzG~gOYt5<*A7mc6YOA>XZxXv~Xw}p^pRE1e-k*Ri zrS~5^-uH*Y_pQ)xy78qiuK-iITc3L1-+S`XlSgL0{?D<$Ja+2N$%Dtaf!HnY9TInZ z)bZ|<2bV7FeDvz;xy2v6_Sfs5(R#+um`?6F@bIGFb{so;PtTRY>VL&{pML1-rJp4h p2EWO5KELuJFpt6C3+_AuIgtw=ow{Om$WDZhO1a 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 Lg-7S^{K9_#hzGN8 diff --git a/Resources/Textures/Objects/Fun/spraycans.rsi/clown-inhand-right.png b/Resources/Textures/Objects/Fun/spraycans.rsi/clown-inhand-right.png deleted file mode 100644 index 27b68e2cfe5d2b364b379707b887bdfcb115eeb8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20783 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 diff --git a/Resources/Textures/Objects/Fun/spraycans.rsi/meta.json b/Resources/Textures/Objects/Fun/spraycans.rsi/meta.json index f34820cec45..0f883ee2801 100644 --- a/Resources/Textures/Objects/Fun/spraycans.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/spraycans.rsi/meta.json @@ -58,6 +58,9 @@ { "name": "spray" }, + { + "name": "spray_cap" + }, { "name": "spray_cap_colors" }, @@ -67,22 +70,6 @@ { "name": "equipped-BELT", "directions": 4 - }, - { - "name": "clown-inhand-right", - "directions": 4 - }, - { - "name": "clown-inhand-left", - "directions": 4 - }, - { - "name": "spray-inhand-right", - "directions": 4 - }, - { - "name": "spray-inhand-left", - "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Fun/spraycans.rsi/spray-inhand-left.png b/Resources/Textures/Objects/Fun/spraycans.rsi/spray-inhand-left.png deleted file mode 100644 index ad3ad959de4138922ea09c84316ad9369fedf403..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21199 zcmeI4eT*bU6~G%61ILFZ5K;bdTr`SUJN3~YRm1GS-tL`u35)0667CKYuDYsvuVr_7 zn3=oXJBb1O!)S=2Mx!SZC4MAEi5mFBaK=P}e+c}c5s4o$l3-MVL5+!GqWF4xW~ygy z_O6-RC?q|}?$&m{_p18$>f^mPllj=b8{d1$jw^RKj&sT0J&Vim_xkkbg4e_EZ^pO( z7XDn=+H)H5wvKAci@W>X!GCizN4nisty(^2iX)s2&8CABNV z6sw!ERVA~yI!Q^Zp-$^)d#yJ#t*U0ttea-H1A1hlUh7EGO*%)CExH`u-m+ux$7;) zVJE$_B?Pk>Z=sgn$<%stDsy!mpw$-IMs}0-N|LNKvgx{S;ET$_LT`Fj-gR@_)X7HY z>Uwot#ZDY+%`D2UX;2Jvkzj=B3h`>ptC8RuOllbCjAW8yHkJ|{N5=;?7$Ou=u|oVB zp*6w}W$HPhadlXOT6X2x4CKXfCbX(WNqb#(8}YhaHPu#gwO+LsbCSbJSzAcfk~WOU zG+4bl>GDLa#Y7!VSH*l&nGU$1lXDF?sJHHS%GJ@UgBxpcgY4!zcM6Z~a+%;e7sx!_ zIq!SEhv(;oPj~ZrHC^E#XnXJby?;I1wsfLmU9+RcK9`=N24NF&M2Im+a_S=?IK@n0 z#)LbqX{Ds0U`zQN<_0kug&2M*-(Vt`%dt>Xnq~nDa3lmWzKSx_TzMW+t}vWN+NU&} z(zGk7#*s8gxIm>hY929)A`(hXv1>4%7Kq0~!hMR730!x3M;&OUSx6+9R$iaA0X{0= zfuuB&jL<282(664J_Xh$*xpeKqgfP!)zFBrZ`u%o!a&2bP$nX8S~n`J^x zp;j(3A=1B#?)T*)<$2$}XMFp=>+;Y!2; z+22&*6u?MuDLmM4xsiIx84^)K8HX9-`T)GQsY)CHp9mX|F-3!LYSSKtg9^4M7+`;) zzx+|J#t<82M`N!ETaV<@_Yw2_2)UsP2O{PSaiWcc(~`UV?1umZPqP{hThDi;;=&-G z1tDU-3rDPy9@21@D3?eTndq!s2gbq>he}5T$;b$#JvV}*Is_;AAsFMX;lwL!Eb@pJ zF7^=(xkR3XQwdH_j(qAXjTKjc5XFs24l$r2$OknTUOGnum!ODY8YxTxC&WvWf|Ts) zXz-Jdtj-iVrE%!eQf+Uu)0Gfe?Okl7q+-Ah@r&{`48`|!fUtB!Bp6jFfOs+T!yr)F z??soR>Nb4pn;!HIrnd;8VE5#a2ABALZw7*Yg@!nX7&r6{_&WlM**J5?PV4A>?HCeM zxt5a|cs)?y4CQGQ1rbaf=6Wb}!Syh$m`j*zL?8!UOfYj=S9{_#1U)_)EA~Rr{pR-3 zt2PAfrI0Pz?wB+|nwuG9NW+{ni#PjGXD`vJNtGs_4V9)H2A259RXePqW<3*#Pj_cA z1gEKQ-N(ie(>zn!l9}pBZEd8JMBNS9HuI|x+84>FGOMF%@c> zU_KX~z!8SpNVzD7fk9RvTZ_*j2svk`u|RPG6(&R#WL!LiKwd~6PC*rTjC)}erM0rD zoR(HS-L&e-+!~|hPP&ad=~*_ml2&EFnZJ$Po-{Oxg7t9es1?l$24qTXP}F6Xq;x0$ndL-)f+D@?=pJO;(b@yp{H z`{GTrc3?4vcSAdAama_Dsi!l3W1`~0trT-N`ij}I$$bc-=a}p&e8d7i-BBHWyd&o` zyHjp^%RbSzo3;kaPArQ8trAxONLHl8WmyzxmADE(vLYoe%c4N5#8m*26)AC976n=* zt^$y(NQuj`D9|c#6@X+#N?evjfmVsD03<6?;<79Xv`SnBAX$+Tmt|3)RpKfD$%>S? zEQ)qoTJ!ro;&O~wa+`w70IV>eQY<#zOZ+3er5Al&;RnfmpqCu zUi|6)d*4Fux$?-Tp*^Ug1S?#}!7{0M*M3s<-6 zm)Aji^mTaopZYrfLI}hLeU!MjguK)l5 diff --git a/Resources/Textures/Objects/Fun/spraycans.rsi/spray-inhand-right.png b/Resources/Textures/Objects/Fun/spraycans.rsi/spray-inhand-right.png deleted file mode 100644 index 353e47c56fa71b948a6443d4a3a850de2edcb5c0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21213 zcmeI4eTXDS6~H@+A31Y=Bpw$PbeM2*hpCB-F8?c9PG4T>RXf(VA-UxpxvANYqNMu;M(e~3XeL{A}qm_NjeC>s1DVmMz<&rJ2q z&E9q97EPcRcDJ_sy;s%0SM}<>>R}%~cK1j3?s@+n%d++^9bGsMzwb)E-~Lwk`OWBo z7vR^;jiYB;mi3O?lJA?WC%$&OW!-x=S~=Z5z5Ma2j5nu*iUU2>*=&HcWlbOMG=yB& z?NXpuqxwww?@vEdE=6jle9BqI%Z+)x79HJg>J!^{ugL9n$yNDqZO?S43I;ZHTa-GR z8}(MTGgI!`twKAwTq&2jBJK5=@@&#!>Gblk(tO<1C1=V-61!f><5R@(JlngoL@{wH zm{k}?lvQn9wP~sMRj%!U)^t;a)#D3`z3$+znetk@-KbV7TU%RGTWl(Bu2u-=yn<;mSBAB?mfpzpEc z-P|18b*p{kJRs;H9jn<|xzNy+-a+m_~v4+}FxPzVK z&W;dtC)zLZj-i29;=w>lw(3WlShp4ddpfXxE}mv8pSL`s#GWT+B!gCS`R#-iVtpB3)zC zm2sEHYAwX_T(T-=>r%JC1+9#0z(L)0KPOg)ul8?jL^ZPL&&_d%9kChr=jO>Qott$X z*TJ*1+@*{DbR}8gAZU8;`Mq~N4O=Rfk*b18nh+Ft3Z8{B9y*h{Q4-s6d{@E_%z8is zb!`ORRhqe+X{ILxqL>r`Qxf?ilUnQ+t^qK5B^E|8w--2$Sy6t;pX&20zwX2>qBMlE!p zB+L+C-8a2UF+?j{QQ?Ql4B2fUno$ziz&dn#GeiiFBH?IT_{t9nnRF}Ap>`c^3&cFp z3#zaSV8ngF9SFF-7HYy75>i5$4>QDe0eCm43LFBT5Nn4qNxfiV(+-7=3c?c%u(!}( z`>0nV$c@sivD<{uBYfeyh&gVE?7)T%5&I1JL}>xLrEmM!-vl6eno_XYI<76G&oy$H z7a-=^u*FK@AO(Agw26?R4zJ6#Z!8FKAXP|^2sKB_u|wFZ18|ZXfHB|JK5=pz3mu}k zja@_oUm!=ot^~WMk6h|Xg{3b&&hr}+KIDLsAQ#kNc*z{~Y=T0DX(%xToRBY#OH$IS z!^uxJv$|I5l;oky%hjcNt1Te2T3Vgs5eq@WjubH#27dO|-i zeAT3&-4e1Pnk}6aNHgVrg*2!+(|og+b#@D_s*p+XS(8cGp<#&+T{XiRXildB(bewE zhu|vpo%`5Y)AehWEvc!l)Xqj)aoFAxO+C8`sePV`Dz!SSHfnzSD%llBw8Z%va|4sG zaD>khbs*|^u8ol|m4jRe@s8~V#8Y11%^5F_K4S7P8Ng6IGK5J|JtoH@Hk5styE`in zbIeiD=D}~qCf7uLRjXR1Kb-!B(Gk6#J?48pRB<6i0p&LGFvLM$K~C($?&Gl_lsts( zCj~Qs$Jh$S)x>F}a9Vp1@8bG--Fz((58|qT^F$5j0%0@WEDeq$O6|BL8jX!eiX@a) z&ev7%bZ$_@_q~^~@jslPN;jj|5>zsylzmL4H`p`Za2SOX07WGW5gda!$O&zzfoS-sZo{Uu;Rz%WWjHK5Io=JQi1lzv%GBN568A;zb&wRs+GUS+JsK1cs!Ams_ z@f6OrC=^MA6YjZ^1_}=PibeUlilq5!^NF1{^!_Nd^8cvgcCC;|%ZuUCykG8LUCQ^* zEz-PfG07&AQx}M7*Qwm0B7;|y)l3o4KTFBG^Npwv#m=5})q4-N<8ey9iUx`Zn|ge6&K>T*qN>_&9ob zRO49G(Ho~1B6u6xN)CryI7;p6jNTZlcxETX%#EI6x@DgU2mBu+I7>$V9|+Tk)u`M$^prU6u1nF9IXOZ4oF6%z-3tEXcf3}Kr$i)F2f>6 ztH6~5k`XCz85TKO1+E;Bj7WjYu*lIWaOHqxL<(GnMUGa1D+eSaQs6Qyao!y-qkz?B1%5h-vP7CBl4 zt{jkzNP)|+$k8fr<$z>F3S5Roj#hyy2P7j>;4&<7v_V9D?uM|u2 z=<#LC+CE@e4?bjBuUvuOf3d7{*s?C)Z&}sHEo*=L7@gIqE8+?`J?wf_LBpPSDtRY^kPl@^vvbI-OBgh z{6SD3{_5Ozavy84M{a)X_&=Y2;?7_G=HjoGp1rhn_)R~H=tx2X7U8A;nEvG=NTxeNJV7FiDb@}tVsWL9Qxep_<$e?f*|}G z&bh+e{o=ud@ZRr?zG+8zGDBw!FAJcx-keiP)H~D{7-J4;N1z(WIb#@xoyI^lur_6l zEA$QkK;QQr04&QwFXX8Pu7GMlDFpzCF_urQ6{>-Gp5La`xN5D?I}k!(M>pKQ0}`NP whMaT7TD#GvX~H;;&F@hGYKZljF&6;f1$#d@3sMJ{VE_OC07*qoM6N<$f-h%ecmMzZ literal 0 HcmV?d00001 From 90a880a9bea64601db77d5bbb2b184d5371dc082 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 30 Mar 2024 22:20:48 -0700 Subject: [PATCH 60/83] Fix: Prevent single-use hyposprays from getting the toggle draw verb (#26595) Prevent single-use hyposprays from getting the toggle draw verb Co-authored-by: Plykiya --- Content.Shared/Chemistry/Components/HyposprayComponent.cs | 7 +++++++ .../Chemistry/EntitySystems/SharedHypospraySystem.cs | 2 +- .../Entities/Objects/Specific/Medical/hypospray.yml | 8 ++++++++ 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Chemistry/Components/HyposprayComponent.cs b/Content.Shared/Chemistry/Components/HyposprayComponent.cs index 05d202aaaa3..05ef84bbaf7 100644 --- a/Content.Shared/Chemistry/Components/HyposprayComponent.cs +++ b/Content.Shared/Chemistry/Components/HyposprayComponent.cs @@ -30,4 +30,11 @@ public sealed partial class HyposprayComponent : Component [AutoNetworkedField] [DataField(required: true)] public bool OnlyAffectsMobs = false; + + /// + /// Whether or not the hypospray is able to draw from containers or if it's a single use + /// device that can only inject. + /// + [DataField] + public bool InjectOnly = false; } diff --git a/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs index f91e5621f0a..b647d33c98c 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs @@ -27,7 +27,7 @@ public override void Initialize() // private void AddToggleModeVerb(Entity entity, ref GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract || args.Hands == null) + if (!args.CanAccess || !args.CanInteract || args.Hands == null || entity.Comp.InjectOnly) return; var (_, component) = entity; diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index dbc78a84098..d6f3ee75fa6 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -115,6 +115,7 @@ solutionName: pen transferAmount: 15 onlyAffectsMobs: false + injectOnly: true - type: Appearance - type: SolutionContainerVisuals maxFillLevels: 1 @@ -205,6 +206,7 @@ solutionName: pen transferAmount: 20 onlyAffectsMobs: false + injectOnly: true - type: SolutionContainerManager solutions: pen: @@ -236,6 +238,7 @@ solutionName: pen transferAmount: 20 onlyAffectsMobs: false + injectOnly: true - type: SolutionContainerManager solutions: pen: @@ -267,6 +270,8 @@ solutionName: pen transferAmount: 20 onlyAffectsMobs: false + injectOnly: true + - type: SolutionContainerManager solutions: pen: @@ -299,6 +304,7 @@ solutionName: pen transferAmount: 30 onlyAffectsMobs: false + injectOnly: true - type: SolutionContainerManager solutions: pen: @@ -337,6 +343,7 @@ solutionName: pen transferAmount: 30 onlyAffectsMobs: false + injectOnly: true - type: StaticPrice price: 500 - type: Tag @@ -397,6 +404,7 @@ solutionName: pen transferAmount: 30 onlyAffectsMobs: false + injectOnly: true - type: StaticPrice price: 500 - type: Tag From ae8a68b7cd1d4f89b4d9f429b49d5336dccac6bb Mon Sep 17 00:00:00 2001 From: Bixkitts <72874643+Bixkitts@users.noreply.github.com> Date: Sun, 31 Mar 2024 07:21:01 +0200 Subject: [PATCH 61/83] MeleeHitSoundSystem (#25005) * Began work to unscrew melee noises * finished * cleanup * cleanup * Update Content.Server/Weapons/Melee/MeleeWeaponSystem.cs Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> * _Style * Fix merge --------- Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> Co-authored-by: metalgearsloth --- .../Weapons/Melee/MeleeWeaponSystem.cs | 26 ++-- .../Weapons/Ranged/Systems/GunSystem.cs | 2 +- .../Weapons/Melee/MeleeSoundSystem.cs | 108 ++++++++++++++++ .../Weapons/Melee/SharedMeleeWeaponSystem.cs | 119 ++++-------------- 4 files changed, 147 insertions(+), 108 deletions(-) create mode 100644 Content.Shared/Weapons/Melee/MeleeSoundSystem.cs diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs index a01a3240139..ef4b1614770 100644 --- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs @@ -23,6 +23,7 @@ using Content.Shared.Weapons.Melee; using Content.Shared.Weapons.Melee.Events; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Random; @@ -33,16 +34,17 @@ namespace Content.Server.Weapons.Melee; public sealed class MeleeWeaponSystem : SharedMeleeWeaponSystem { - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly BloodstreamSystem _bloodstream = default!; - [Dependency] private readonly ChatSystem _chat = default!; - [Dependency] private readonly DamageExamineSystem _damageExamine = default!; - [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly LagCompensationSystem _lag = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; - [Dependency] private readonly SolutionContainerSystem _solutions = default!; - [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly BloodstreamSystem _bloodstream = default!; + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly DamageExamineSystem _damageExamine = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly LagCompensationSystem _lag = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; + [Dependency] private readonly SolutionContainerSystem _solutions = default!; + [Dependency] private readonly TagSystem _tag = default!; public override void Initialize() { @@ -158,7 +160,8 @@ protected override bool DoDisarm(EntityUid user, DisarmAttackEvent ev, EntityUid return false; } - Audio.PlayPvs(combatMode.DisarmSuccessSound, user, AudioParams.Default.WithVariation(0.025f).WithVolume(5f)); + _audio.PlayPvs(combatMode.DisarmSuccessSound, user, AudioParams.Default.WithVariation(0.025f).WithVolume(5f)); + AdminLogger.Add(LogType.DisarmedAction, $"{ToPrettyString(user):user} used disarm on {ToPrettyString(target):target}"); var targetEnt = Identity.Entity(target, EntityManager); var userEnt = Identity.Entity(user, EntityManager); @@ -175,7 +178,6 @@ protected override bool DoDisarm(EntityUid user, DisarmAttackEvent ev, EntityUid PopupSystem.PopupEntity(msgOther, user, filterOther, true); PopupSystem.PopupEntity(msgUser, target, user); - if (eventArgs.IsStunned) { diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index e64657743de..f5f4e3f1995 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -38,7 +38,7 @@ public sealed partial class GunSystem : SharedGunSystem [Dependency] private readonly StaminaSystem _stamina = default!; [Dependency] private readonly StunSystem _stun = default!; - public const float DamagePitchVariation = SharedMeleeWeaponSystem.DamagePitchVariation; + private const float DamagePitchVariation = 0.05f; public const float GunClumsyChance = 0.5f; public override void Initialize() diff --git a/Content.Shared/Weapons/Melee/MeleeSoundSystem.cs b/Content.Shared/Weapons/Melee/MeleeSoundSystem.cs new file mode 100644 index 00000000000..5bf74802026 --- /dev/null +++ b/Content.Shared/Weapons/Melee/MeleeSoundSystem.cs @@ -0,0 +1,108 @@ +using Content.Shared.Weapons.Melee.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; + +namespace Content.Shared.Weapons.Melee; + +/// +/// This handles +/// +public sealed class MeleeSoundSystem : EntitySystem +{ + [Dependency] private readonly SharedAudioSystem _audio = default!; + + public const float DamagePitchVariation = 0.05f; + + /// + /// Plays the SwingSound from a weapon component + /// for immediate feedback, misses and such + /// (Swinging a weapon goes "whoosh" whether it hits or not) + /// + public void PlaySwingSound(EntityUid userUid, EntityUid weaponUid, MeleeWeaponComponent weaponComponent) + { + _audio.PlayPredicted(weaponComponent.SwingSound, weaponUid, userUid); + } + + /// + /// Takes a "damageType" string as an argument and uses it to + /// search one of the various Dictionaries in the MeleeSoundComponent + /// for a sound to play, and falls back if that fails + /// + /// Serves as a lookup key for a hit sound + /// A sound can be supplied by the itself to override everything else + public void PlayHitSound(EntityUid targetUid, EntityUid? userUid, string? damageType, SoundSpecifier? hitSoundOverride, MeleeWeaponComponent weaponComponent) + { + var hitSound = weaponComponent.HitSound; + var noDamageSound = weaponComponent.NoDamageSound; + + var playedSound = false; + + if (Deleted(targetUid)) + return; + + // hitting can obv destroy an entity so we play at coords and not following them + var coords = Transform(targetUid).Coordinates; + // Play sound based off of highest damage type. + if (TryComp(targetUid, out var damageSoundComp)) + { + if (damageType == null && damageSoundComp.NoDamageSound != null) + { + _audio.PlayPredicted(damageSoundComp.NoDamageSound, coords, userUid, AudioParams.Default.WithVariation(DamagePitchVariation)); + playedSound = true; + } + else if (damageType != null && damageSoundComp.SoundTypes?.TryGetValue(damageType, out var damageSoundType) == true) + { + _audio.PlayPredicted(damageSoundType, coords, userUid, AudioParams.Default.WithVariation(DamagePitchVariation)); + playedSound = true; + } + else if (damageType != null && damageSoundComp.SoundGroups?.TryGetValue(damageType, out var damageSoundGroup) == true) + { + _audio.PlayPredicted(damageSoundGroup, coords, userUid, AudioParams.Default.WithVariation(DamagePitchVariation)); + playedSound = true; + } + } + + // Use weapon sounds if the thing being hit doesn't specify its own sounds. + if (!playedSound) + { + if (hitSoundOverride != null) + { + _audio.PlayPredicted(hitSoundOverride, coords, userUid, AudioParams.Default.WithVariation(DamagePitchVariation)); + playedSound = true; + } + else if (hitSound != null) + { + _audio.PlayPredicted(hitSound, coords, userUid, AudioParams.Default.WithVariation(DamagePitchVariation)); + playedSound = true; + } + else + { + _audio.PlayPredicted(noDamageSound, coords, userUid, AudioParams.Default.WithVariation(DamagePitchVariation)); + playedSound = true; + } + } + + // Fallback to generic sounds. + if (!playedSound) + { + switch (damageType) + { + // Unfortunately heat returns caustic group so can't just use the damagegroup in that instance. + case "Burn": + case "Heat": + case "Radiation": + case "Cold": + _audio.PlayPredicted(new SoundPathSpecifier("/Audio/Items/welder.ogg"), targetUid, userUid, AudioParams.Default.WithVariation(DamagePitchVariation)); + break; + // No damage, fallback to tappies + case null: + _audio.PlayPredicted(new SoundCollectionSpecifier("WeakHit"), targetUid, userUid, AudioParams.Default.WithVariation(DamagePitchVariation)); + break; + case "Brute": + _audio.PlayPredicted(new SoundCollectionSpecifier("MetalThud"), targetUid, userUid, AudioParams.Default.WithVariation(DamagePitchVariation)); + break; + } + } + } + +} diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 6a5127f2c95..e59b4a13fed 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -21,8 +21,6 @@ using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; using Content.Shared.Weapons.Ranged.Systems; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; @@ -36,22 +34,21 @@ namespace Content.Shared.Weapons.Melee; public abstract class SharedMeleeWeaponSystem : EntitySystem { - [Dependency] protected readonly IGameTiming Timing = default!; - [Dependency] protected readonly IMapManager MapManager = default!; - [Dependency] private readonly IPrototypeManager _protoManager = default!; - [Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!; - [Dependency] protected readonly ActionBlockerSystem Blocker = default!; - [Dependency] protected readonly DamageableSystem Damageable = default!; - [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] protected readonly SharedAudioSystem Audio = default!; - [Dependency] protected readonly SharedCombatModeSystem CombatMode = default!; - [Dependency] protected readonly SharedInteractionSystem Interaction = default!; - [Dependency] private readonly SharedPhysicsSystem _physics = default!; - [Dependency] protected readonly SharedPopupSystem PopupSystem = default!; - [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; - [Dependency] private readonly StaminaSystem _stamina = default!; - - public const float DamagePitchVariation = 0.05f; + [Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!; + [Dependency] protected readonly ActionBlockerSystem Blocker = default!; + [Dependency] protected readonly SharedCombatModeSystem CombatMode = default!; + [Dependency] protected readonly DamageableSystem Damageable = default!; + [Dependency] protected readonly SharedInteractionSystem Interaction = default!; + [Dependency] protected readonly IMapManager MapManager = default!; + [Dependency] protected readonly SharedPopupSystem PopupSystem = default!; + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly MeleeSoundSystem _meleeSound = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly StaminaSystem _stamina = default!; + private const int AttackMask = (int) (CollisionGroup.MobMask | CollisionGroup.Opaque); /// @@ -83,7 +80,8 @@ public override void Initialize() SubscribeAllEvent(OnStopAttack); #if DEBUG - SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent (OnMapInit); } private void OnMapInit(EntityUid uid, MeleeWeaponComponent component, MapInitEvent args) @@ -465,7 +463,7 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity } var missEvent = new MeleeHitEvent(new List(), user, meleeUid, damage, null); RaiseLocalEvent(meleeUid, missEvent); - Audio.PlayPredicted(component.SwingSound, meleeUid, user); + _meleeSound.PlaySwingSound(user, meleeUid, component); return; } @@ -520,7 +518,7 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity } - PlayHitSound(target.Value, user, GetHighestDamageSound(modifiedDamage, _protoManager), hitEvent.HitSoundOverride, component.HitSound, component.NoDamageSound); + _meleeSound.PlayHitSound(target.Value, user, GetHighestDamageSound(modifiedDamage, _protoManager), hitEvent.HitSoundOverride, component); if (damageResult?.GetTotal() > FixedPoint2.Zero) { @@ -563,7 +561,9 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU var missEvent = new MeleeHitEvent(new List(), user, meleeUid, damage, direction); RaiseLocalEvent(meleeUid, missEvent); - Audio.PlayPredicted(component.SwingSound, meleeUid, user); + // immediate audio feedback + _meleeSound.PlaySwingSound(user, meleeUid, component); + return true; } @@ -658,7 +658,7 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU if (entities.Count != 0) { var target = entities.First(); - PlayHitSound(target, user, GetHighestDamageSound(appliedDamage, _protoManager), hitEvent.HitSoundOverride, component.HitSound, component.NoDamageSound); + _meleeSound.PlayHitSound(target, user, GetHighestDamageSound(appliedDamage, _protoManager), hitEvent.HitSoundOverride, component); } if (appliedDamage.GetTotal() > FixedPoint2.Zero) @@ -702,77 +702,6 @@ protected virtual bool ArcRaySuccessful(EntityUid targetUid, Vector2 position, A return true; } - public void PlayHitSound(EntityUid target, EntityUid? user, string? type, SoundSpecifier? hitSoundOverride, SoundSpecifier? hitSound, SoundSpecifier? noDamageSound) - { - var playedSound = false; - - if (Deleted(target)) - return; - - // hitting can obv destroy an entity so we play at coords and not following them - var coords = Transform(target).Coordinates; - // Play sound based off of highest damage type. - if (TryComp(target, out var damageSoundComp)) - { - if (type == null && damageSoundComp.NoDamageSound != null) - { - Audio.PlayPredicted(damageSoundComp.NoDamageSound, coords, user, AudioParams.Default.WithVariation(DamagePitchVariation)); - playedSound = true; - } - else if (type != null && damageSoundComp.SoundTypes?.TryGetValue(type, out var damageSoundType) == true) - { - Audio.PlayPredicted(damageSoundType, coords, user, AudioParams.Default.WithVariation(DamagePitchVariation)); - playedSound = true; - } - else if (type != null && damageSoundComp.SoundGroups?.TryGetValue(type, out var damageSoundGroup) == true) - { - Audio.PlayPredicted(damageSoundGroup, coords, user, AudioParams.Default.WithVariation(DamagePitchVariation)); - playedSound = true; - } - } - - // Use weapon sounds if the thing being hit doesn't specify its own sounds. - if (!playedSound) - { - if (hitSoundOverride != null) - { - Audio.PlayPredicted(hitSoundOverride, coords, user, AudioParams.Default.WithVariation(DamagePitchVariation)); - playedSound = true; - } - else if (hitSound != null) - { - Audio.PlayPredicted(hitSound, coords, user, AudioParams.Default.WithVariation(DamagePitchVariation)); - playedSound = true; - } - else if (noDamageSound != null) - { - Audio.PlayPredicted(noDamageSound, coords, user, AudioParams.Default.WithVariation(DamagePitchVariation)); - playedSound = true; - } - } - - // Fallback to generic sounds. - if (!playedSound) - { - switch (type) - { - // Unfortunately heat returns caustic group so can't just use the damagegroup in that instance. - case "Burn": - case "Heat": - case "Radiation": - case "Cold": - Audio.PlayPredicted(new SoundPathSpecifier("/Audio/Items/welder.ogg"), target, user, AudioParams.Default.WithVariation(DamagePitchVariation)); - break; - // No damage, fallback to tappies - case null: - Audio.PlayPredicted(new SoundCollectionSpecifier("WeakHit"), target, user, AudioParams.Default.WithVariation(DamagePitchVariation)); - break; - case "Brute": - Audio.PlayPredicted(new SoundCollectionSpecifier("MetalThud"), target, user, AudioParams.Default.WithVariation(DamagePitchVariation)); - break; - } - } - } public static string? GetHighestDamageSound(DamageSpecifier modifiedDamage, IPrototypeManager protoManager) { @@ -809,7 +738,7 @@ protected virtual bool DoDisarm(EntityUid user, DisarmAttackEvent ev, EntityUid } // Play a sound to give instant feedback; same with playing the animations - Audio.PlayPredicted(component.SwingSound, meleeUid, user); + _meleeSound.PlaySwingSound(user, meleeUid, component); return true; } From f5e5b6b0952e73acfcc500cd2d65d30d6bcd5b96 Mon Sep 17 00:00:00 2001 From: Velcroboy <107660393+IamVelcroboy@users.noreply.github.com> Date: Sun, 31 Mar 2024 00:30:48 -0500 Subject: [PATCH 62/83] Remove physics comp from VendingMachineWallmount (#25632) * Remove physics comp from VendingMachineWallmount * Fixtures removal --------- Co-authored-by: Jeff Co-authored-by: metalgearsloth --- .../Entities/Structures/Machines/vending_machines.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index c97dc4b9dc9..e738510277b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -1391,9 +1391,6 @@ snap: - Wallmount components: - - type: Physics - canCollide: false - - type: Fixtures - type: Sprite drawdepth: WallMountedItems snapCardinals: false From d5052697aa21ffddb9cec49f9b445ce194e41eab Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 31 Mar 2024 07:33:23 +0200 Subject: [PATCH 63/83] Remake hairflowers (#25475) * Add more lily usage (orange hairflower and flowercrown) * comit 2 * ee * more fixes * w * im stupid * bring poppy in authodrobe * weh --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../VendingMachines/Inventories/theater.yml | 2 +- .../Entities/Clothing/Head/misc.yml | 14 ---------- .../Objects/Consumable/Food/produce.yml | 4 +++ .../Entities/Objects/Decoration/present.yml | 2 +- .../Crafting/Graphs/improvised/hairflower.yml | 16 ----------- .../Recipes/Crafting/improvised.yml | 13 --------- .../Head/Misc/hairflower.rsi/icon.png | Bin 259 -> 0 bytes .../Head/Misc/hairflower.rsi/inhand-left.png | Bin 291 -> 0 bytes .../Head/Misc/hairflower.rsi/inhand-right.png | Bin 266 -> 0 bytes .../Head/Misc/hairflower.rsi/meta.json | 26 ------------------ .../Hydroponics/lily.rsi/equipped-HELMET.png | Bin 0 -> 341 bytes .../Specific/Hydroponics/lily.rsi/meta.json | 6 +++- .../poppy.rsi}/equipped-HELMET.png | Bin .../Specific/Hydroponics/poppy.rsi/meta.json | 6 +++- Resources/migration.yml | 7 +++-- 15 files changed, 21 insertions(+), 75 deletions(-) delete mode 100644 Resources/Prototypes/Recipes/Crafting/Graphs/improvised/hairflower.yml delete mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/meta.json create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/lily.rsi/equipped-HELMET.png rename Resources/Textures/{Clothing/Head/Misc/hairflower.rsi => Objects/Specific/Hydroponics/poppy.rsi}/equipped-HELMET.png (100%) diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index 960a8f8797e..5e3c7d94010 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -43,7 +43,7 @@ ClothingMaskScaredMime: 1 ClothingUniformJumpsuitKimono: 1 ClothingHeadHatCasa: 1 - ClothingHeadHatHairflower: 1 + FoodPoppy: 1 ClothingHeadHatGladiator: 1 ClothingUniformJumpsuitGladiator: 1 ClothingHeadHatCowboyBrown: 1 diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 3fd55faf266..1149224fc3e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -47,20 +47,6 @@ graph: flowercrown node: flowercrown -- type: entity - parent: ClothingHeadBase - id: ClothingHeadHatHairflower - name: hairflower - description: A red flower for beautiful ladies. - components: - - type: Sprite - sprite: Clothing/Head/Misc/hairflower.rsi - - type: Clothing - sprite: Clothing/Head/Misc/hairflower.rsi - - type: Construction - graph: hairflower - node: hairflower - - type: entity parent: ClothingHeadLightBase id: ClothingHeadHatPumpkin diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 21eb0fb9423..3f0277e1bc3 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -1220,6 +1220,10 @@ id: FoodPoppy description: A flower with extracts often used in the production of medicine components: + - type: Clothing + slots: + - HEAD + quickEquip: false - type: FlavorProfile flavors: - medicine diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml index 8fdc4793513..a417fdf0769 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml @@ -294,7 +294,7 @@ orGroup: GiftPool - id: ClothingHeadHatFlowerCrown orGroup: GiftPool - - id: ClothingHeadHatHairflower + - id: FoodPoppy orGroup: GiftPool - id: ClothingMaskClown orGroup: GiftPool diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/hairflower.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/hairflower.yml deleted file mode 100644 index 76bc1242901..00000000000 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/hairflower.yml +++ /dev/null @@ -1,16 +0,0 @@ -- type: constructionGraph - id: hairflower - start: start - graph: - - node: start - edges: - - to: hairflower - steps: - - tag: Flower # TODO change to "RedFlower" or "Poppy" tag, so you cant make red flower from bluesyellow etc., when it will be - name: flower - icon: - sprite: Objects/Specific/Hydroponics/poppy.rsi - state: produce - doAfter: 3.5 - - node: hairflower - entity: ClothingHeadHatHairflower diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml index 74148375922..2c55e4fc262 100644 --- a/Resources/Prototypes/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml @@ -98,19 +98,6 @@ sprite: Clothing/Eyes/Misc/blindfold.rsi state: icon -- type: construction - name: hairflower - id: hairflower - graph: hairflower - startNode: start - targetNode: hairflower - category: construction-category-clothing - description: "A red flower for beautiful ladies." - icon: - sprite: Clothing/Head/Misc/hairflower.rsi - state: icon - objectType: Item - - type: construction name: flower crown id: flowercrown diff --git a/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/icon.png b/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/icon.png deleted file mode 100644 index a87d0676fb4ce93c6344dcaa77a8b773c0d439ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJQ=Tr4Ar*7pUfammWFXM+@c)&G zoh=8|3)$itHhkvV!)85u_w3GxtO8->wQS}>!X7=HE16$D$S~Y+CpY)fo$}oEE4SpH zp0qK_WH*z@0tQwMh8sI{R$aQlAkxTCaC81q(GQ>bcp_7}9B!;TUU*ZoO~+_6BSW5k zhwZ{QJUidV?2&%(OQw5mwey>k*YD^w+}$WRd(XS$N5qV{7kD`*3qSi;!4rIFC3ntK z(}McL4--9P7$1F7-JHuYVa_bi?H4#doR9dU8qxr^xrX6zkab-|&C3%&Uom*P`njxg HN@xNAZU}62 diff --git a/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/inhand-left.png deleted file mode 100644 index f838e54e74169b230a7dfd569d5c292509d39f82..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 291 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=uRL8GLn`LHy=BPP4ZLn`LHy=BYSb0+;`ELFT~e<|;C_;WqY!iLuy zIs4a_R3Beioi@FM)8o>&D=kH*geJeqZ{m5tSCGt5-XP7qgZYlc0a>s$3|oXGTvd#gK50YKk1p2$CQP2BR01_nlU zPZ!6KinzD8HgX;c5IFX+d+t>39SvoA3i-^{(&+^Z-!~MqTMIt)Rpe6;E8DoaOQp4A zW95g|iaqtOo)mq5EV$$J%tFNpTOB4w)%I-sdgAkz70-k>zuma$>${0E#-{8~|1!I7 z*!AP|*&M5~(CXk_ED1Ywx~ntG_JwizCn+>AFmWJ=65R{0;_JWuR%}`K`GxMjC9>~y zs}FW>W*3kUVq#8f5rd+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lily.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/lily.rsi/meta.json index ddbda4f0afc..782dc2bfda0 100644 --- a/Resources/Textures/Objects/Specific/Hydroponics/lily.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Hydroponics/lily.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a seed modified by potato1234_X (github) for ss14", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a seed modified by potato1234_X (github) for ss14, equipped-HELMET taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and changed hue", "size": { "x": 32, "y": 32 @@ -27,6 +27,10 @@ }, { "name": "stage-3" + }, + { + "name": "equipped-HELMET", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png b/Resources/Textures/Objects/Specific/Hydroponics/poppy.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png rename to Resources/Textures/Objects/Specific/Hydroponics/poppy.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Objects/Specific/Hydroponics/poppy.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/poppy.rsi/meta.json index 8b6952d030b..b49b49cc850 100644 --- a/Resources/Textures/Objects/Specific/Hydroponics/poppy.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Hydroponics/poppy.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a, equipped-HELMET taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -27,6 +27,10 @@ }, { "name": "stage-3" + }, + { + "name": "equipped-HELMET", + "directions": 4 } ] } diff --git a/Resources/migration.yml b/Resources/migration.yml index 147e322fb5e..8c0fe2064f4 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -237,7 +237,7 @@ AirlockExternalGlassEasyPryLocked: AirlockExternalGlassLocked AirlockGlassShuttleEasyPryLocked: AirlockExternalGlassShuttleLocked AirlockShuttleEasyPryLocked: AirlockExternalShuttleLocked -#2024-03-10 +# 2024-03-10 ClothingBackpackFilledDetective: ClothingBackpackSecurityFilledDetective ClothingBackpackDuffelFilledDetective: ClothingBackpackDuffelSecurityFilledDetective ClothingBackpackSatchelFilledDetective: ClothingBackpackSatchelSecurityFilledDetective @@ -247,10 +247,13 @@ ImprovisedExplosive: FireBomb ImprovisedExplosiveEmpty: FireBombEmpty ImprovisedExplosiveFuel: FireBombFuel +# 2024-03-16 +ClothingHeadHatHairflower: FoodPoppy + # 2024-03-21 RPED: null # 2024-03-30 # These are technically not equivalent, but it probably makes more sense to replace any existing SCAF stuff with SOME kind of armor, instead of just deleting it outright. ClothingHeadHelmetScaf: ClothingHeadHelmetBasic -ClothingOuterArmorScaf: ClothingOuterArmorBasic \ No newline at end of file +ClothingOuterArmorScaf: ClothingOuterArmorBasic From 7c7ff5abf64dff98b922c4adefad9d5f7d755351 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 05:34:29 +0000 Subject: [PATCH 64/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 19c1c744cf1..23cf2b5d2b3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: 'Flesh and Rock anom reworked: It should be easier to maintain them now - (I guess)' - type: Tweak - id: 5771 - time: '2024-01-23T12:32:05.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24381 - author: metalgearsloth changes: - message: Fix thrusters. @@ -3799,3 +3791,13 @@ id: 6270 time: '2024-03-31T04:59:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26453 +- author: lzk228 + changes: + - message: Hairflower was removed. + type: Remove + - message: Now you can wear poppy (and other flowers) on your head instead of crafting + hairflower with it. + type: Tweak + id: 6271 + time: '2024-03-31T05:33:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25475 From d71062a64c569d59bc67c950a34454eef7ccaa14 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 30 Mar 2024 22:37:33 -0700 Subject: [PATCH 65/83] Injector UI shows TransferAmount change, Spilling liquid changes Injector mode (#26596) * Injector UI shows TransferAmount change, spill changes mode * Update Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs * Update Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs --------- Co-authored-by: Plykiya Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- Content.Client/Chemistry/UI/InjectorStatusControl.cs | 3 +++ Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/Content.Client/Chemistry/UI/InjectorStatusControl.cs b/Content.Client/Chemistry/UI/InjectorStatusControl.cs index 9cb699330c2..ba1f97cd1e4 100644 --- a/Content.Client/Chemistry/UI/InjectorStatusControl.cs +++ b/Content.Client/Chemistry/UI/InjectorStatusControl.cs @@ -17,6 +17,7 @@ public sealed class InjectorStatusControl : Control private FixedPoint2 PrevVolume; private FixedPoint2 PrevMaxVolume; + private FixedPoint2 PrevTransferAmount; private InjectorToggleMode PrevToggleState; public InjectorStatusControl(Entity parent, SharedSolutionContainerSystem solutionContainers) @@ -37,11 +38,13 @@ protected override void FrameUpdate(FrameEventArgs args) // only updates the UI if any of the details are different than they previously were if (PrevVolume == solution.Volume && PrevMaxVolume == solution.MaxVolume + && PrevTransferAmount == _parent.Comp.TransferAmount && PrevToggleState == _parent.Comp.ToggleState) return; PrevVolume = solution.Volume; PrevMaxVolume = solution.MaxVolume; + PrevTransferAmount = _parent.Comp.TransferAmount; PrevToggleState = _parent.Comp.ToggleState; // Update current volume and injector state diff --git a/Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs b/Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs index 1e9e742a38f..92ea9621401 100644 --- a/Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs +++ b/Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs @@ -1,3 +1,4 @@ +using Content.Shared.Chemistry.Components; using Content.Shared.Database; using Content.Shared.DoAfter; using Content.Shared.Examine; @@ -62,6 +63,12 @@ private void AddSpillVerb(Entity entity, ref GetVerbsEvent(entity, out var injectorComp)) + { + injectorComp.ToggleState = InjectorToggleMode.Draw; + Dirty(entity, injectorComp); + } }; } else From d512bc141a0a629e5fe49435529b0b5d68bbf9a9 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 31 Mar 2024 17:03:52 +1100 Subject: [PATCH 66/83] Update submodule to 217.2.1 (#26599) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 99c5b0ad083..6764ed56b06 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 99c5b0ad08351af347db3a122373f2c4482e94dc +Subproject commit 6764ed56b06309b56bd35c8ebffdf64882d4c4c1 From 1b69762816c5ae5184baa024a4bcd23b75236a6c Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 31 Mar 2024 02:34:17 -0400 Subject: [PATCH 67/83] disallow unanchoring or opening panels on locked emitters/APEs (#26600) * disallow unanchoring or opening panels on locked emitters/APEs * no locking open panels * oops * needback feedback * Update Content.Shared/Lock/LockSystem.cs * Update Content.Shared/Lock/LockSystem.cs * Update Content.Shared/Lock/LockSystem.cs * sanity --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth --- Content.Client/Popups/PopupSystem.cs | 7 +- Content.Server/Popups/PopupSystem.cs | 2 +- Content.Shared/Lock/LockSystem.cs | 69 ++++++++++++++++--- .../Lock/LockedAnchorableComponent.cs | 13 ++++ .../Lock/LockedWiresPanelComponent.cs | 13 ++++ Content.Shared/Popups/SharedPopupSystem.cs | 2 +- Content.Shared/Wires/SharedWiresSystem.cs | 24 ++++++- Content.Shared/Wires/WiresPanelComponent.cs | 6 ++ .../Locale/en-US/lock/lock-component.ftl | 3 +- .../Mobs/Cyborgs/base_borg_chassis.yml | 1 + .../Structures/Machines/anomaly_equipment.yml | 2 + .../Power/Generation/Singularity/emitter.yml | 2 + 12 files changed, 129 insertions(+), 15 deletions(-) create mode 100644 Content.Shared/Lock/LockedAnchorableComponent.cs create mode 100644 Content.Shared/Lock/LockedWiresPanelComponent.cs diff --git a/Content.Client/Popups/PopupSystem.cs b/Content.Client/Popups/PopupSystem.cs index 479fb02906c..fcc8bfc420a 100644 --- a/Content.Client/Popups/PopupSystem.cs +++ b/Content.Client/Popups/PopupSystem.cs @@ -163,10 +163,13 @@ public override void PopupEntity(string? message, EntityUid uid, Filter filter, PopupEntity(message, uid, type); } - public override void PopupClient(string? message, EntityUid uid, EntityUid recipient, PopupType type = PopupType.Small) + public override void PopupClient(string? message, EntityUid uid, EntityUid? recipient, PopupType type = PopupType.Small) { + if (recipient == null) + return; + if (_timing.IsFirstTimePredicted) - PopupEntity(message, uid, recipient, type); + PopupEntity(message, uid, recipient.Value, type); } public override void PopupEntity(string? message, EntityUid uid, PopupType type = PopupType.Small) diff --git a/Content.Server/Popups/PopupSystem.cs b/Content.Server/Popups/PopupSystem.cs index c5eb3819b54..237ca33a4db 100644 --- a/Content.Server/Popups/PopupSystem.cs +++ b/Content.Server/Popups/PopupSystem.cs @@ -88,7 +88,7 @@ public override void PopupEntity(string? message, EntityUid uid, EntityUid recip RaiseNetworkEvent(new PopupEntityEvent(message, type, GetNetEntity(uid)), actor.PlayerSession); } - public override void PopupClient(string? message, EntityUid uid, EntityUid recipient, PopupType type = PopupType.Small) + public override void PopupClient(string? message, EntityUid uid, EntityUid? recipient, PopupType type = PopupType.Small) { // do nothing duh its for client only } diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index 74cf5496d9a..5644a6b02f6 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Access.Components; using Content.Shared.Access.Systems; +using Content.Shared.Construction.Components; using Content.Shared.DoAfter; using Content.Shared.Emag.Systems; using Content.Shared.Examine; @@ -9,6 +10,7 @@ using Content.Shared.Popups; using Content.Shared.Storage.Components; using Content.Shared.Verbs; +using Content.Shared.Wires; using JetBrains.Annotations; using Robust.Shared.Audio.Systems; using Robust.Shared.Utility; @@ -40,8 +42,11 @@ public override void Initialize() SubscribeLocalEvent(OnEmagged); SubscribeLocalEvent(OnDoAfterLock); SubscribeLocalEvent(OnDoAfterUnlock); - } + SubscribeLocalEvent(OnLockToggleAttempt); + SubscribeLocalEvent(OnAttemptChangePanel); + SubscribeLocalEvent(OnUnanchorAttempt); + } private void OnStartup(EntityUid uid, LockComponent lockComp, ComponentStartup args) { _appearanceSystem.SetData(uid, LockVisuals.Locked, lockComp.Locked); @@ -226,18 +231,18 @@ private bool HasUserAccess(EntityUid uid, EntityUid user, AccessReaderComponent? private void AddToggleLockVerb(EntityUid uid, LockComponent component, GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract || !CanToggleLock(uid, args.User)) + if (!args.CanAccess || !args.CanInteract) return; AlternativeVerb verb = new() { - Act = component.Locked ? - () => TryUnlock(uid, args.User, component) : - () => TryLock(uid, args.User, component), + Act = component.Locked + ? () => TryUnlock(uid, args.User, component) + : () => TryLock(uid, args.User, component), Text = Loc.GetString(component.Locked ? "toggle-lock-verb-unlock" : "toggle-lock-verb-lock"), - Icon = component.Locked ? - new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/unlock.svg.192dpi.png")) : - new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/lock.svg.192dpi.png")), + Icon = !component.Locked + ? new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/lock.svg.192dpi.png")) + : new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/unlock.svg.192dpi.png")), }; args.Verbs.Add(verb); } @@ -275,5 +280,53 @@ private void OnDoAfterUnlock(EntityUid uid, LockComponent component, UnlockDoAft TryUnlock(uid, args.User, skipDoAfter: true); } + + private void OnLockToggleAttempt(Entity ent, ref LockToggleAttemptEvent args) + { + if (args.Cancelled) + return; + + if (!TryComp(ent, out var panel) || !panel.Open) + return; + + if (!args.Silent) + { + _sharedPopupSystem.PopupClient(Loc.GetString("construction-step-condition-wire-panel-close"), + ent, + args.User); + } + args.Cancelled = true; + } + + + private void OnAttemptChangePanel(Entity ent, ref AttemptChangePanelEvent args) + { + if (args.Cancelled) + return; + + if (!TryComp(ent, out var lockComp) || !lockComp.Locked) + return; + + _sharedPopupSystem.PopupClient(Loc.GetString("lock-comp-generic-fail", + ("target", Identity.Entity(ent, EntityManager))), + ent, + args.User); + args.Cancelled = true; + } + + private void OnUnanchorAttempt(Entity ent, ref UnanchorAttemptEvent args) + { + if (args.Cancelled) + return; + + if (!TryComp(ent, out var lockComp) || !lockComp.Locked) + return; + + _sharedPopupSystem.PopupClient(Loc.GetString("lock-comp-generic-fail", + ("target", Identity.Entity(ent, EntityManager))), + ent, + args.User); + args.Cancel(); + } } diff --git a/Content.Shared/Lock/LockedAnchorableComponent.cs b/Content.Shared/Lock/LockedAnchorableComponent.cs new file mode 100644 index 00000000000..781b7f65322 --- /dev/null +++ b/Content.Shared/Lock/LockedAnchorableComponent.cs @@ -0,0 +1,13 @@ +using Content.Shared.Construction.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared.Lock; + +/// +/// This is used for a that cannot be unanchored while locked. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(LockSystem))] +public sealed partial class LockedAnchorableComponent : Component +{ + +} diff --git a/Content.Shared/Lock/LockedWiresPanelComponent.cs b/Content.Shared/Lock/LockedWiresPanelComponent.cs new file mode 100644 index 00000000000..1dbe6a4932d --- /dev/null +++ b/Content.Shared/Lock/LockedWiresPanelComponent.cs @@ -0,0 +1,13 @@ +using Content.Shared.Wires; +using Robust.Shared.GameStates; + +namespace Content.Shared.Lock; + +/// +/// This is used for a that cannot be opened while locked. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(LockSystem))] +public sealed partial class LockedWiresPanelComponent : Component +{ + +} diff --git a/Content.Shared/Popups/SharedPopupSystem.cs b/Content.Shared/Popups/SharedPopupSystem.cs index aeb85de2f59..b199884afb4 100644 --- a/Content.Shared/Popups/SharedPopupSystem.cs +++ b/Content.Shared/Popups/SharedPopupSystem.cs @@ -86,7 +86,7 @@ public abstract class SharedPopupSystem : EntitySystem /// Variant of that only runs on the client, outside of prediction. /// Useful for shared code that is always ran by both sides to avoid duplicate popups. /// - public abstract void PopupClient(string? message, EntityUid uid, EntityUid recipient, PopupType type = PopupType.Small); + public abstract void PopupClient(string? message, EntityUid uid, EntityUid? recipient, PopupType type = PopupType.Small); /// /// Variant of for use with prediction. The local client will show diff --git a/Content.Shared/Wires/SharedWiresSystem.cs b/Content.Shared/Wires/SharedWiresSystem.cs index f069687ffb7..b4b0768e0f7 100644 --- a/Content.Shared/Wires/SharedWiresSystem.cs +++ b/Content.Shared/Wires/SharedWiresSystem.cs @@ -28,15 +28,24 @@ private void OnPanelDoAfter(EntityUid uid, WiresPanelComponent panel, WirePanelD if (args.Cancelled) return; - TogglePanel(uid, panel, !panel.Open); + if (!TogglePanel(uid, panel, !panel.Open, args.User)) + return; + AdminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.User):user} screwed {ToPrettyString(uid):target}'s maintenance panel {(panel.Open ? "open" : "closed")}"); var sound = panel.Open ? panel.ScrewdriverOpenSound : panel.ScrewdriverCloseSound; Audio.PlayPredicted(sound, uid, args.User); + args.Handled = true; } private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) { + if (!Tool.HasQuality(args.Used, ent.Comp.OpeningTool)) + return; + + if (!CanTogglePanel(ent, args.User)) + return; + if (!Tool.UseTool( args.Used, args.User, @@ -89,14 +98,25 @@ protected void UpdateAppearance(EntityUid uid, WiresPanelComponent panel) Appearance.SetData(uid, WiresVisuals.MaintenancePanelState, panel.Open && panel.Visible, appearance); } - public void TogglePanel(EntityUid uid, WiresPanelComponent component, bool open) + public bool TogglePanel(EntityUid uid, WiresPanelComponent component, bool open, EntityUid? user = null) { + if (!CanTogglePanel((uid, component), user)) + return false; + component.Open = open; UpdateAppearance(uid, component); Dirty(uid, component); var ev = new PanelChangedEvent(component.Open); RaiseLocalEvent(uid, ref ev); + return true; + } + + public bool CanTogglePanel(Entity ent, EntityUid? user) + { + var attempt = new AttemptChangePanelEvent(ent.Comp.Open, user); + RaiseLocalEvent(ent, ref attempt); + return !attempt.Cancelled; } public bool IsPanelOpen(Entity entity) diff --git a/Content.Shared/Wires/WiresPanelComponent.cs b/Content.Shared/Wires/WiresPanelComponent.cs index 9c7444778e7..a18e590e21b 100644 --- a/Content.Shared/Wires/WiresPanelComponent.cs +++ b/Content.Shared/Wires/WiresPanelComponent.cs @@ -57,6 +57,12 @@ public sealed partial class WiresPanelComponent : Component public LocId? ExamineTextOpen = "wires-panel-component-on-examine-open"; } +/// +/// Event raised on a before its open state is about to be changed. +/// +[ByRefEvent] +public record struct AttemptChangePanelEvent(bool Open, EntityUid? User, bool Cancelled = false); + /// /// Event raised when a panel is opened or closed. /// diff --git a/Resources/Locale/en-US/lock/lock-component.ftl b/Resources/Locale/en-US/lock/lock-component.ftl index f9f975c96e9..380605697ba 100644 --- a/Resources/Locale/en-US/lock/lock-component.ftl +++ b/Resources/Locale/en-US/lock/lock-component.ftl @@ -3,8 +3,9 @@ lock-comp-on-examined-is-unlocked = The {$entityName} seems to be unlocked. lock-comp-do-lock-success = You lock the {$entityName}. lock-comp-do-unlock-success = You unlock the {$entityName}. lock-comp-has-user-access-fail = Access denied +lock-comp-generic-fail = {CAPITALIZE(SUBJECT($target))} {CONJUGATE-BE($target)} locked. ## ToggleLockVerb toggle-lock-verb-unlock = Unlock -toggle-lock-verb-lock = Lock \ No newline at end of file +toggle-lock-verb-lock = Lock diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index dc6e718290b..5c7a4e139fe 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -140,6 +140,7 @@ - type: Lock locked: true - type: ActivatableUIRequiresLock + - type: LockedWiresPanel - type: Flashable - type: Damageable damageContainer: Silicon diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index cc9f8035fe7..36d77a236d0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -160,6 +160,7 @@ board: APECircuitboard - type: Lock locked: false + - type: LockedWiresPanel - type: AccessReader access: [[ "Research" ]] - type: Emitter @@ -204,6 +205,7 @@ True: { visible: true } False: { visible: false } - type: LockVisuals + - type: LockedAnchorable - type: DeviceNetwork deviceNetId: Wireless receiveFrequencyId: BasicDevice diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml index 52698f62cc0..b999b2bdede 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml @@ -84,6 +84,8 @@ - type: Lock locked: false - type: LockVisuals + - type: LockedAnchorable + - type: LockedWiresPanel - type: AccessReader access: [[ "Engineering" ]] - type: Machine From d1ad6d912643e223ed3717916826c68d3a3ac5e5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 06:35:23 +0000 Subject: [PATCH 68/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 23cf2b5d2b3..e2b7f81231d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix thrusters. - type: Fix - id: 5772 - time: '2024-01-23T12:49:19.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24446 - author: '0x6273' changes: - message: Hotplates now work again @@ -3801,3 +3794,11 @@ id: 6271 time: '2024-03-31T05:33:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/25475 +- author: EmoGarbage404 + changes: + - message: Borgs, Emitters, and APEs can no longer have their panels opened while + locked. APEs and Emitters additionally cannot be unanchored either. + type: Add + id: 6272 + time: '2024-03-31T06:34:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26600 From 83374935262265679e554780bcd42017238f059a Mon Sep 17 00:00:00 2001 From: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> Date: Sun, 31 Mar 2024 08:49:46 +0000 Subject: [PATCH 69/83] Fix grave digging sound indefinitely playing if dug by aghost. (#26420) Admins bypass doafters. As such, the code that runs on doafter completion is ran before the sound is actually created. This then leads to the sound never being stopped, and as such it would infinitely play. This commit gets around the issue by manually stopping the sound should the doafter fail to start. If we could be sure that the doafter would never fail, then we could just move the call to StartDigging above starting the doafter but this is currently not possible. Co-authored-by: metalgearsloth --- Content.Shared/Burial/BurialSystem.cs | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/Content.Shared/Burial/BurialSystem.cs b/Content.Shared/Burial/BurialSystem.cs index e19ac2e9c67..ccf5f1a298f 100644 --- a/Content.Shared/Burial/BurialSystem.cs +++ b/Content.Shared/Burial/BurialSystem.cs @@ -51,8 +51,15 @@ private void OnInteractUsing(EntityUid uid, GraveComponent component, InteractUs BreakOnHandChange = true }; + if (component.Stream == null) + component.Stream = _audioSystem.PlayPredicted(component.DigSound, uid, args.User)?.Entity; + if (!_doAfterSystem.TryStartDoAfter(doAfterEventArgs)) + { + _audioSystem.Stop(component.Stream); return; + } + StartDigging(uid, args.User, args.Used, component); } @@ -111,8 +118,6 @@ private void StartDigging(EntityUid uid, EntityUid user, EntityUid? used, GraveC { _popupSystem.PopupClient(Loc.GetString("grave-start-digging-user", ("grave", uid), ("tool", used)), user, user); _popupSystem.PopupEntity(Loc.GetString("grave-start-digging-others", ("user", user), ("grave", uid), ("tool", used)), user, Filter.PvsExcept(user), true); - if (component.Stream == null) - component.Stream = _audioSystem.PlayPredicted(component.DigSound, uid, user)?.Entity; component.ActiveShovelDigging = true; Dirty(uid, component); } @@ -163,8 +168,15 @@ private void OnRelayMovement(EntityUid uid, GraveComponent component, ref Contai BreakOnDamage = false }; - if (!_doAfterSystem.TryStartDoAfter(doAfterEventArgs, out component.HandDiggingDoAfter)) + + if (component.Stream == null) + component.Stream = _audioSystem.PlayPredicted(component.DigSound, uid, args.Entity)?.Entity; + + if (!_doAfterSystem.TryStartDoAfter(doAfterEventArgs)) + { + _audioSystem.Stop(component.Stream); return; + } StartDigging(uid, args.Entity, null, component); } From ad438a7ac2216c6295cae97025b4204a9c2ae41f Mon Sep 17 00:00:00 2001 From: "Wrexbe (Josh)" <81056464+wrexbe@users.noreply.github.com> Date: Sun, 31 Mar 2024 01:51:02 -0700 Subject: [PATCH 70/83] Make the buttons on the map ui not squished (#26604) Make the map ui work Co-authored-by: wrexbe --- Content.Client/Pinpointer/UI/NavMapControl.cs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index a8ec7b37a0b..677092e1918 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -114,9 +114,16 @@ public NavMapControl() : base(MinDisplayedRange, MaxDisplayedRange, DefaultDispl VerticalExpand = false, Children = { - _zoom, - _beacons, - _recenter, + new BoxContainer() + { + Orientation = BoxContainer.LayoutOrientation.Horizontal, + Children = + { + _zoom, + _beacons, + _recenter + } + } } }; From 55c77af33cad8e173c6281286fc66f3a67579eb5 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 31 Mar 2024 10:52:52 +0200 Subject: [PATCH 71/83] Combine flower crown and wreath (#26605) * Combine flower crown and wreath * huh * huuh :trollface: --- .../Entities/Clothing/Head/misc.yml | 17 +++++++----- .../Entities/Clothing/Neck/misc.yml | 14 ---------- .../Entities/Objects/Decoration/present.yml | 2 +- .../Graphs/improvised/flowercrown.yml | 26 ------------------ .../Graphs/improvised/flowerwreath.yml | 2 +- .../Recipes/Crafting/improvised.yml | 19 ++----------- .../Head/Misc/flower-crown.rsi/icon.png | Bin 5190 -> 0 bytes .../equipped-HELMET.png | Bin .../Misc/flower-wreath.rsi/equipped-NECK.png | Bin .../Misc/flower-wreath.rsi/icon.png | Bin .../meta.json | 6 +++- .../Neck/Misc/flower-wreath.rsi/meta.json | 19 ------------- Resources/migration.yml | 4 +++ 13 files changed, 24 insertions(+), 85 deletions(-) delete mode 100644 Resources/Prototypes/Recipes/Crafting/Graphs/improvised/flowercrown.yml delete mode 100644 Resources/Textures/Clothing/Head/Misc/flower-crown.rsi/icon.png rename Resources/Textures/Clothing/Head/Misc/{flower-crown.rsi => flower-wreath.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/{Neck => Head}/Misc/flower-wreath.rsi/equipped-NECK.png (100%) rename Resources/Textures/Clothing/{Neck => Head}/Misc/flower-wreath.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/Misc/{flower-crown.rsi => flower-wreath.rsi}/meta.json (59%) delete mode 100644 Resources/Textures/Clothing/Neck/Misc/flower-wreath.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 1149224fc3e..c7ba6e0b32a 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -35,17 +35,20 @@ - type: entity parent: ClothingHeadBase - id: ClothingHeadHatFlowerCrown - name: flower crown - description: A coronet of fresh and fragrant flowers. + id: ClothingHeadHatFlowerWreath + name: flower wreath + description: A wreath of colourful flowers. Can be worn both on head and neck. components: - type: Sprite - sprite: Clothing/Head/Misc/flower-crown.rsi + sprite: Clothing/Head/Misc/flower-wreath.rsi - type: Clothing - sprite: Clothing/Head/Misc/flower-crown.rsi + sprite: Clothing/Head/Misc/flower-wreath.rsi + slots: + - HEAD + - neck - type: Construction - graph: flowercrown - node: flowercrown + graph: flowerwreath + node: flowerwreath - type: entity parent: ClothingHeadLightBase diff --git a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml index 6b4be3c9f84..51325c0bbbd 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml @@ -79,17 +79,3 @@ event: !type:StethoscopeActionEvent checkCanInteract: false priority: -1 - -- type: entity - parent: ClothingNeckBase - id: ClothingNeckFlowerWreath - name: flower wreath - description: A wreath of colourful flowers. - components: - - type: Sprite - sprite: Clothing/Neck/Misc/flower-wreath.rsi - - type: Clothing - sprite: Clothing/Neck/Misc/flower-wreath.rsi - - type: Construction - graph: flowerwreath - node: flowerwreath diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml index a417fdf0769..3fb5675f83f 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml @@ -292,7 +292,7 @@ orGroup: GiftPool - id: ClothingHeadHatBunny orGroup: GiftPool - - id: ClothingHeadHatFlowerCrown + - id: ClothingHeadHatFlowerWreath orGroup: GiftPool - id: FoodPoppy orGroup: GiftPool diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/flowercrown.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/flowercrown.yml deleted file mode 100644 index cba454b6638..00000000000 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/flowercrown.yml +++ /dev/null @@ -1,26 +0,0 @@ -- type: constructionGraph - id: flowercrown - start: start - graph: - - node: start - edges: - - to: flowercrown - steps: - - tag: Flower - name: flower - icon: - sprite: Objects/Specific/Hydroponics/poppy.rsi - state: produce - - tag: Flower - name: flower - icon: - sprite: Objects/Specific/Hydroponics/poppy.rsi - state: produce - - tag: Ambrosia - name: ambrosia - icon: - sprite: Objects/Specific/Hydroponics/ambrosia_vulgaris.rsi - state: produce - doAfter: 10 - - node: flowercrown - entity: ClothingHeadHatFlowerCrown diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/flowerwreath.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/flowerwreath.yml index a0a87a14d8e..b8e580230da 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/flowerwreath.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/flowerwreath.yml @@ -23,4 +23,4 @@ state: produce doAfter: 10 - node: flowerwreath - entity: ClothingNeckFlowerWreath + entity: ClothingHeadHatFlowerWreath diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml index 2c55e4fc262..38d254c1416 100644 --- a/Resources/Prototypes/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml @@ -98,19 +98,6 @@ sprite: Clothing/Eyes/Misc/blindfold.rsi state: icon -- type: construction - name: flower crown - id: flowercrown - graph: flowercrown - startNode: start - targetNode: flowercrown - category: construction-category-clothing - description: "A coronet of fresh and fragrant flowers." - icon: - sprite: Clothing/Head/Misc/flower-crown.rsi - state: icon - objectType: Item - - type: construction name: flower wreath id: flowerwreath @@ -118,9 +105,9 @@ startNode: start targetNode: flowerwreath category: construction-category-clothing - description: "A wreath of colourful flowers." + description: A wreath of colourful flowers. Can be worn both on head and neck. icon: - sprite: Clothing/Neck/Misc/flower-wreath.rsi + sprite: Clothing/Head/Misc/flower-wreath.rsi state: icon objectType: Item @@ -226,4 +213,4 @@ description: An improvised explosive made from pipes and wire. icon: sprite: Objects/Weapons/Bombs/pipebomb.rsi - state: icon \ No newline at end of file + state: icon diff --git a/Resources/Textures/Clothing/Head/Misc/flower-crown.rsi/icon.png b/Resources/Textures/Clothing/Head/Misc/flower-crown.rsi/icon.png deleted file mode 100644 index e1e80b9293d449cd5f31588a33d99fcafc8e8f20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5190 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 diff --git a/Resources/Textures/Clothing/Head/Misc/flower-crown.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Misc/flower-wreath.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/Misc/flower-crown.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Misc/flower-wreath.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Neck/Misc/flower-wreath.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Head/Misc/flower-wreath.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/flower-wreath.rsi/equipped-NECK.png rename to Resources/Textures/Clothing/Head/Misc/flower-wreath.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/flower-wreath.rsi/icon.png b/Resources/Textures/Clothing/Head/Misc/flower-wreath.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/flower-wreath.rsi/icon.png rename to Resources/Textures/Clothing/Head/Misc/flower-wreath.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/Misc/flower-crown.rsi/meta.json b/Resources/Textures/Clothing/Head/Misc/flower-wreath.rsi/meta.json similarity index 59% rename from Resources/Textures/Clothing/Head/Misc/flower-crown.rsi/meta.json rename to Resources/Textures/Clothing/Head/Misc/flower-wreath.rsi/meta.json index 2899868b907..c3dc06f19c5 100644 --- a/Resources/Textures/Clothing/Head/Misc/flower-crown.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Misc/flower-wreath.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Kevin Zheng 2022", + "copyright": "Kevin Zheng 2022 | equipped-NECK and icon Drawn by Ubaser.", "size": { "x": 32, "y": 32 @@ -10,6 +10,10 @@ { "name": "icon" }, + { + "name": "equipped-NECK", + "directions": 4 + }, { "name": "equipped-HELMET", "directions": 4 diff --git a/Resources/Textures/Clothing/Neck/Misc/flower-wreath.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/flower-wreath.rsi/meta.json deleted file mode 100644 index 71f798f2c4a..00000000000 --- a/Resources/Textures/Clothing/Neck/Misc/flower-wreath.rsi/meta.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Drawn by Ubaser.", - "size": { - "x": 32, - "y": 32 - }, - - "states": [ - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "icon" - } - ] -} diff --git a/Resources/migration.yml b/Resources/migration.yml index 8c0fe2064f4..f5306c8b7c1 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -257,3 +257,7 @@ RPED: null # These are technically not equivalent, but it probably makes more sense to replace any existing SCAF stuff with SOME kind of armor, instead of just deleting it outright. ClothingHeadHelmetScaf: ClothingHeadHelmetBasic ClothingOuterArmorScaf: ClothingOuterArmorBasic + +# 2024-03-31 +ClothingNeckFlowerWreath: ClothingHeadHatFlowerWreath +ClothingHeadHatFlowerCrown: ClothingHeadHatFlowerWreath From 241b153f6a6466306edf1aa5011829c73f48ceb5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 08:53:58 +0000 Subject: [PATCH 72/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e2b7f81231d..fc8e6bb559d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: '0x6273' - changes: - - message: Hotplates now work again - type: Fix - id: 5773 - time: '2024-01-23T13:06:14.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24450 - author: Boaz1111 changes: - message: Lizards can now properly eat fruit cakes and banana cream pie slices. @@ -3802,3 +3795,11 @@ id: 6272 time: '2024-03-31T06:34:17.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26600 +- author: lzk228 + changes: + - message: Flower crown and wreath were combined. Now you can wear wreath both on + head and on neck. + type: Tweak + id: 6273 + time: '2024-03-31T08:52:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26605 From 2a1903dae0948e315761fbde46552b5ceb3b57e1 Mon Sep 17 00:00:00 2001 From: Ubaser <134914314+UbaserB@users.noreply.github.com> Date: Sun, 31 Mar 2024 22:48:36 +1100 Subject: [PATCH 73/83] Add AP damage to throwing knives (#26380) * add * ap * no more stam dmg --- Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml index 03654061ced..afe4644517c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml @@ -275,6 +275,7 @@ - type: EmbeddableProjectile sound: /Audio/Weapons/star_hit.ogg - type: DamageOtherOnHit + ignoreResistances: true damage: types: Slash: 10 From 7f2e6ccbb887addf5c3381f8c84fff6c451d1405 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 11:49:42 +0000 Subject: [PATCH 74/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fc8e6bb559d..41e707cb49a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Boaz1111 - changes: - - message: Lizards can now properly eat fruit cakes and banana cream pie slices. - type: Fix - id: 5774 - time: '2024-01-23T18:08:32.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24457 - author: icekot8 changes: - message: The bounty of briefcases has been removed @@ -3803,3 +3796,10 @@ id: 6273 time: '2024-03-31T08:52:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26605 +- author: Ubaser + changes: + - message: Throwing knives now additionally do armour piercing damage. + type: Tweak + id: 6274 + time: '2024-03-31T11:48:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26380 From 5eff7f169e95e94aab54b742c6928c4925cf7887 Mon Sep 17 00:00:00 2001 From: avery <51971268+graevy@users.noreply.github.com> Date: Sun, 31 Mar 2024 13:44:02 -0700 Subject: [PATCH 75/83] cancelable brig timers (#26557) brig timers now cancelable. also some screensystem yakshave --- Content.Client/TextScreen/TextScreenSystem.cs | 14 ++++------- .../Components/SignalTimerComponent.cs | 6 +++++ .../Systems/SignalTimerSystem.cs | 23 +++++++++++++------ .../Screens/Systems/ScreenSystem.cs | 1 + 4 files changed, 27 insertions(+), 17 deletions(-) diff --git a/Content.Client/TextScreen/TextScreenSystem.cs b/Content.Client/TextScreen/TextScreenSystem.cs index b4d67f5f218..53a620bd46d 100644 --- a/Content.Client/TextScreen/TextScreenSystem.cs +++ b/Content.Client/TextScreen/TextScreenSystem.cs @@ -112,17 +112,11 @@ protected override void OnAppearanceChange(EntityUid uid, TextScreenVisualsCompo if (args.AppearanceData.TryGetValue(TextScreenVisuals.Color, out var color) && color is Color) component.Color = (Color) color; - // DefaultText: broadcast updates from comms consoles - // ScreenText: the text accompanying shuttle timers e.g. "ETA" + // DefaultText: fallback text e.g. broadcast updates from comms consoles if (args.AppearanceData.TryGetValue(TextScreenVisuals.DefaultText, out var newDefault) && newDefault is string) - { - string?[] defaultText = SegmentText((string) newDefault, component); - component.Text = defaultText; - component.TextToDraw = defaultText; - ResetText(uid, component); - BuildTextLayers(uid, component, args.Sprite); - DrawLayers(uid, component.LayerStatesToDraw); - } + component.Text = SegmentText((string) newDefault, component); + + // ScreenText: currently rendered text e.g. the "ETA" accompanying shuttle timers if (args.AppearanceData.TryGetValue(TextScreenVisuals.ScreenText, out var text) && text is string) { component.TextToDraw = SegmentText((string) text, component); diff --git a/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs b/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs index 2e9b369b99a..b3535cde1fd 100644 --- a/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs +++ b/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs @@ -23,6 +23,12 @@ public sealed partial class SignalTimerComponent : Component [DataField, ViewVariables(VVAccess.ReadWrite)] public string Label = string.Empty; + /// + /// Default max width of a label (how many letters can this render?) + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int MaxLength = 5; + /// /// The port that gets signaled when the timer triggers. /// diff --git a/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs b/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs index f9c2d3430e9..0e214ee865a 100644 --- a/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs +++ b/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs @@ -39,6 +39,7 @@ public override void Initialize() private void OnInit(EntityUid uid, SignalTimerComponent component, ComponentInit args) { + _appearanceSystem.SetData(uid, TextScreenVisuals.DefaultText, component.Label); _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, component.Label); _signalSystem.EnsureSinkPorts(uid, component.Trigger); } @@ -66,11 +67,6 @@ public void Trigger(EntityUid uid, SignalTimerComponent signalTimer) { RemComp(uid); - if (TryComp(uid, out var appearance)) - { - _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, signalTimer.Label, appearance); - } - _audio.PlayPvs(signalTimer.DoneSound, uid); _signalSystem.InvokePort(uid, signalTimer.TriggerPort); @@ -139,10 +135,15 @@ private void OnTextChangedMessage(EntityUid uid, SignalTimerComponent component, if (!IsMessageValid(uid, args)) return; - component.Label = args.Text[..Math.Min(5, args.Text.Length)]; + component.Label = args.Text[..Math.Min(component.MaxLength, args.Text.Length)]; if (!HasComp(uid)) + { + // could maybe move the defaulttext update out of this block, + // if you delved deep into appearance update batching + _appearanceSystem.SetData(uid, TextScreenVisuals.DefaultText, component.Label); _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, component.Label); + } } /// @@ -166,7 +167,15 @@ private void OnTimerStartMessage(EntityUid uid, SignalTimerComponent component, { if (!IsMessageValid(uid, args)) return; - OnStartTimer(uid, component); + + // feedback received: pressing the timer button while a timer is running should cancel the timer. + if (HasComp(uid)) + { + _appearanceSystem.SetData(uid, TextScreenVisuals.TargetTime, _gameTiming.CurTime); + Trigger(uid, component); + } + else + OnStartTimer(uid, component); } private void OnSignalReceived(EntityUid uid, SignalTimerComponent component, ref SignalReceivedEvent args) diff --git a/Content.Server/Screens/Systems/ScreenSystem.cs b/Content.Server/Screens/Systems/ScreenSystem.cs index 19790f64d5b..782fe38c888 100644 --- a/Content.Server/Screens/Systems/ScreenSystem.cs +++ b/Content.Server/Screens/Systems/ScreenSystem.cs @@ -56,6 +56,7 @@ private void ScreenText(EntityUid uid, ScreenComponent component, DeviceNetworkP ) { _appearanceSystem.SetData(uid, TextScreenVisuals.DefaultText, text); + _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, text); } } From 7e950ea1d59bf8c19416c060a55b08839ba11412 Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Sun, 31 Mar 2024 21:44:24 +0100 Subject: [PATCH 76/83] Fix orientation of roller skate sprites (#26627) Co-authored-by: Eoin Mcloughlin --- .../Specific/skates.rsi/equipped-FEET.png | Bin 21114 -> 773 bytes .../Shoes/Specific/skates.rsi/inhand-left.png | Bin 20591 -> 630 bytes .../Specific/skates.rsi/inhand-right.png | Bin 20584 -> 651 bytes 3 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/equipped-FEET.png index 09c92cfa5f54d70dadb3b6374b83a34a35d9930f..e62bf7af7d8c2fade57ad514393644eaa28f1f2d 100644 GIT binary patch delta 750 zcmVPx%zez+vRCt{2+RsZAVHgMS@8k->POY22 zW(89WY%^4V~l?>#u#IaF~%5UjIsZO zkV~+pX{7&NSy@3S6cWb9#>nIGWMTq=Ku&WWcm5M*1N(|X1OUZl5{k>DUH6RF^tgPp zE5E4%^c97ud$0n2cRNO?VV(fj_$#VycfaF{Eln^nx;{4nS?LD$E|;eYZV?L zSqPvRxU~q}SX+Okd~651^Jgu<U<73y*t8I+(G*Ia=0FGc?x>`H#z(B znfV6DVx<=VRj4^-47-Nhv#u#IaF~Ga!FJPACEpXvt{l4q#Ypc*S4dHOu zmhGUbDg^?81OM^4+1Sx-fpkyagVa(l=4N9U81H6*Z?qJ{i6JY~W2F80Z zHycB0sTZyd4ad+v;_xP#t31#QJ0)YuRtmjV*+f?Nu0-vY*5jSWFEuEolHR=)wq g*^|$9ULYsG0DQ4IG-qd~4*&oF07*qoM6N<$f_3I@aR2}S literal 21114 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 literal 20591 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 Us`Drc4?w`)dX`nDrO(R$0PZK-2LJ#7 diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-right.png index 7886baaeda6342587754b9ad910a1bc27fd2c536..0b772c7c8560d855512fe2b03124fa84937f4611 100644 GIT binary patch delta 627 zcmV-(0*w9WpaF{okR*Qrb5ch_0Itp)=>Px%MM*?KRCt{2+P_O1VI0Tt_tk6)vDKPf zM=Qky67Uaj&>`T|UB^NW!9c1*$tF1X2eeE22MAppidZwdNWPxI}k;A@Px^pj+$#i^A=rRGNQb|or#aq|W?>eVn zo1_yFMrWH{e{7hpD-rcO50H`){q!ST<&~5?1NGBpx8#&-l z_I|ofK)q(O+B^rqzFJ~&c@BMZD}bDXp>J-nxIEWd{;Pk@^S%clbeVuuDy8ksZ*X%s z1Hi%MJ{98#ZJ`ig7+Ls%Q~4_68L#(({`- zOt&*yj;prEGxy5c^9(3lm|DGNV@&25nFd0B28>LDF`1`cvngDdp**aG5JCtcgb+dq zA%qY@JQ!Lb4$e3*IK0{HCU!_3nJ`0e1s%+mx6q=SD*{C4nR=J^be4qp6QeggdI4)5y=Ckp@o N002ovPDHLkV1h=iGGYJ# literal 20584 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 From 3adf6c1ecc51b538fe1b1546206a089fee8dd668 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 20:45:08 +0000 Subject: [PATCH 77/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 41e707cb49a..8a8f3911eec 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: icekot8 - changes: - - message: The bounty of briefcases has been removed - type: Remove - id: 5775 - time: '2024-01-23T18:26:28.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24392 - author: Errant changes: - message: '"Not enough oxygen" hud alerts now indicate the proper gas for nitrogen @@ -3803,3 +3796,10 @@ id: 6274 time: '2024-03-31T11:48:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26380 +- author: graevy + changes: + - message: clicking the brig timer button will now cancel its countdown + type: Tweak + id: 6275 + time: '2024-03-31T20:44:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26557 From d2bee7ec91fef6cb2a1ee9b2aada98ae1ba136f3 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 1 Apr 2024 09:45:40 +1300 Subject: [PATCH 78/83] Fix GastTileOverlay sending redundant data (#26623) Fix GastTileOverlay not updating properly --- .../Atmos/EntitySystems/GasTileOverlaySystem.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs index c42cfd08da3..89b9c520787 100644 --- a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -432,14 +432,16 @@ public void Execute(int index) if (!overlay.Chunks.TryGetValue(gIndex, out var value)) continue; - if (previousChunks != null && - previousChunks.Contains(gIndex) && - value.LastUpdate > LastSessionUpdate) + // If the chunk was updated since we last sent it, send it again + if (value.LastUpdate > LastSessionUpdate) { + dataToSend.Add(value); continue; } - dataToSend.Add(value); + // Always send it if we didn't previously send it + if (previousChunks == null || !previousChunks.Contains(gIndex)) + dataToSend.Add(value); } previouslySent[netGrid] = gridChunks; From 6d1511124f5ba8f3a2ecc5297600e0dd008cfb82 Mon Sep 17 00:00:00 2001 From: "Wrexbe (Josh)" <81056464+wrexbe@users.noreply.github.com> Date: Sun, 31 Mar 2024 13:49:51 -0700 Subject: [PATCH 79/83] Auto DeAdmin sooner (#26551) Co-authored-by: wrexbe --- .../GameTicking/GameTicker.RoundFlow.cs | 35 +++++++++++-------- .../GameTicking/GameTicker.Spawning.cs | 4 --- .../GameTicking/Rules/NukeopsRuleSystem.cs | 4 --- 3 files changed, 21 insertions(+), 22 deletions(-) diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 004508ab916..202daf256d2 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -4,6 +4,7 @@ using Content.Server.GameTicking.Events; using Content.Server.Ghost; using Content.Server.Maps; +using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.GameTicking; using Content.Shared.Mind; @@ -194,26 +195,18 @@ public void StartRound(bool force = false) SendServerMessage(Loc.GetString("game-ticker-start-round")); - // Just in case it hasn't been loaded previously we'll try loading it. - LoadMaps(); - - // map has been selected so update the lobby info text - // applies to players who didn't ready up - UpdateInfoText(); - - StartGamePresetRules(); - - RoundLengthMetric.Set(0); - - var startingEvent = new RoundStartingEvent(RoundId); - RaiseLocalEvent(startingEvent); var readyPlayers = new List(); var readyPlayerProfiles = new Dictionary(); - + var autoDeAdmin = _cfg.GetCVar(CCVars.AdminDeadminOnJoin); foreach (var (userId, status) in _playerGameStatuses) { if (LobbyEnabled && status != PlayerGameStatus.ReadyToPlay) continue; if (!_playerManager.TryGetSessionById(userId, out var session)) continue; + + if (autoDeAdmin && _adminManager.IsAdmin(session)) + { + _adminManager.DeAdmin(session); + } #if DEBUG DebugTools.Assert(_userDb.IsLoadComplete(session), $"Player was readied up but didn't have user DB data loaded yet??"); #endif @@ -235,6 +228,20 @@ public void StartRound(bool force = false) readyPlayerProfiles.Add(userId, profile); } + // Just in case it hasn't been loaded previously we'll try loading it. + LoadMaps(); + + // map has been selected so update the lobby info text + // applies to players who didn't ready up + UpdateInfoText(); + + StartGamePresetRules(); + + RoundLengthMetric.Set(0); + + var startingEvent = new RoundStartingEvent(RoundId); + RaiseLocalEvent(startingEvent); + var origReadyPlayers = readyPlayers.ToArray(); if (!StartPreset(origReadyPlayers, force)) diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 52bab07ce8f..5f4610744a0 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -154,10 +154,6 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact return; } - // Automatically de-admin players who are joining. - if (_cfg.GetCVar(CCVars.AdminDeadminOnJoin) && _adminManager.IsAdmin(player)) - _adminManager.DeAdmin(player); - // We raise this event to allow other systems to handle spawning this player themselves. (e.g. late-join wizard, etc) var bev = new PlayerBeforeSpawnEvent(player, character, jobId, lateJoin, station); RaiseLocalEvent(bev); diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index ea5ab9c2abe..886af60987c 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -763,10 +763,6 @@ private void SpawnOperatives(List sessions, bool spawnGhostRoles, Nu _mind.SetUserId(newMind, nukieSession.Session.UserId); _roles.MindAddRole(newMind, new NukeopsRoleComponent { PrototypeId = nukieSession.Type.AntagRoleProto }); - // Automatically de-admin players who are being made nukeops - if (_cfg.GetCVar(CCVars.AdminDeadminOnJoin) && _adminManager.IsAdmin(nukieSession.Session)) - _adminManager.DeAdmin(nukieSession.Session); - _mind.TransferTo(newMind, mob); } //Otherwise, spawn as a ghost role From 0602e643006e9068f30322d52a797e481c3c15f1 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 31 Mar 2024 22:52:49 +0200 Subject: [PATCH 80/83] Add briefcase to curadrobe and lawdrobe, and some briefcases cleanup (#26527) * Add briefcase to curadrobe and some briefcases cleanup * also add to lawdrobe --- .../Catalog/Fills/Items/briefcases.yml | 6 +---- .../VendingMachines/Inventories/curadrobe.yml | 3 ++- .../VendingMachines/Inventories/lawdrobe.yml | 1 + .../Entities/Objects/Misc/briefcases.yml | 23 ++++--------------- Resources/migration.yml | 1 + 5 files changed, 9 insertions(+), 25 deletions(-) diff --git a/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml b/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml index 6be5ae0d302..58a49aa6e95 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml @@ -1,6 +1,5 @@ - type: entity id: BriefcaseBrownFilled - name: brown briefcase parent: BriefcaseBrown suffix: Filled, Paper components: @@ -11,9 +10,8 @@ - type: entity id: BriefcaseSyndieSniperBundleFilled - name: brown briefcase parent: BriefcaseSyndie - suffix: SniperBundle + suffix: Syndicate, Sniper Bundle components: - type: Item size: Ginormous @@ -32,7 +30,6 @@ - type: entity id: BriefcaseSyndieLobbyingBundleFilled - name: brown briefcase parent: BriefcaseSyndie suffix: Syndicate, Spesos components: @@ -52,7 +49,6 @@ - type: entity id: BriefcaseThiefBribingBundleFilled - name: brown briefcase parent: BriefcaseSyndie suffix: Thief, Spesos components: diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml index 07e957a5e0e..aac1cbb3f49 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml @@ -2,6 +2,7 @@ id: CuraDrobeInventory startingInventory: BooksBag: 2 + BriefcaseBrown: 2 HandLabeler: 2 ClothingEyesGlasses: 2 ClothingEyesGlassesJamjar: 2 @@ -12,4 +13,4 @@ ClothingUniformJumpskirtLibrarian: 3 ClothingShoesBootsLaceup: 2 ClothingHeadsetService: 2 - + diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml index b1478a7cfc4..28f63e44e20 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml @@ -14,6 +14,7 @@ ClothingShoesBootsLaceup: 2 ClothingHeadsetService: 2 ClothingNeckLawyerbadge: 2 + BriefcaseBrown: 2 LuxuryPen: 2 contrabandInventory: ClothingOuterRobesJudge: 1 diff --git a/Resources/Prototypes/Entities/Objects/Misc/briefcases.yml b/Resources/Prototypes/Entities/Objects/Misc/briefcases.yml index aa8823d70d8..762204701cb 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/briefcases.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/briefcases.yml @@ -1,8 +1,8 @@ - type: entity parent: BaseStorageItem - abstract: true id: BriefcaseBase description: Useful for carrying items in your hands. + abstract: true components: - type: Item size: Ginormous @@ -14,10 +14,9 @@ - Briefcase - type: entity - name: brown briefcase parent: BriefcaseBase id: BriefcaseBrown - description: A handy briefcase. + name: brown briefcase components: - type: Sprite sprite: Objects/Storage/Briefcases/briefcase_brown.rsi @@ -26,23 +25,9 @@ sprite: Objects/Storage/Briefcases/briefcase_brown.rsi - type: entity - parent: BriefcaseBase - abstract: true - id: BriefcaseSyndieBase + parent: BriefcaseBrown + id: BriefcaseSyndie suffix: Syndicate, Empty - description: Useful for carrying items in your hands. components: - type: Item size: Huge - -- type: entity - name: brown briefcase - parent: BriefcaseSyndieBase - id: BriefcaseSyndie - description: A handy briefcase. - components: - - type: Sprite - sprite: Objects/Storage/Briefcases/briefcase_brown.rsi - state: icon - - type: Item - sprite: Objects/Storage/Briefcases/briefcase_brown.rsi diff --git a/Resources/migration.yml b/Resources/migration.yml index f5306c8b7c1..eadb76305c7 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -261,3 +261,4 @@ ClothingOuterArmorScaf: ClothingOuterArmorBasic # 2024-03-31 ClothingNeckFlowerWreath: ClothingHeadHatFlowerWreath ClothingHeadHatFlowerCrown: ClothingHeadHatFlowerWreath +BriefcaseSyndieBase: null From c62e90afb364b443c830540e362d21583667eceb Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 31 Mar 2024 20:53:55 +0000 Subject: [PATCH 81/83] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8a8f3911eec..29108f69f87 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Errant - changes: - - message: '"Not enough oxygen" hud alerts now indicate the proper gas for nitrogen - breathers.' - type: Fix - id: 5776 - time: '2024-01-23T20:17:41.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24373 - author: themias changes: - message: Cyborgs can no longer spawn with the Wheelchair Bound or Muted trait @@ -3803,3 +3795,10 @@ id: 6275 time: '2024-03-31T20:44:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26557 +- author: lzk228 + changes: + - message: Briefcases was added to CuraDrobe and LawDrobe. + type: Tweak + id: 6276 + time: '2024-03-31T20:52:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26527 From 300da83a49284c5a71b5729583418f347b3ec339 Mon Sep 17 00:00:00 2001 From: Zack Backmen Date: Mon, 1 Apr 2024 04:07:09 +0300 Subject: [PATCH 82/83] upd --- Content.Client/Antag/AntagStatusIconSystem.cs | 1 + .../Backmen/ShipVsShip/ShipVsShipGame.cs | 68 +++++++++++++++--- .../Backmen/ShipVsShip/SVSTeamMember.cs | 16 +++++ .../Backmen/Catalog/Loadout/head.yml | 8 +-- .../Entities/Markers/Spawners/Random/hats.yml | 4 +- .../Backmen/Entities/Mobs/NPC/special.yml | 2 +- .../Entities/Structures/Walls/walls.yml | 4 +- .../Structures/Webbing/Webbing/webs.yml | 2 +- .../Prototypes/Backmen/Statusicon/antag.yml | 24 +++++++ .../Prototypes/Backmen/Traits/neutral.yml | 15 ++++ .../Interface/Misc/svs_icon.rsi/meta.json | 20 ++++++ .../Interface/Misc/svs_icon.rsi/team_0.png | Bin 0 -> 645 bytes .../Interface/Misc/svs_icon.rsi/team_a.png | Bin 0 -> 1024 bytes .../Interface/Misc/svs_icon.rsi/team_b.png | Bin 0 -> 645 bytes 14 files changed, 146 insertions(+), 18 deletions(-) create mode 100644 Content.Shared/Backmen/ShipVsShip/SVSTeamMember.cs create mode 100644 Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/team_0.png create mode 100644 Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/team_a.png create mode 100644 Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/team_b.png diff --git a/Content.Client/Antag/AntagStatusIconSystem.cs b/Content.Client/Antag/AntagStatusIconSystem.cs index 4e2468eea59..63fc434946a 100644 --- a/Content.Client/Antag/AntagStatusIconSystem.cs +++ b/Content.Client/Antag/AntagStatusIconSystem.cs @@ -29,6 +29,7 @@ public override void Initialize() SubscribeLocalEvent(GetIcon); SubscribeLocalEvent(GetIcon); SubscribeLocalEvent(GetIcon); + SubscribeLocalEvent(GetIcon); //end-backmen: antag SubscribeLocalEvent(GetIcon); } diff --git a/Content.Server/Backmen/ShipVsShip/ShipVsShipGame.cs b/Content.Server/Backmen/ShipVsShip/ShipVsShipGame.cs index fc26273e018..b26f70f946d 100644 --- a/Content.Server/Backmen/ShipVsShip/ShipVsShipGame.cs +++ b/Content.Server/Backmen/ShipVsShip/ShipVsShipGame.cs @@ -11,6 +11,7 @@ using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Server.Shuttles.Systems; +using Content.Server.Spawners.Components; using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Shared.Backmen.ShipVsShip; @@ -22,10 +23,12 @@ using Content.Shared.Players; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; +using Content.Shared.Timing; using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Server.Backmen.ShipVsShip; @@ -42,6 +45,8 @@ public sealed class ShipVsShipGame : GameRuleSystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly ShuttleConsoleSystem _console = default!; [Dependency] private readonly RoundEndSystem _endSystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { @@ -59,13 +64,62 @@ public override void Initialize() SubscribeLocalEvent(OnStartRound); SubscribeLocalEvent(OnRoundEndText); SubscribeLocalEvent(CanUseArrivals); + SubscribeLocalEvent(OnAfterSpawning); + } + + private void SetFlag(EntityUid ent, StationTeamMarker team) + { + var teamFlag = EnsureComp(ent); + teamFlag.Team = team; + teamFlag.StatusIcon = team switch + { + StationTeamMarker.TeamA => "TeamAFaction", + StationTeamMarker.TeamB => "TeamBFaction", + _ => "Team0Faction" + }; + Dirty(ent, teamFlag); + } + + private void OnAfterSpawning(PlayerSpawnCompleteEvent ev) + { + var activeRules = QueryActiveRules(); + + while (activeRules.MoveNext(out _, out var rule, out _)) + { + var xform = Transform(ev.Mob); + var team = rule.Players.FirstOrNull(x => x.Value.Contains(ev.Player.UserId))?.Key ?? StationTeamMarker.Neutral; + Log.Info($"Validate player spawning station {ev.Mob:entity} on {xform.GridUid:entity} (team: {team})"); + + + SetFlag(ev.Mob, team); + if (rule.Team.ContainsKey(team) && TryComp(rule.Team[team], out var stationDataComponent)) + { + var stationGrids = stationDataComponent.Grids; + if (xform.GridUid == null || stationGrids.Contains(xform.GridUid.Value)) + { + return; + } + var latejoin = (from s in EntityQuery() + where s.Item1.SpawnType == SpawnPointType.LateJoin && s.Item2.GridUid.HasValue && stationGrids.Contains(s.Item2.GridUid.Value) + select s.Item2.Coordinates).ToList(); + if (latejoin.Count == 0) + { + Log.Error($"not found late join for {team}"); + return; + } + + var point = RobustRandom.Pick(latejoin); + _transform.SetCoordinates(ev.Mob, point); + Log.Warning($"Invalid spawning station {ev.Mob:entity} on {xform.GridUid:entity} (team: {team}) do fixing, new grid = {point.EntityId:entity}"); + } + } } private void CanUseArrivals(CanHandleWithArrival ev) { var activeRules = QueryActiveRules(); - while (activeRules.MoveNext(out var ruleUid, out var r1, out var rule, out var r3)) + while (activeRules.MoveNext(out _, out _, out _)) { ev.Cancel(); } @@ -75,7 +129,7 @@ private void OnRoundEndText(RoundEndTextAppendEvent ev) { var activeRules = QueryActiveRules(); - while (activeRules.MoveNext(out var ruleUid, out var r1, out var rule, out var r3)) + while (activeRules.MoveNext(out _, out var rule, out _)) { ev.AddLine(Loc.GetString($"svs-team-{rule.Winner ?? StationTeamMarker.Neutral}-lose", ("target",rule.WinnerTarget ?? EntityUid.Invalid))); } @@ -87,7 +141,7 @@ private void OnStartRound(RoundStartedEvent ev) { var activeRules = QueryActiveRules(); - while (activeRules.MoveNext(out var ruleUid, out var r1, out var rule, out var r3)) + while (activeRules.MoveNext(out _, out var rule, out _)) { ScanForObjects(rule); } @@ -133,9 +187,9 @@ private void OnAfterFtl(ref FTLCompletedEvent ev) { var activeRules = QueryActiveRules(); - while (activeRules.MoveNext(out var ruleUid, out var r1, out var rule, out var r3)) + while (activeRules.MoveNext(out _, out _, out _)) { - EnsureComp(ev.Entity).Accumulator += 60 * 5; + EnsureComp(ev.Entity).StateTime = StartEndTime.FromCurTime(_gameTiming, 60 * 5); _console.RefreshShuttleConsoles(ev.Entity); } } @@ -234,12 +288,10 @@ private void OnBeforeSpawn(PlayerBeforeSpawnEvent ev) var mobMaybe = _stationSpawning.SpawnPlayerCharacterOnStation(rule.Team[team], job, ev.Profile); DebugTools.AssertNotNull(mobMaybe); var mob = mobMaybe!.Value; - + SetFlag(mob, team); _mind.TransferTo(newMind, mob); return; // invalid team? skip } - - } } diff --git a/Content.Shared/Backmen/ShipVsShip/SVSTeamMember.cs b/Content.Shared/Backmen/ShipVsShip/SVSTeamMember.cs new file mode 100644 index 00000000000..5d6b310e7b1 --- /dev/null +++ b/Content.Shared/Backmen/ShipVsShip/SVSTeamMember.cs @@ -0,0 +1,16 @@ +using Content.Shared.Antag; +using Content.Shared.StatusIcon; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Backmen.ShipVsShip; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class SVSTeamMemberComponent : Component, IAntagStatusIconComponent +{ + [AutoNetworkedField] + public StationTeamMarker Team { get; set; } = StationTeamMarker.Neutral; + [AutoNetworkedField] + public ProtoId StatusIcon { get; set; } = "Team0Faction"; + public bool IconVisibleToGhost { get; set; } = true; +} diff --git a/Resources/Prototypes/Backmen/Catalog/Loadout/head.yml b/Resources/Prototypes/Backmen/Catalog/Loadout/head.yml index 07391ab5308..f47b5251683 100644 --- a/Resources/Prototypes/Backmen/Catalog/Loadout/head.yml +++ b/Resources/Prototypes/Backmen/Catalog/Loadout/head.yml @@ -1,7 +1,7 @@ - type: loadout id: ClothingHeadHatFlowerCrownLoadout - entity: ClothingHeadHatFlowerCrown + entity: ClothingHeadHatFlowerWreath -- type: loadout - id: ClothingHeadHatHairflowerLoadout - entity: ClothingHeadHatHairflower +#- type: loadout +# id: ClothingHeadHatHairflowerLoadout +# entity: ClothingHeadHatHairflower diff --git a/Resources/Prototypes/Backmen/Entities/Markers/Spawners/Random/hats.yml b/Resources/Prototypes/Backmen/Entities/Markers/Spawners/Random/hats.yml index 213df719290..add0d7bb815 100644 --- a/Resources/Prototypes/Backmen/Entities/Markers/Spawners/Random/hats.yml +++ b/Resources/Prototypes/Backmen/Entities/Markers/Spawners/Random/hats.yml @@ -19,7 +19,6 @@ - ClothingHeadHatXmasCrown - ClothingHeadHelmetCosmonaut - ClothingHeadHelmetBasic - - ClothingHeadHelmetScaf - ClothingHeadHelmetTemplar - ClothingHeadHelmetThunderdome - ClothingHeadHelmetFire @@ -28,7 +27,6 @@ - ClothingHeadHatHoodRad - ClothingHeadHatCake - ClothingHeadHatChickenhead - - ClothingHeadHatHairflower - ClothingHeadHatPumpkin - ClothingHeadHatRichard - ClothingHeadHatShrineMaidenWig @@ -72,7 +70,7 @@ - ClothingHeadFishCap - ClothingHeadRastaHat - ClothingHeadSafari - - ClothingHeadHatFlowerCrown + - ClothingHeadHatFlowerWreath - ClothingHeadHatCone - ClothingHeadHatBluesoft - ClothingHeadHatCorpsoftFlipped diff --git a/Resources/Prototypes/Backmen/Entities/Mobs/NPC/special.yml b/Resources/Prototypes/Backmen/Entities/Mobs/NPC/special.yml index 7921603a94c..8c6e33f2d57 100644 --- a/Resources/Prototypes/Backmen/Entities/Mobs/NPC/special.yml +++ b/Resources/Prototypes/Backmen/Entities/Mobs/NPC/special.yml @@ -53,7 +53,7 @@ - type: startingGear id: HecateStartingGear equipment: - hat: ClothingHeadHatHairflower + #hat: ClothingHeadHatHairflower jumpsuit: ClothingCostumeArcDress shoes: ClothingShoesColorBlack innerClothingSkirt: ClothingCostumeArcDress diff --git a/Resources/Prototypes/Backmen/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Backmen/Entities/Structures/Walls/walls.yml index b3555bd7c8d..bd8941b9839 100644 --- a/Resources/Prototypes/Backmen/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Backmen/Entities/Structures/Walls/walls.yml @@ -34,7 +34,9 @@ - type: Tag tags: - Wall - - RCDDeconstructWhitelist + - type: RCDDeconstructable + cost: 6 + delay: 8 - type: entity parent: BaseWall diff --git a/Resources/Prototypes/Backmen/Entities/Structures/Webbing/Webbing/webs.yml b/Resources/Prototypes/Backmen/Entities/Structures/Webbing/Webbing/webs.yml index 2be8f3cd6fc..5589a712553 100644 --- a/Resources/Prototypes/Backmen/Entities/Structures/Webbing/Webbing/webs.yml +++ b/Resources/Prototypes/Backmen/Entities/Structures/Webbing/Webbing/webs.yml @@ -79,7 +79,7 @@ path: /Audio/Effects/plant_rustle.ogg unbuckleSound: !type:SoundPathSpecifier path: /Audio/Effects/plant_rustle.ogg - allowedEntities: + whitelist: components: - Arachne - type: HealOnBuckle diff --git a/Resources/Prototypes/Backmen/Statusicon/antag.yml b/Resources/Prototypes/Backmen/Statusicon/antag.yml index 3d9fb4ae0e0..d9badc84fb3 100644 --- a/Resources/Prototypes/Backmen/Statusicon/antag.yml +++ b/Resources/Prototypes/Backmen/Statusicon/antag.yml @@ -18,3 +18,27 @@ icon: sprite: /Textures/Backmen/Interface/Misc/antag_icon.rsi state: blob + + +#svs + +- type: statusIcon + id: Team0Faction + priority: 5 + icon: + sprite: /Textures/Backmen/Interface/Misc/svs_icon.rsi + state: team_0 + +- type: statusIcon + id: TeamAFaction + priority: 5 + icon: + sprite: /Textures/Backmen/Interface/Misc/svs_icon.rsi + state: team_a + +- type: statusIcon + id: TeamBFaction + priority: 5 + icon: + sprite: /Textures/Backmen/Interface/Misc/svs_icon.rsi + state: team_b diff --git a/Resources/Prototypes/Backmen/Traits/neutral.yml b/Resources/Prototypes/Backmen/Traits/neutral.yml index e69de29bb2d..95b4d3c87ad 100644 --- a/Resources/Prototypes/Backmen/Traits/neutral.yml +++ b/Resources/Prototypes/Backmen/Traits/neutral.yml @@ -0,0 +1,15 @@ + +- type: trait + id: OwOAccent + name: OwO акцент + description: Вы не можете перестать говорить как неко! + blacklist: + components: + - BSSDrone #backmen: bssdrone + - StationAI # backmen: AI + - BorgChassis + whitelist: + components: + - Felinid + components: + - type: OwOAccent diff --git a/Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/meta.json b/Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/meta.json new file mode 100644 index 00000000000..50cf33731bc --- /dev/null +++ b/Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by kirillcas.", + "size": { + "x": 8, + "y": 8 + }, + "states": [ + { + "name": "team_0" + }, + { + "name": "team_a" + }, + { + "name": "team_b" + } + ] +} diff --git a/Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/team_0.png b/Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/team_0.png new file mode 100644 index 0000000000000000000000000000000000000000..0d512611b5e671be950f704a820e1a0add6e0aa0 GIT binary patch literal 645 zcmc(dv1=PK6o+59!N%0kAwwu0)S;A)ZZl-i(54QlA(+GQpy38XGMM5)&>K2rP+ARF zFvY_SDQLLi1`j4^xWNq>4r+>qYjKN*4jOJLq@XS9(N@0e|IiQge&XpH9_YPudxy=& zy#@d@yDvI@oAu49JGS0_>wUDb^{Rik50_tCzwDj4M}q^~v@il459lty>GmV2f#*^1 z08;`K5XHa%f>MO1B_T!LYZSN$vE3Rt$oDz&TO=5xpoN103K0^OIWC!T>`!qt!uZ0C zu!|>?5C?mH#Bj7nqA{LfEGu(baxKVYP7+Rt9N)jYP2zY)ggZ$>lDK}t$TcBpWy+Fl zPNS5n3rd$;s3dFpJ{>ObFa7NdL6>s;;+-~0vbws1@U literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/team_a.png b/Resources/Textures/Backmen/Interface/Misc/svs_icon.rsi/team_a.png new file mode 100644 index 0000000000000000000000000000000000000000..dab12605ea76dbb17bd498b695763a2e62c8e91e GIT binary patch literal 1024 zcmeAS@N?(olHy`uVBq!ia0vp^93afW3?x5a^xFxf7>k44ofy`glX=O&z%(VmC&U#f z2n3u=Ou{V8!febkY^?GU;*ydQsvK-;ylnbh92PuWW`g_{!d%KSQbwXeYKjV~s;YXr z+D1l(PJGk3X9AU z5ScD1Is=5n7jp_O;S^fVCA5%7XaT?QGCq+t9Kvfkg|~1DZQ&H&$|<~!Q+Ow*@E#7~ zUA&^Zc|~{ei7pouSs@^@QcP^Mr1(-vi51e4>tv-i35jhNm)IjA(X1=pq$km=FWIUu z(WWQS1|*Fn8%(6SOr`p*W&3PpCmTslGnSfYBRAPrZnC}HItAG^YI5r}?)_&F(HWy z!V(WT#UFEuPjHm)byVnaQS5V7>~&G<_E73~)Su|2Fx63ElDqPBH>KGwiu2u-CU_`M z^HH1YsXW(PWoDqptU!%T6aZ^&dM0w9if_=9Za^x+wX|C z-;!vsDa~kCs?qK=tmVr%%h&OiCo+wX62thneb(H?yURqQ-O){PDzkoFvI`h3#R|v zu>4z!6o6mwP-E(?Ln$7#wW~{p3?j6tLuyFP;d&6^217EK;z6Z1WXPbj8m?f9 zha;p#!wolhFhRo&Zpm;^69l;ww|MBF;g*sVv~@j5<-7ieexUcnd*ATjz4uOMr(Szd z1Auz_d8=!4b@i$h8~=Roe70%rO?PJt&b~E%+dp%5d)u~XVFX$(&~<==dwZML;JOrC zz?1+5L@_V`zYyU`K|qmvhVw$DxzxOtAM7IE=p4s=!DB9*Hg}a3e5#qYR;3RnU1+W3iX6* z&a;1}USSp@xe+E2;wHB92(1@lF;2}~m~m`o!U$msQJaE1lgnJ@ODS`eOC^oTWEN$% zkVh(4GPjM={B&~hdbI$r+j$AM{}-qB1=(31wp&ko)sOpqR%xRC{=3IN((rDxiJr0J imMgzx@kdJ9O9p literal 0 HcmV?d00001 From d4aa243f49215508eb93d752c4eefab4eadacb1c Mon Sep 17 00:00:00 2001 From: Zack Backmen Date: Mon, 1 Apr 2024 05:21:16 +0300 Subject: [PATCH 83/83] upd --- Resources/Maps/corvax_avrit.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Resources/Maps/corvax_avrit.yml b/Resources/Maps/corvax_avrit.yml index 8508a72d428..f62b269a042 100644 --- a/Resources/Maps/corvax_avrit.yml +++ b/Resources/Maps/corvax_avrit.yml @@ -57630,7 +57630,7 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-41.5 parent: 2 -- proto: BaseMedicalPDA +- proto: PassengerPDA entities: - uid: 43177 components: @@ -60494,7 +60494,7 @@ entities: parent: 2 - type: Paper content: >2+ - [head=2]Пособие по качественному + [head=2]Пособие по качественному обслуживанию в баре[/head] [bullet][bold]Автор: Майя Линхариева @@ -60520,7 +60520,7 @@ entities: [bullet][head=3]Пункт 3: Напитки[/head] - Старайтесь меньше пользоваться раздатчиками. Бесспорно, они даны вам для удобства и ими проще всего готовить напитки. Однако, у вас имееься полный алкомат добра, шейкеры, бутылки, но при этом вы их не используете. Намного лучше подойти и лично налить клиенту напиток прямо за стойкой, используя всё те же ингредиенты. Слишком много нужно смешать? Используйте шейкер! Демонстрируя посетителям свои навыки, вы лишь утвердите себя как эксперта в своём деле. + Старайтесь меньше пользоваться раздатчиками. Бесспорно, они даны вам для удобства и ими проще всего готовить напитки. Однако, у вас имееься полный алкомат добра, шейкеры, бутылки, но при этом вы их не используете. Намного лучше подойти и лично налить клиенту напиток прямо за стойкой, используя всё те же ингредиенты. Слишком много нужно смешать? Используйте шейкер! Демонстрируя посетителям свои навыки, вы лишь утвердите себя как эксперта в своём деле. [bullet][head=3]Пункт 4: На выдачу[/head] @@ -238180,7 +238180,7 @@ entities: [bold]Отчёт:[/bold] - В ходе операции на объекте [color=blue][bold]NanoTrasen[/bold][/color] была установлена слежка за целью, в лице [color=#d4a03f][bold]Квартирмейстера[/color] [color=#a31c1c]Д.Виеш[/color][/bold]. Искомое устройство находится при ней. Передаю дело по краже в руки другого Агента Синдиката. + В ходе операции на объекте [color=blue][bold]NanoTrasen[/bold][/color] была установлена слежка за целью, в лице [color=#d4a03f][bold]Квартирмейстера[/color] [color=#a31c1c]Д.Виеш[/color][/bold]. Искомое устройство находится при ней. Передаю дело по краже в руки другого Агента Синдиката. В ходе операции пришлось устранить невиновного грузчика, дабы получить доступы и форму. Тело было утилизировано в соответствии с методичкой организации. @@ -238446,7 +238446,7 @@ entities: parent: 44845 - type: Paper content: >2- - + [head=2]Приглашаем на экскурсию по кухне[/head] Приходите на кухню в тех помещениях и да узрейте все прелести готовки @@ -239581,8 +239581,8 @@ entities: [color=#B50F1D] ███░██████░███[/color] =================================================== - [head=3]ДОКУМЕНТАЦИЯ - КОНТРОЛЬНО-ПРОПУСКНОГО + [head=3]ДОКУМЕНТАЦИЯ + КОНТРОЛЬНО-ПРОПУСКНОГО ПУНКТА[/head] =================================================== @@ -240023,7 +240023,7 @@ entities: [color=#B50F1D] ███░██████░███[/color] =================================================== - [head=3]ДОКУМЕНТАЦИЯ + [head=3]ДОКУМЕНТАЦИЯ ОБ ИЗУЧЕНИЯХ И ЭКСПЕРИМЕНТАХ[/head] =================================================== @@ -240073,7 +240073,7 @@ entities: [color=#B50F1D] ███░██████░███[/color] =================================================== - [head=3]ДОКУМЕНТАЦИЯ + [head=3]ДОКУМЕНТАЦИЯ ОБ ИЗУЧЕНИЯХ И ЭКСПЕРИМЕНТАХ[/head] =================================================== @@ -240091,7 +240091,7 @@ entities: ───────────────────────────────────────── - [bullet][bold] Эксперимент №517 "Демон, рождённый войной" - представляет собой крупное плотоядное двуногое животное неопределённого происхождения, ростом примерно 4,5 м и весом около 600 кг. Внешне оно выглядит как гибрид нескольких видов млекопитающих. Существо имеет две длинных обезьяньих руки, с выдвижными когтями около 8 см в длину. Ноги напоминают медвежьи. Голова отдалённо напоминает кошачью, с мощными челюстями и крупными, близко посаженными глазами, однако снабжена двумя рогами, подобным таковым у газели. Всё тело существа покрыто гладким чёрно-красным мехом, который проявляет значительные огнезащитные свойства. [italic]Приписка "Атакует любой живой организм (кроме своих приспешников) в поле зрения в припадке, казалось бы, бессмысленной ярости."[/italic] + [bullet][bold] Эксперимент №517 "Демон, рождённый войной" - представляет собой крупное плотоядное двуногое животное неопределённого происхождения, ростом примерно 4,5 м и весом около 600 кг. Внешне оно выглядит как гибрид нескольких видов млекопитающих. Существо имеет две длинных обезьяньих руки, с выдвижными когтями около 8 см в длину. Ноги напоминают медвежьи. Голова отдалённо напоминает кошачью, с мощными челюстями и крупными, близко посаженными глазами, однако снабжена двумя рогами, подобным таковым у газели. Всё тело существа покрыто гладким чёрно-красным мехом, который проявляет значительные огнезащитные свойства. [italic]Приписка "Атакует любой живой организм (кроме своих приспешников) в поле зрения в припадке, казалось бы, бессмысленной ярости."[/italic] [bullet] Был найден на планете Кладерус-4, в объекте №2539, отрядом добровольных оперативников №3 под командованием "ЛГБТ Инструктора". [/bold] @@ -240102,7 +240102,7 @@ entities: parent: 45711 - type: Paper content: >2- - + [italic] От "Кардашьян" 'ГУС'[/italic] [head=3]Внимание персоналу[/head]