From bcd3cd8b7b984a5c2d47704f83dcb2f27b811d1f Mon Sep 17 00:00:00 2001 From: Ed Date: Thu, 28 Mar 2024 21:04:12 +0300 Subject: [PATCH] Day cycle --- .../DayCycle/DayCycleComponent.cs | 58 + .../CrystallPunk/DayCycle/DayCycleSystem.cs | 95 + Resources/Maps/CrystallPunk/dev_map.yml | 7735 +++++++++++++++++ Resources/Prototypes/Maps/debug.yml | 2 +- 4 files changed, 7889 insertions(+), 1 deletion(-) create mode 100644 Content.Shared/CrystallPunk/DayCycle/DayCycleComponent.cs create mode 100644 Content.Shared/CrystallPunk/DayCycle/DayCycleSystem.cs create mode 100644 Resources/Maps/CrystallPunk/dev_map.yml diff --git a/Content.Shared/CrystallPunk/DayCycle/DayCycleComponent.cs b/Content.Shared/CrystallPunk/DayCycle/DayCycleComponent.cs new file mode 100644 index 0000000000..c48b9af9bf --- /dev/null +++ b/Content.Shared/CrystallPunk/DayCycle/DayCycleComponent.cs @@ -0,0 +1,58 @@ + +using Robust.Shared.Serialization; + +namespace Content.Shared.CrystallPunk.DayCycle; + +/// +/// Stores all the necessary data for the day and night cycle system to work +/// + +[RegisterComponent, Access(typeof(DayCycleSystem))] +public sealed partial class DayCycleComponent : Component +{ + [DataField(required: true)] + public List TimeEntries = new(); + + [DataField] + public bool IsNight = false; + + [DataField] + public int CurrentTimeEntry = 0; + + [DataField] + public TimeSpan EntryStartTime; + + [DataField] + public TimeSpan EntryEndTime; +} + +[DataDefinition, NetSerializable, Serializable] +public readonly partial record struct DayCycleEntry() +{ + /// + /// the color of the world's lights at the beginning of this time of day + /// + [DataField] + public Color StartColor { get; init; } = Color.White; + + /// + /// duration of color shift to the next time of day + /// + [DataField] + public TimeSpan Duration { get; init; } = TimeSpan.FromSeconds(60); + + [DataField] + public bool IsNight { get; init; } = false; +} + +/// +/// Event raised on map entity, wen night is started +/// +[ByRefEvent] +public readonly record struct DayCycleNightStartedEvent(EntityUid Map); + +/// +/// Event raised on map entity, wen night is started +/// +[ByRefEvent] +public readonly record struct DayCycleDayStartedEvent(EntityUid Map); diff --git a/Content.Shared/CrystallPunk/DayCycle/DayCycleSystem.cs b/Content.Shared/CrystallPunk/DayCycle/DayCycleSystem.cs new file mode 100644 index 0000000000..31d8002dd3 --- /dev/null +++ b/Content.Shared/CrystallPunk/DayCycle/DayCycleSystem.cs @@ -0,0 +1,95 @@ +using Robust.Shared.Map.Components; +using Robust.Shared.Timing; + +namespace Content.Shared.CrystallPunk.DayCycle; +public sealed partial class DayCycleSystem : EntitySystem +{ + + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInitDayCycle); + SubscribeLocalEvent(OnDayStarted); + SubscribeLocalEvent(OnNightStarted); + } + + private void OnDayStarted(Entity dayCycle, ref DayCycleDayStartedEvent args) + { + } + + private void OnNightStarted(Entity dayCycle, ref DayCycleNightStartedEvent args) + { + } + + private void OnMapInitDayCycle(Entity dayCycle, ref MapInitEvent args) + { + if (dayCycle.Comp.TimeEntries == null || dayCycle.Comp.TimeEntries.Count == 0) return; + + var currentEntry = dayCycle.Comp.TimeEntries[0]; + + dayCycle.Comp.EntryStartTime = _timing.CurTime; + dayCycle.Comp.EntryEndTime = _timing.CurTime + currentEntry.Duration; + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var dayCycleQuery = EntityQueryEnumerator(); + while (dayCycleQuery.MoveNext(out var uid, out var dayCycle, out var mapLight)) + { + if (dayCycle.TimeEntries.Count <= 1) continue; + + var curEntry = dayCycle.CurrentTimeEntry; + var nextEntry = (curEntry + 1 >= dayCycle.TimeEntries.Count) ? 0 : (curEntry + 1); + + var start = dayCycle.EntryStartTime; + var end = dayCycle.EntryEndTime; + + var lerpValue = GetLerpValue((float) start.TotalSeconds, (float) end.TotalSeconds, (float) _timing.CurTime.TotalSeconds); + + var startColor = dayCycle.TimeEntries[curEntry].StartColor; + var endColor = dayCycle.TimeEntries[nextEntry].StartColor; + + mapLight.AmbientLightColor = Color.InterpolateBetween(startColor, endColor, lerpValue); + Dirty(uid, mapLight); + + + if (_timing.CurTime > dayCycle.EntryEndTime) + { + dayCycle.CurrentTimeEntry = nextEntry; + dayCycle.EntryStartTime = dayCycle.EntryEndTime; + dayCycle.EntryEndTime = dayCycle.EntryEndTime + dayCycle.TimeEntries[nextEntry].Duration; + + if (dayCycle.IsNight && !dayCycle.TimeEntries[curEntry].IsNight) // Day started + { + dayCycle.IsNight = false; + var ev = new DayCycleDayStartedEvent(uid); + RaiseLocalEvent(uid, ref ev, true); + } + if (!dayCycle.IsNight && dayCycle.TimeEntries[curEntry].IsNight) // Night started + { + dayCycle.IsNight = true; + var ev = new DayCycleNightStartedEvent(uid); + RaiseLocalEvent(uid, ref ev, true); + } + } + } + } + + public static float GetLerpValue(float start, float end, float current) + { + if (start == end) + return 0f; + else + { + float distanceFromStart = current - start; + float totalDistance = end - start; + + return MathHelper.Clamp01(distanceFromStart / totalDistance); + } + } +} diff --git a/Resources/Maps/CrystallPunk/dev_map.yml b/Resources/Maps/CrystallPunk/dev_map.yml new file mode 100644 index 0000000000..ccc96a798b --- /dev/null +++ b/Resources/Maps/CrystallPunk/dev_map.yml @@ -0,0 +1,7735 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 96: FloorSteel + 111: FloorTechMaint + 115: FloorWhite + 128: Lattice + 129: Plating +entities: +- proto: "" + entities: + - uid: 179 + components: + - type: MetaData + - type: Transform + parent: 962 + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: YAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: gAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: cwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: YAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GridAtmosphere + version: 2 + data: + tiles: + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -4,-3: + 0: 61440 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-3: + 0: 61440 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65520 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,4: + 0: 61183 + 0,5: + 0: 61166 + 0,6: + 0: 14 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 15 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 4095 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 3,6: + 0: 53247 + 3,7: + 0: 12 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 4369 + 1: 8738 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + 3,1: + 0: 61166 + 0,-4: + 0: 65527 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 30576 + 1,-3: + 0: 65399 + 1,-2: + 0: 63359 + 1,-1: + 0: 65535 + 2,-2: + 0: 4096 + 1: 8738 + 2,-1: + 0: 4369 + 1: 8738 + 3,-1: + 0: 65262 + 3,-2: + 0: 61152 + 4,-2: + 0: 65520 + 4,-1: + 0: 65535 + 5,-2: + 0: 65520 + 5,-1: + 0: 65535 + 6,-2: + 0: 65520 + 6,-1: + 0: 65535 + 7,-2: + 0: 65520 + 7,-1: + 0: 65535 + -5,0: + 0: 52428 + -5,-3: + 0: 32768 + -5,-2: + 0: 51336 + -5,-1: + 0: 52428 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 63351 + 7,0: + 0: 30583 + 7,1: + 0: 4375 + 7,2: + 0: 4369 + 7,3: + 0: 4096 + 8,-2: + 0: 30576 + 8,-1: + 0: 30583 + 4,4: + 0: 30583 + 4,5: + 0: 30583 + 4,6: + 0: 30583 + 4,7: + 0: 7 + -4,2: + 0: 26367 + -1,3: + 0: 15 + 2,1: + 0: 4369 + 1: 2 + -5,1: + 0: 52428 + -4,3: + 0: 26222 + -3,3: + 0: 15 + -2,3: + 0: 15 + -4,4: + 0: 238 + -3,4: + 0: 255 + -2,4: + 0: 255 + -1,4: + 0: 255 + -5,2: + 0: 204 + -3,2: + 0: 35071 + 0,-5: + 0: 28672 + -1,-5: + 0: 61440 + 2,-3: + 1: 12834 + 2,-4: + 1: 61166 + 3,-4: + 1: 13107 + 2,-5: + 1: 57344 + 3,-5: + 1: 12288 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: BecomesStation + id: Dev + - type: SpreaderGrid + - type: GridPathfinding + - type: NavMap + - uid: 962 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: GridTree + - type: MovedGrids + - type: MapLight + - type: DayCycle + timeEntries: + - startColor: "#754a4a" #Рассвет + duration: 10 + isNight: false + - startColor: "#e0ba87" #Полдень + duration: 10 + isNight: false + - startColor: "#bfeeff" #Полдень + duration: 10 + isNight: false + - startColor: "#385163" #Вечер + duration: 10 + isNight: true + - startColor: "#060d12" #Ночь + duration: 10 + isNight: true + - startColor: "#000000" #Ночь + duration: 10 + isNight: true + - startColor: "#120906" #Ночь + duration: 10 + isNight: false +- proto: AirAlarm + entities: + - uid: 800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 179 + - type: DeviceList + devices: + - 801 + - type: AtmosDevice + joinedGrid: 179 +- proto: AirCanister + entities: + - uid: 458 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: Airlock + entities: + - uid: 48 + components: + - type: Transform + pos: 7.5,20.5 + parent: 179 + - uid: 119 + components: + - type: Transform + pos: 6.5,17.5 + parent: 179 + - uid: 170 + components: + - type: Transform + pos: 13.5,10.5 + parent: 179 + - uid: 378 + components: + - type: Transform + pos: -9.5,0.5 + parent: 179 + - uid: 1182 + components: + - type: Transform + pos: 6.5,28.5 + parent: 179 +- proto: AirlockCargo + entities: + - uid: 87 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 179 +- proto: AirlockEngineering + entities: + - uid: 257 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 179 + - uid: 258 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 179 + - uid: 530 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 179 + - uid: 563 + components: + - type: Transform + pos: -13.5,0.5 + parent: 179 + - uid: 867 + components: + - type: Transform + pos: -12.5,0.5 + parent: 179 +- proto: AirlockExternal + entities: + - uid: 155 + components: + - type: Transform + pos: 26.5,13.5 + parent: 179 + - uid: 203 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 179 + - uid: 255 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 179 + - uid: 256 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 179 + - uid: 318 + components: + - type: Transform + pos: 24.5,13.5 + parent: 179 +- proto: AirlockExternalGlass + entities: + - uid: 216 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 179 +- proto: AirlockGlassShuttle + entities: + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,9.5 + parent: 179 + - uid: 204 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 179 +- proto: AirlockMedicalGlass + entities: + - uid: 177 + components: + - type: Transform + pos: 26.5,4.5 + parent: 179 + - uid: 178 + components: + - type: Transform + pos: 20.5,3.5 + parent: 179 + - uid: 206 + components: + - type: Transform + pos: 16.5,3.5 + parent: 179 + - uid: 207 + components: + - type: Transform + pos: 15.5,3.5 + parent: 179 + - uid: 369 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 179 + - uid: 370 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 179 +- proto: AirlockScience + entities: + - uid: 24 + components: + - type: Transform + pos: 14.5,24.5 + parent: 179 + - uid: 47 + components: + - type: Transform + pos: 16.5,18.5 + parent: 179 + - uid: 102 + components: + - type: Transform + pos: 16.5,15.5 + parent: 179 + - uid: 306 + components: + - type: Transform + pos: 12.5,15.5 + parent: 179 +- proto: AirlockScienceGlass + entities: + - uid: 26 + components: + - type: Transform + pos: 14.5,20.5 + parent: 179 +- proto: AirlockShuttle + entities: + - uid: 116 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 179 +- proto: AirSensor + entities: + - uid: 801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 179 +- proto: AlwaysPoweredWallLight + entities: + - uid: 59 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 179 + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 179 + - uid: 398 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 179 + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 179 + - uid: 512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,6.5 + parent: 179 + - uid: 662 + components: + - type: Transform + pos: 11.5,14.5 + parent: 179 + - uid: 664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,12.5 + parent: 179 + - uid: 667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 179 + - uid: 669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,4.5 + parent: 179 + - uid: 852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 179 + - uid: 907 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 179 + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 179 + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 179 + - uid: 914 + components: + - type: Transform + pos: 4.5,3.5 + parent: 179 + - uid: 915 + components: + - type: Transform + pos: 6.5,7.5 + parent: 179 + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 179 + - uid: 917 + components: + - type: Transform + pos: -2.5,10.5 + parent: 179 + - uid: 918 + components: + - type: Transform + pos: 3.5,18.5 + parent: 179 + - uid: 921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 179 + - uid: 922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 179 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 179 + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 179 + - uid: 926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,17.5 + parent: 179 + - uid: 953 + components: + - type: Transform + pos: -14.5,16.5 + parent: 179 + - uid: 957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 179 + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 179 +- proto: AnomalyLocator + entities: + - uid: 1086 + components: + - type: Transform + pos: 17.237877,19.653782 + parent: 179 +- proto: AnomalyScanner + entities: + - uid: 1085 + components: + - type: Transform + pos: 17.539398,19.352007 + parent: 179 +- proto: APCBasic + entities: + - uid: 753 + components: + - type: Transform + pos: -2.5,11.5 + parent: 179 + - type: Battery + startingCharge: 500000000 + maxCharge: 500000000 + - type: PowerNetworkBattery + supplyRampRate: 50000 + supplyRampTolerance: 100000 + maxSupply: 1000000 + maxChargeRate: 500000 + - uid: 1015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-14.5 + parent: 179 +- proto: ArrivalsShuttleTimer + entities: + - uid: 1191 + components: + - type: Transform + pos: -7.5,5.5 + parent: 179 +- proto: AtmosDeviceFanTiny + entities: + - uid: 992 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 179 + - uid: 993 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 179 +- proto: Autolathe + entities: + - uid: 1 + components: + - type: Transform + pos: 12.5,21.5 + parent: 179 + - uid: 94 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 179 + - uid: 446 + components: + - type: Transform + pos: -6.5,5.5 + parent: 179 + - uid: 528 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 179 + - uid: 531 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 179 + - uid: 532 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 179 +- proto: BaseUplinkRadioDebug + entities: + - uid: 732 + components: + - type: Transform + pos: 0.6038008,7.5209107 + parent: 179 +- proto: Basketball + entities: + - uid: 951 + components: + - type: Transform + pos: -9.702013,9.68404 + parent: 179 + - uid: 952 + components: + - type: Transform + pos: -10.879096,9.579802 + parent: 179 +- proto: Beaker + entities: + - uid: 174 + components: + - type: Transform + pos: 25.291822,10.667244 + parent: 179 + - uid: 175 + components: + - type: Transform + pos: 24.541822,10.635994 + parent: 179 + - uid: 176 + components: + - type: Transform + pos: 26.416822,10.651619 + parent: 179 + - uid: 324 + components: + - type: Transform + pos: 4.718221,9.39097 + parent: 179 + - uid: 735 + components: + - type: Transform + pos: 4.739054,9.807927 + parent: 179 + - uid: 920 + components: + - type: Transform + pos: -4.293744,10.966518 + parent: 179 + - uid: 950 + components: + - type: Transform + pos: -4.293744,10.966518 + parent: 179 +- proto: BikeHorn + entities: + - uid: 672 + components: + - type: Transform + pos: 1.1246341,7.500063 + parent: 179 +- proto: BlastDoor + entities: + - uid: 202 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 179 + - type: DeviceLinkSink + links: + - 1013 + - uid: 697 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 179 + - type: DeviceLinkSink + links: + - 1014 + - uid: 698 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 179 + - type: DeviceLinkSink + links: + - 1014 + - uid: 984 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 179 + - type: DeviceLinkSink + links: + - 1013 +- proto: BoozeDispenser + entities: + - uid: 752 + components: + - type: Transform + pos: 7.5,12.5 + parent: 179 +- proto: BoxBeaker + entities: + - uid: 280 + components: + - type: Transform + pos: 5.163024,9.63072 + parent: 179 +- proto: Brutepack + entities: + - uid: 150 + components: + - type: Transform + pos: 18.601385,5.512907 + parent: 179 + - uid: 151 + components: + - type: Transform + pos: 18.476385,4.841032 + parent: 179 +- proto: Bucket + entities: + - uid: 691 + components: + - type: Transform + pos: 7.1447573,15.900927 + parent: 179 +- proto: CableApcExtension + entities: + - uid: 15 + components: + - type: Transform + pos: 5.5,15.5 + parent: 179 + - uid: 23 + components: + - type: Transform + pos: 3.5,15.5 + parent: 179 + - uid: 58 + components: + - type: Transform + pos: 8.5,15.5 + parent: 179 + - uid: 90 + components: + - type: Transform + pos: 4.5,15.5 + parent: 179 + - uid: 281 + components: + - type: Transform + pos: -13.5,4.5 + parent: 179 + - uid: 389 + components: + - type: Transform + pos: 7.5,15.5 + parent: 179 + - uid: 453 + components: + - type: Transform + pos: 6.5,15.5 + parent: 179 + - uid: 736 + components: + - type: Transform + pos: -2.5,9.5 + parent: 179 + - uid: 760 + components: + - type: Transform + pos: -2.5,10.5 + parent: 179 + - uid: 761 + components: + - type: Transform + pos: -15.5,5.5 + parent: 179 + - uid: 763 + components: + - type: Transform + pos: -2.5,11.5 + parent: 179 + - uid: 764 + components: + - type: Transform + pos: -1.5,11.5 + parent: 179 + - uid: 765 + components: + - type: Transform + pos: -7.5,0.5 + parent: 179 + - uid: 766 + components: + - type: Transform + pos: -0.5,11.5 + parent: 179 + - uid: 767 + components: + - type: Transform + pos: -3.5,10.5 + parent: 179 + - uid: 768 + components: + - type: Transform + pos: -4.5,10.5 + parent: 179 + - uid: 769 + components: + - type: Transform + pos: -5.5,10.5 + parent: 179 + - uid: 770 + components: + - type: Transform + pos: -6.5,10.5 + parent: 179 + - uid: 771 + components: + - type: Transform + pos: -2.5,8.5 + parent: 179 + - uid: 772 + components: + - type: Transform + pos: -2.5,7.5 + parent: 179 + - uid: 773 + components: + - type: Transform + pos: -2.5,6.5 + parent: 179 + - uid: 774 + components: + - type: Transform + pos: -2.5,5.5 + parent: 179 + - uid: 775 + components: + - type: Transform + pos: -3.5,5.5 + parent: 179 + - uid: 776 + components: + - type: Transform + pos: -4.5,5.5 + parent: 179 + - uid: 777 + components: + - type: Transform + pos: -5.5,5.5 + parent: 179 + - uid: 778 + components: + - type: Transform + pos: -6.5,5.5 + parent: 179 + - uid: 779 + components: + - type: Transform + pos: -6.5,4.5 + parent: 179 + - uid: 780 + components: + - type: Transform + pos: -7.5,4.5 + parent: 179 + - uid: 781 + components: + - type: Transform + pos: -8.5,4.5 + parent: 179 + - uid: 782 + components: + - type: Transform + pos: -9.5,4.5 + parent: 179 + - uid: 783 + components: + - type: Transform + pos: -10.5,4.5 + parent: 179 + - uid: 784 + components: + - type: Transform + pos: -11.5,4.5 + parent: 179 + - uid: 785 + components: + - type: Transform + pos: -12.5,4.5 + parent: 179 + - uid: 786 + components: + - type: Transform + pos: -12.5,3.5 + parent: 179 + - uid: 787 + components: + - type: Transform + pos: -12.5,2.5 + parent: 179 + - uid: 788 + components: + - type: Transform + pos: -12.5,1.5 + parent: 179 + - uid: 789 + components: + - type: Transform + pos: -12.5,0.5 + parent: 179 + - uid: 790 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 179 + - uid: 791 + components: + - type: Transform + pos: -2.5,4.5 + parent: 179 + - uid: 792 + components: + - type: Transform + pos: -2.5,2.5 + parent: 179 + - uid: 793 + components: + - type: Transform + pos: -2.5,1.5 + parent: 179 + - uid: 794 + components: + - type: Transform + pos: -2.5,0.5 + parent: 179 + - uid: 795 + components: + - type: Transform + pos: -2.5,3.5 + parent: 179 + - uid: 796 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 179 + - uid: 797 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 179 + - uid: 798 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 179 + - uid: 799 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 179 + - uid: 802 + components: + - type: Transform + pos: -8.5,0.5 + parent: 179 + - uid: 803 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 179 + - uid: 804 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 179 + - uid: 805 + components: + - type: Transform + pos: -9.5,0.5 + parent: 179 + - uid: 806 + components: + - type: Transform + pos: -10.5,0.5 + parent: 179 + - uid: 807 + components: + - type: Transform + pos: -14.5,0.5 + parent: 179 + - uid: 808 + components: + - type: Transform + pos: -11.5,0.5 + parent: 179 + - uid: 809 + components: + - type: Transform + pos: -15.5,0.5 + parent: 179 + - uid: 810 + components: + - type: Transform + pos: -15.5,0.5 + parent: 179 + - uid: 811 + components: + - type: Transform + pos: -16.5,0.5 + parent: 179 + - uid: 812 + components: + - type: Transform + pos: -16.5,5.5 + parent: 179 + - uid: 813 + components: + - type: Transform + pos: -16.5,4.5 + parent: 179 + - uid: 814 + components: + - type: Transform + pos: -16.5,3.5 + parent: 179 + - uid: 815 + components: + - type: Transform + pos: -16.5,2.5 + parent: 179 + - uid: 816 + components: + - type: Transform + pos: -16.5,1.5 + parent: 179 + - uid: 817 + components: + - type: Transform + pos: 7.5,5.5 + parent: 179 + - uid: 818 + components: + - type: Transform + pos: 7.5,7.5 + parent: 179 + - uid: 819 + components: + - type: Transform + pos: 7.5,8.5 + parent: 179 + - uid: 820 + components: + - type: Transform + pos: 7.5,9.5 + parent: 179 + - uid: 821 + components: + - type: Transform + pos: 8.5,9.5 + parent: 179 + - uid: 822 + components: + - type: Transform + pos: 6.5,9.5 + parent: 179 + - uid: 823 + components: + - type: Transform + pos: 5.5,9.5 + parent: 179 + - uid: 824 + components: + - type: Transform + pos: 4.5,9.5 + parent: 179 + - uid: 825 + components: + - type: Transform + pos: 8.5,10.5 + parent: 179 + - uid: 826 + components: + - type: Transform + pos: 8.5,11.5 + parent: 179 + - uid: 827 + components: + - type: Transform + pos: 8.5,12.5 + parent: 179 + - uid: 828 + components: + - type: Transform + pos: 7.5,12.5 + parent: 179 + - uid: 829 + components: + - type: Transform + pos: 7.5,11.5 + parent: 179 + - uid: 830 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 179 + - uid: 831 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 179 + - uid: 832 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 179 + - uid: 833 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 179 + - uid: 834 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 179 + - uid: 835 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 179 + - uid: 836 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 179 + - uid: 837 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 179 + - uid: 838 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 179 + - uid: 839 + components: + - type: Transform + pos: 1.5,11.5 + parent: 179 + - uid: 840 + components: + - type: Transform + pos: 2.5,11.5 + parent: 179 + - uid: 841 + components: + - type: Transform + pos: 0.5,11.5 + parent: 179 + - uid: 842 + components: + - type: Transform + pos: 2.5,12.5 + parent: 179 + - uid: 843 + components: + - type: Transform + pos: 2.5,13.5 + parent: 179 + - uid: 844 + components: + - type: Transform + pos: 2.5,14.5 + parent: 179 + - uid: 845 + components: + - type: Transform + pos: 2.5,15.5 + parent: 179 + - uid: 853 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 179 + - uid: 854 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 179 + - uid: 855 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 179 + - uid: 856 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 179 + - uid: 857 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 179 + - uid: 858 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 179 + - uid: 859 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 179 + - uid: 860 + components: + - type: Transform + pos: -6.5,0.5 + parent: 179 + - uid: 861 + components: + - type: Transform + pos: -6.5,1.5 + parent: 179 + - uid: 862 + components: + - type: Transform + pos: -6.5,2.5 + parent: 179 + - uid: 872 + components: + - type: Transform + pos: 7.5,6.5 + parent: 179 + - uid: 873 + components: + - type: Transform + pos: 8.5,21.5 + parent: 179 + - uid: 877 + components: + - type: Transform + pos: -6.5,3.5 + parent: 179 + - uid: 878 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 179 + - uid: 879 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 179 + - uid: 880 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 179 + - uid: 881 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 179 + - uid: 882 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 179 + - uid: 883 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 179 + - uid: 884 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 179 + - uid: 885 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 179 + - uid: 886 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 179 + - uid: 887 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 179 + - uid: 888 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 179 + - uid: 889 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 179 + - uid: 890 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 179 + - uid: 891 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 179 + - uid: 892 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 179 + - uid: 893 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 179 + - uid: 894 + components: + - type: Transform + pos: 8.5,0.5 + parent: 179 + - uid: 895 + components: + - type: Transform + pos: 8.5,1.5 + parent: 179 + - uid: 896 + components: + - type: Transform + pos: 8.5,2.5 + parent: 179 + - uid: 897 + components: + - type: Transform + pos: 8.5,3.5 + parent: 179 + - uid: 898 + components: + - type: Transform + pos: 8.5,4.5 + parent: 179 + - uid: 899 + components: + - type: Transform + pos: 8.5,5.5 + parent: 179 + - uid: 900 + components: + - type: Transform + pos: -14.5,5.5 + parent: 179 + - uid: 905 + components: + - type: Transform + pos: -12.5,5.5 + parent: 179 + - uid: 906 + components: + - type: Transform + pos: -14.5,4.5 + parent: 179 + - uid: 908 + components: + - type: Transform + pos: -15.5,4.5 + parent: 179 + - uid: 909 + components: + - type: Transform + pos: 8.5,20.5 + parent: 179 + - uid: 970 + components: + - type: Transform + pos: 9.5,12.5 + parent: 179 + - uid: 971 + components: + - type: Transform + pos: 10.5,12.5 + parent: 179 + - uid: 972 + components: + - type: Transform + pos: 11.5,12.5 + parent: 179 + - uid: 973 + components: + - type: Transform + pos: 12.5,12.5 + parent: 179 + - uid: 974 + components: + - type: Transform + pos: 13.5,12.5 + parent: 179 + - uid: 1026 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 179 + - uid: 1027 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 179 + - uid: 1028 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 179 + - uid: 1029 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 179 + - uid: 1030 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 179 + - uid: 1031 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 179 + - uid: 1032 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 179 + - uid: 1033 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 179 + - uid: 1034 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 179 + - uid: 1035 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 179 + - uid: 1036 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 179 + - uid: 1037 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 179 + - uid: 1038 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 179 + - uid: 1039 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 179 + - uid: 1040 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 179 + - uid: 1041 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 179 + - uid: 1042 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 179 + - uid: 1043 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 179 + - uid: 1044 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 179 + - uid: 1045 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 179 + - uid: 1051 + components: + - type: Transform + pos: 9.5,15.5 + parent: 179 + - uid: 1052 + components: + - type: Transform + pos: 9.5,16.5 + parent: 179 + - uid: 1053 + components: + - type: Transform + pos: 9.5,17.5 + parent: 179 + - uid: 1054 + components: + - type: Transform + pos: 9.5,18.5 + parent: 179 + - uid: 1055 + components: + - type: Transform + pos: 9.5,19.5 + parent: 179 + - uid: 1056 + components: + - type: Transform + pos: 9.5,20.5 + parent: 179 + - uid: 1057 + components: + - type: Transform + pos: 10.5,20.5 + parent: 179 + - uid: 1058 + components: + - type: Transform + pos: 11.5,20.5 + parent: 179 + - uid: 1059 + components: + - type: Transform + pos: 12.5,20.5 + parent: 179 + - uid: 1060 + components: + - type: Transform + pos: 13.5,20.5 + parent: 179 + - uid: 1061 + components: + - type: Transform + pos: 14.5,20.5 + parent: 179 + - uid: 1062 + components: + - type: Transform + pos: 15.5,20.5 + parent: 179 + - uid: 1063 + components: + - type: Transform + pos: 16.5,20.5 + parent: 179 + - uid: 1064 + components: + - type: Transform + pos: 16.5,21.5 + parent: 179 + - uid: 1065 + components: + - type: Transform + pos: 16.5,22.5 + parent: 179 + - uid: 1066 + components: + - type: Transform + pos: 16.5,23.5 + parent: 179 + - uid: 1067 + components: + - type: Transform + pos: 16.5,24.5 + parent: 179 + - uid: 1068 + components: + - type: Transform + pos: 16.5,25.5 + parent: 179 + - uid: 1069 + components: + - type: Transform + pos: 16.5,26.5 + parent: 179 + - uid: 1070 + components: + - type: Transform + pos: 16.5,27.5 + parent: 179 + - uid: 1079 + components: + - type: Transform + pos: 15.5,24.5 + parent: 179 + - uid: 1080 + components: + - type: Transform + pos: 14.5,24.5 + parent: 179 + - uid: 1081 + components: + - type: Transform + pos: 13.5,24.5 + parent: 179 + - uid: 1082 + components: + - type: Transform + pos: 12.5,24.5 + parent: 179 + - uid: 1097 + components: + - type: Transform + pos: 8.5,14.5 + parent: 179 + - uid: 1098 + components: + - type: Transform + pos: 8.5,13.5 + parent: 179 + - uid: 1099 + components: + - type: Transform + pos: 9.5,13.5 + parent: 179 + - uid: 1100 + components: + - type: Transform + pos: 10.5,13.5 + parent: 179 + - uid: 1101 + components: + - type: Transform + pos: 11.5,13.5 + parent: 179 + - uid: 1102 + components: + - type: Transform + pos: 12.5,13.5 + parent: 179 + - uid: 1103 + components: + - type: Transform + pos: 13.5,13.5 + parent: 179 + - uid: 1104 + components: + - type: Transform + pos: 14.5,13.5 + parent: 179 + - uid: 1105 + components: + - type: Transform + pos: 15.5,13.5 + parent: 179 + - uid: 1106 + components: + - type: Transform + pos: 16.5,13.5 + parent: 179 + - uid: 1107 + components: + - type: Transform + pos: 17.5,13.5 + parent: 179 + - uid: 1108 + components: + - type: Transform + pos: 18.5,13.5 + parent: 179 + - uid: 1109 + components: + - type: Transform + pos: 19.5,13.5 + parent: 179 + - uid: 1110 + components: + - type: Transform + pos: 20.5,13.5 + parent: 179 + - uid: 1111 + components: + - type: Transform + pos: 21.5,13.5 + parent: 179 + - uid: 1112 + components: + - type: Transform + pos: 22.5,13.5 + parent: 179 + - uid: 1113 + components: + - type: Transform + pos: 23.5,13.5 + parent: 179 + - uid: 1114 + components: + - type: Transform + pos: 24.5,13.5 + parent: 179 + - uid: 1115 + components: + - type: Transform + pos: 25.5,13.5 + parent: 179 + - uid: 1116 + components: + - type: Transform + pos: 16.5,12.5 + parent: 179 + - uid: 1117 + components: + - type: Transform + pos: 16.5,11.5 + parent: 179 + - uid: 1118 + components: + - type: Transform + pos: 16.5,10.5 + parent: 179 + - uid: 1119 + components: + - type: Transform + pos: 16.5,9.5 + parent: 179 + - uid: 1120 + components: + - type: Transform + pos: 16.5,8.5 + parent: 179 + - uid: 1121 + components: + - type: Transform + pos: 16.5,7.5 + parent: 179 + - uid: 1122 + components: + - type: Transform + pos: 16.5,6.5 + parent: 179 + - uid: 1123 + components: + - type: Transform + pos: 16.5,5.5 + parent: 179 + - uid: 1124 + components: + - type: Transform + pos: 16.5,4.5 + parent: 179 + - uid: 1125 + components: + - type: Transform + pos: 16.5,3.5 + parent: 179 + - uid: 1126 + components: + - type: Transform + pos: 16.5,2.5 + parent: 179 + - uid: 1127 + components: + - type: Transform + pos: 16.5,1.5 + parent: 179 + - uid: 1128 + components: + - type: Transform + pos: 16.5,0.5 + parent: 179 + - uid: 1129 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 179 + - uid: 1130 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 179 + - uid: 1131 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 179 + - uid: 1132 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 179 + - uid: 1133 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 179 + - uid: 1134 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 179 + - uid: 1135 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 179 + - uid: 1136 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 179 + - uid: 1137 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 179 + - uid: 1138 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 179 + - uid: 1139 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 179 + - uid: 1140 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 179 + - uid: 1141 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 179 + - uid: 1142 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 179 + - uid: 1143 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 179 + - uid: 1144 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 179 + - uid: 1145 + components: + - type: Transform + pos: 17.5,2.5 + parent: 179 + - uid: 1146 + components: + - type: Transform + pos: 18.5,2.5 + parent: 179 + - uid: 1147 + components: + - type: Transform + pos: 19.5,2.5 + parent: 179 + - uid: 1148 + components: + - type: Transform + pos: 20.5,2.5 + parent: 179 + - uid: 1149 + components: + - type: Transform + pos: 21.5,2.5 + parent: 179 + - uid: 1150 + components: + - type: Transform + pos: 22.5,2.5 + parent: 179 + - uid: 1151 + components: + - type: Transform + pos: 23.5,2.5 + parent: 179 + - uid: 1152 + components: + - type: Transform + pos: 24.5,2.5 + parent: 179 + - uid: 1153 + components: + - type: Transform + pos: 25.5,2.5 + parent: 179 + - uid: 1154 + components: + - type: Transform + pos: 26.5,2.5 + parent: 179 + - uid: 1155 + components: + - type: Transform + pos: 27.5,2.5 + parent: 179 + - uid: 1156 + components: + - type: Transform + pos: 28.5,2.5 + parent: 179 + - uid: 1157 + components: + - type: Transform + pos: 26.5,3.5 + parent: 179 + - uid: 1158 + components: + - type: Transform + pos: 26.5,4.5 + parent: 179 + - uid: 1159 + components: + - type: Transform + pos: 26.5,5.5 + parent: 179 + - uid: 1160 + components: + - type: Transform + pos: 26.5,6.5 + parent: 179 + - uid: 1161 + components: + - type: Transform + pos: 26.5,7.5 + parent: 179 + - uid: 1162 + components: + - type: Transform + pos: 26.5,8.5 + parent: 179 + - uid: 1163 + components: + - type: Transform + pos: 26.5,9.5 + parent: 179 + - uid: 1164 + components: + - type: Transform + pos: 25.5,9.5 + parent: 179 + - uid: 1165 + components: + - type: Transform + pos: 24.5,9.5 + parent: 179 + - uid: 1166 + components: + - type: Transform + pos: 16.5,19.5 + parent: 179 + - uid: 1167 + components: + - type: Transform + pos: 16.5,18.5 + parent: 179 + - uid: 1168 + components: + - type: Transform + pos: 16.5,17.5 + parent: 179 + - uid: 1169 + components: + - type: Transform + pos: 16.5,16.5 + parent: 179 + - uid: 1170 + components: + - type: Transform + pos: 16.5,15.5 + parent: 179 + - uid: 1171 + components: + - type: Transform + pos: 16.5,14.5 + parent: 179 + - uid: 1177 + components: + - type: Transform + pos: 8.5,22.5 + parent: 179 + - uid: 1178 + components: + - type: Transform + pos: 8.5,23.5 + parent: 179 + - uid: 1179 + components: + - type: Transform + pos: 8.5,24.5 + parent: 179 + - uid: 1180 + components: + - type: Transform + pos: 8.5,25.5 + parent: 179 +- proto: CableApcStack + entities: + - uid: 70 + components: + - type: Transform + pos: 10.577456,21.424059 + parent: 179 + - uid: 183 + components: + - type: Transform + pos: -6.6863613,7.351646 + parent: 179 + - uid: 351 + components: + - type: Transform + pos: 10.561831,21.767809 + parent: 179 + - uid: 537 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 179 + - uid: 538 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 179 +- proto: CableHV + entities: + - uid: 1019 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 179 + - uid: 1020 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 179 + - uid: 1021 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 179 +- proto: CableHVStack + entities: + - uid: 184 + components: + - type: Transform + pos: -6.665528,7.840053 + parent: 179 +- proto: CableMV + entities: + - uid: 1023 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 179 + - uid: 1024 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 179 + - uid: 1025 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 179 +- proto: CableMVStack + entities: + - uid: 325 + components: + - type: Transform + pos: -6.665528,7.5601244 + parent: 179 +- proto: CableTerminal + entities: + - uid: 1022 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 179 +- proto: CapacitorStockPart + entities: + - uid: 296 + components: + - type: Transform + pos: -4.3012447,8.817795 + parent: 179 + - uid: 700 + components: + - type: Transform + pos: -3.8324947,8.786524 + parent: 179 + - uid: 701 + components: + - type: Transform + pos: -3.2804112,8.786524 + parent: 179 + - uid: 704 + components: + - type: Transform + pos: -4.8741612,8.817795 + parent: 179 +- proto: CaptainIDCard + entities: + - uid: 726 + components: + - type: Transform + pos: 1.0820513,8.752605 + parent: 179 +- proto: CaptainSabre + entities: + - uid: 381 + components: + - type: Transform + pos: -3.277628,-2.15838 + parent: 179 +- proto: Catwalk + entities: + - uid: 2 + components: + - type: Transform + pos: 13.5,24.5 + parent: 179 + - uid: 7 + components: + - type: Transform + pos: 6.5,24.5 + parent: 179 + - uid: 20 + components: + - type: Transform + pos: 6.5,20.5 + parent: 179 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,18.5 + parent: 179 + - uid: 246 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 179 + - uid: 247 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 179 + - uid: 252 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 179 + - uid: 269 + components: + - type: Transform + pos: 12.5,10.5 + parent: 179 + - uid: 286 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 179 + - uid: 287 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 179 + - uid: 308 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 179 + - uid: 309 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 179 + - uid: 333 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 179 + - uid: 334 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 179 + - uid: 345 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,0.5 + parent: 179 + - uid: 346 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,1.5 + parent: 179 + - uid: 347 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,2.5 + parent: 179 + - uid: 348 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,3.5 + parent: 179 + - uid: 349 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,4.5 + parent: 179 + - uid: 403 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-0.5 + parent: 179 + - uid: 404 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-1.5 + parent: 179 + - uid: 405 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-2.5 + parent: 179 + - uid: 406 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-3.5 + parent: 179 + - uid: 407 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-4.5 + parent: 179 + - uid: 408 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-5.5 + parent: 179 + - uid: 409 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-6.5 + parent: 179 + - uid: 410 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-7.5 + parent: 179 + - uid: 411 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-8.5 + parent: 179 + - uid: 412 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-9.5 + parent: 179 + - uid: 413 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-10.5 + parent: 179 + - uid: 414 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-11.5 + parent: 179 + - uid: 415 + components: + - type: Transform + anchored: False + rot: -1.5707963267949 rad + pos: 8.5,-8.5 + parent: 179 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 179 + - uid: 442 + components: + - type: Transform + pos: -9.5,8.5 + parent: 179 + - uid: 514 + components: + - type: Transform + pos: -10.5,8.5 + parent: 179 + - uid: 541 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 179 + - uid: 542 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 179 + - uid: 695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 179 +- proto: Chair + entities: + - uid: 580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 179 + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,8.5 + parent: 179 + - uid: 582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 179 +- proto: ChairOfficeDark + entities: + - uid: 380 + components: + - type: Transform + rot: 3.1415926535897967 rad + pos: 0.5,-6.5 + parent: 179 +- proto: ChairOfficeLight + entities: + - uid: 576 + components: + - type: Transform + rot: 4.71238898038469 rad + pos: 19.5,4.5 + parent: 179 + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 179 + - uid: 578 + components: + - type: Transform + rot: 4.71238898038469 rad + pos: 23.5,8.5 + parent: 179 + - uid: 579 + components: + - type: Transform + pos: 24.5,5.5 + parent: 179 +- proto: chem_master + entities: + - uid: 311 + components: + - type: Transform + pos: 8.5,11.5 + parent: 179 +- proto: ChemDispenser + entities: + - uid: 583 + components: + - type: Transform + pos: 23.5,9.5 + parent: 179 + - type: ContainerContainer + containers: + ReagentDispenser-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 750 + components: + - type: Transform + pos: 7.5,11.5 + parent: 179 +- proto: ChemicalPayload + entities: + - uid: 432 + components: + - type: Transform + pos: 6.4651074,9.828774 + parent: 179 +- proto: ChemMasterMachineCircuitboard + entities: + - uid: 718 + components: + - type: Transform + pos: -4.5458,10.514079 + parent: 179 +- proto: CircuitImprinter + entities: + - uid: 332 + components: + - type: Transform + pos: -6.5,4.5 + parent: 179 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 319 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 322 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetToolFilled + entities: + - uid: 524 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 525 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 526 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 527 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 427 + components: + - type: Transform + pos: -1.895102,-10.33495 + parent: 179 + - uid: 428 + components: + - type: Transform + pos: -1.770102,-10.63182 + parent: 179 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 454 + components: + - type: Transform + pos: -0.78741443,4.322194 + parent: 179 +- proto: ClothingHeadHatWelding + entities: + - uid: 344 + components: + - type: Transform + pos: 0.7198646,4.374314 + parent: 179 +- proto: ClothingMaskBreath + entities: + - uid: 955 + components: + - type: Transform + pos: -10.595239,6.1907988 + parent: 179 +- proto: ClothingMaskGas + entities: + - uid: 425 + components: + - type: Transform + pos: -0.2880585,-10.69432 + parent: 179 +- proto: ClothingOuterHardsuitAtmos + entities: + - uid: 270 + components: + - type: Transform + pos: -10.5426235,5.472399 + parent: 179 +- proto: ClothingOuterVest + entities: + - uid: 426 + components: + - type: Transform + pos: -0.9130585,-10.66307 + parent: 179 +- proto: ClothingShoesBootsMag + entities: + - uid: 725 + components: + - type: Transform + pos: 0.47880077,8.073378 + parent: 179 +- proto: ClothingUniformJumpsuitEngineering + entities: + - uid: 424 + components: + - type: Transform + pos: -0.6474335,-10.27245 + parent: 179 +- proto: ClownPDA + entities: + - uid: 91 + components: + - type: Transform + pos: -15.5,2.5 + parent: 179 + - uid: 762 + components: + - type: Transform + pos: -14.5,1.5 + parent: 179 + - uid: 864 + components: + - type: Transform + pos: -14.5,2.5 + parent: 179 + - uid: 912 + components: + - type: Transform + pos: -15.5,1.5 + parent: 179 +- proto: ComputerAnalysisConsole + entities: + - uid: 1083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 1078: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerCargoOrders + entities: + - uid: 326 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 179 + - uid: 996 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 179 +- proto: ComputerCargoShuttle + entities: + - uid: 995 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 179 +- proto: ComputerMedicalRecords + entities: + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-5.5 + parent: 179 + - uid: 591 + components: + - type: Transform + pos: 21.5,5.5 + parent: 179 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 88 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 179 +- proto: ComputerShuttleCargo + entities: + - uid: 994 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 179 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 1185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 179 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 1088 + components: + - type: Transform + pos: 13.5,16.5 + parent: 179 +- proto: ConveyorBelt + entities: + - uid: 195 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 179 + - type: DeviceLinkSink + links: + - 699 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 179 + - type: DeviceLinkSink + links: + - 983 + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 179 + - type: DeviceLinkSink + links: + - 983 + - uid: 677 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 179 + - uid: 716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 179 + - type: DeviceLinkSink + links: + - 722 + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 179 + - type: DeviceLinkSink + links: + - 722 + - uid: 721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 179 + - type: DeviceLinkSink + links: + - 722 + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 179 + - type: DeviceLinkSink + links: + - 983 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 179 + - type: DeviceLinkSink + links: + - 983 + - uid: 990 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 179 + - type: DeviceLinkSink + links: + - 699 + - uid: 991 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 179 + - type: DeviceLinkSink + links: + - 699 +- proto: CrateEngineeringToolbox + entities: + - uid: 692 + components: + - type: Transform + pos: -0.5,3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateGeneric + entities: + - uid: 266 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateHydroponicsSeeds + entities: + - uid: 754 + components: + - type: Transform + pos: 2.5,12.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateHydroponicsTools + entities: + - uid: 755 + components: + - type: Transform + pos: 2.5,13.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateMedical + entities: + - uid: 131 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 132 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 1183 + components: + - type: Transform + pos: 9.5,25.5 + parent: 179 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 147 + components: + - type: Transform + pos: -2.172831,4.5306726 + parent: 179 + - uid: 423 + components: + - type: Transform + pos: -2.861032,-5.524786 + parent: 179 +- proto: DebugBatteryDischarger + entities: + - uid: 711 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 179 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 1198 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 179 +- proto: DefaultStationBeaconBotany + entities: + - uid: 1193 + components: + - type: Transform + pos: 3.5,15.5 + parent: 179 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 1195 + components: + - type: Transform + pos: 7.5,10.5 + parent: 179 +- proto: DefaultStationBeaconCommand + entities: + - uid: 1196 + components: + - type: Transform + pos: 0.5,8.5 + parent: 179 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 1172 + components: + - type: Transform + pos: 6.5,5.5 + parent: 179 +- proto: DefaultStationBeaconMedical + entities: + - uid: 1173 + components: + - type: Transform + pos: 19.5,5.5 + parent: 179 +- proto: DefaultStationBeaconScience + entities: + - uid: 1194 + components: + - type: Transform + pos: 12.5,20.5 + parent: 179 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 1197 + components: + - type: Transform + pos: -14.5,17.5 + parent: 179 +- proto: DefaultStationBeaconSupply + entities: + - uid: 1175 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 179 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 1174 + components: + - type: Transform + pos: -1.5,4.5 + parent: 179 +- proto: DisposalPipe + entities: + - uid: 717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 179 +- proto: DisposalTrunk + entities: + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 179 + - uid: 715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 179 +- proto: DisposalUnit + entities: + - uid: 719 + components: + - type: Transform + pos: -1.5,10.5 + parent: 179 +- proto: DrinkBeerglass + entities: + - uid: 688 + components: + - type: Transform + pos: 3.1981986,5.733985 + parent: 179 +- proto: DrinkColaCan + entities: + - uid: 690 + components: + - type: Transform + pos: 3.8231986,6.150942 + parent: 179 +- proto: Dropper + entities: + - uid: 730 + components: + - type: Transform + pos: 5.892191,9.4118185 + parent: 179 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 956 + components: + - type: Transform + pos: -10.505015,6.711994 + parent: 179 +- proto: ExGrenade + entities: + - uid: 433 + components: + - type: Transform + pos: -3.7704864,-1.6163371 + parent: 179 +- proto: ExplosivePayload + entities: + - uid: 668 + components: + - type: Transform + pos: 6.829691,9.4118185 + parent: 179 +- proto: FaxMachineCaptain + entities: + - uid: 967 + components: + - type: Transform + pos: 9.5,12.5 + parent: 179 +- proto: FaxMachineCentcom + entities: + - uid: 968 + components: + - type: Transform + pos: 11.5,12.5 + parent: 179 +- proto: FaxMachineSyndie + entities: + - uid: 969 + components: + - type: Transform + pos: 13.5,12.5 + parent: 179 +- proto: FireExtinguisher + entities: + - uid: 323 + components: + - type: Transform + pos: -1.297692,-5.396082 + parent: 179 + - uid: 868 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 179 +- proto: FlashlightLantern + entities: + - uid: 421 + components: + - type: Transform + pos: -1.934832,-5.154238 + parent: 179 + - uid: 422 + components: + - type: Transform + pos: 1.1350493,8.198464 + parent: 179 +- proto: FloorLavaEntity + entities: + - uid: 134 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 179 + - uid: 135 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 179 + - uid: 141 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 179 + - uid: 469 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 179 +- proto: FloorWaterEntity + entities: + - uid: 136 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 179 + - uid: 137 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 179 +- proto: FoodApple + entities: + - uid: 16 + components: + - type: Transform + pos: 3.9853282,16.430082 + parent: 179 + - uid: 849 + components: + - type: Transform + pos: 3.7249117,16.242453 + parent: 179 + - uid: 866 + components: + - type: Transform + pos: 3.651995,16.55517 + parent: 179 +- proto: FoodBurgerBacon + entities: + - uid: 689 + components: + - type: Transform + pos: 3.3844857,6.0702233 + parent: 179 +- proto: FoodCarrot + entities: + - uid: 850 + components: + - type: Transform + pos: 3.6023045,15.67151 + parent: 179 + - uid: 851 + components: + - type: Transform + pos: 3.620745,15.015423 + parent: 179 + - uid: 863 + components: + - type: Transform + pos: 3.620745,14.389988 + parent: 179 +- proto: FoodPizzaPineapple + entities: + - uid: 687 + components: + - type: Transform + pos: 3.5215416,6.799056 + parent: 179 +- proto: GasAnalyzer + entities: + - uid: 876 + components: + - type: Transform + pos: 4.4732866,-0.48882532 + parent: 179 +- proto: GasFilter + entities: + - uid: 480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: GasMixer + entities: + - uid: 747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: GasOutletInjector + entities: + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: GasPipeBend + entities: + - uid: 727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 179 +- proto: GasPipeFourway + entities: + - uid: 728 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 179 +- proto: GasPipeStraight + entities: + - uid: 749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 179 +- proto: GasPipeTJunction + entities: + - uid: 748 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 179 +- proto: GasPort + entities: + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: GasPressurePump + entities: + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: GasValve + entities: + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: GasVentPump + entities: + - uid: 729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: GasVentScrubber + entities: + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: GasVolumePump + entities: + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: GeigerCounter + entities: + - uid: 759 + components: + - type: Transform + pos: 1.760596,4.5697265 + parent: 179 +- proto: GravityGenerator + entities: + - uid: 744 + components: + - type: Transform + pos: 6.5,6.5 + parent: 179 +- proto: Grille + entities: + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 179 + - uid: 986 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 179 + - uid: 987 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 179 + - uid: 988 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 179 + - uid: 1007 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 179 + - uid: 1008 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 179 + - uid: 1009 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 179 + - uid: 1010 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 179 + - uid: 1011 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 179 + - uid: 1012 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 179 + - uid: 1089 + components: + - type: Transform + pos: 8.5,17.5 + parent: 179 + - uid: 1090 + components: + - type: Transform + pos: 9.5,17.5 + parent: 179 + - uid: 1091 + components: + - type: Transform + pos: 10.5,17.5 + parent: 179 + - uid: 1092 + components: + - type: Transform + pos: 10.5,16.5 + parent: 179 +- proto: Handcuffs + entities: + - uid: 331 + components: + - type: Transform + pos: -3.5805476,0.74100244 + parent: 179 +- proto: HandheldHealthAnalyzer + entities: + - uid: 513 + components: + - type: Transform + pos: -5.9808183,-3.6614444 + parent: 179 +- proto: HoloFan + entities: + - uid: 142 + components: + - type: Transform + pos: -8.5,7.5 + parent: 179 + missingComponents: + - TimedDespawn + - uid: 901 + components: + - type: Transform + pos: -10.5,7.5 + parent: 179 + missingComponents: + - TimedDespawn + - uid: 902 + components: + - type: Transform + pos: -9.5,7.5 + parent: 179 + missingComponents: + - TimedDespawn +- proto: HolosignWetFloor + entities: + - uid: 848 + components: + - type: Transform + pos: -13.5,2.5 + parent: 179 + - type: Fixtures + fixtures: {} + missingComponents: + - TimedDespawn + - uid: 911 + components: + - type: Transform + pos: -13.5,1.5 + parent: 179 + - type: Fixtures + fixtures: {} + missingComponents: + - TimedDespawn +- proto: hydroponicsTray + entities: + - uid: 756 + components: + - type: Transform + pos: 2.5,14.5 + parent: 179 + - uid: 757 + components: + - type: Transform + pos: 2.5,15.5 + parent: 179 +- proto: KitchenReagentGrinder + entities: + - uid: 731 + components: + - type: Transform + pos: 8.5,9.5 + parent: 179 +- proto: LargeBeaker + entities: + - uid: 210 + components: + - type: Transform + pos: 4.3272614,9.338851 + parent: 179 + - uid: 253 + components: + - type: Transform + pos: 23.494947,7.0422435 + parent: 179 + - uid: 402 + components: + - type: Transform + pos: 23.510572,7.7141185 + parent: 179 + - uid: 737 + components: + - type: Transform + pos: 4.2969,9.828774 + parent: 179 +- proto: LedLightTube + entities: + - uid: 481 + components: + - type: Transform + pos: -3.511025,-10.35149 + parent: 179 +- proto: LockerBotanistFilled + entities: + - uid: 869 + components: + - type: Transform + pos: 2.5,16.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChemistry + entities: + - uid: 127 + components: + - type: Transform + pos: 27.5,6.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChemistryFilled + entities: + - uid: 297 + components: + - type: Transform + pos: 7.5,9.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChiefEngineerFilled + entities: + - uid: 447 + components: + - type: Transform + pos: 7.5,2.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 444 + components: + - type: Transform + pos: 7.5,3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerEngineerFilled + entities: + - uid: 490 + components: + - type: Transform + pos: 7.5,4.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerMedical + entities: + - uid: 128 + components: + - type: Transform + pos: 27.5,5.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 129 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 130 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerMedicalFilled + entities: + - uid: 865 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerMedicineFilled + entities: + - uid: 562 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 493 + components: + - type: Transform + pos: -10.5,4.5 + parent: 179 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 871 + components: + - type: Transform + pos: 7.5,1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: MachineAnomalyGenerator + entities: + - uid: 1071 + components: + - type: Transform + pos: 16.5,25.5 + parent: 179 +- proto: MachineAnomalyVessel + entities: + - uid: 1087 + components: + - type: Transform + pos: 15.5,19.5 + parent: 179 +- proto: MachineArtifactAnalyzer + entities: + - uid: 1078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 + parent: 179 + - type: DeviceLinkSink + links: + - 1083 +- proto: MachineFrame + entities: + - uid: 533 + components: + - type: Transform + pos: -5.5,10.5 + parent: 179 +- proto: MedicalScanner + entities: + - uid: 592 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 179 + - type: ContainerContainer + containers: + MedicalScanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + scanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 593 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 179 + - type: ContainerContainer + containers: + MedicalScanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + scanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MedkitFilled + entities: + - uid: 153 + components: + - type: Transform + pos: 13.632214,1.5673001 + parent: 179 + - uid: 154 + components: + - type: Transform + pos: 13.460339,0.6141751 + parent: 179 + - uid: 321 + components: + - type: Transform + pos: 3.8440318,4.425983 + parent: 179 +- proto: MicroManipulatorStockPart + entities: + - uid: 455 + components: + - type: Transform + pos: -6.337244,8.838643 + parent: 179 + - uid: 456 + components: + - type: Transform + pos: -5.920577,8.817795 + parent: 179 + - uid: 484 + components: + - type: Transform + pos: -5.5039105,8.838643 + parent: 179 + - uid: 712 + components: + - type: Transform + pos: -6.7434506,8.817795 + parent: 179 + - uid: 959 + components: + - type: Transform + pos: -4.752078,10.904018 + parent: 179 +- proto: ModularGrenade + entities: + - uid: 435 + components: + - type: Transform + pos: 6.829691,9.860046 + parent: 179 +- proto: MopBucket + entities: + - uid: 696 + components: + - type: Transform + pos: 7.5,16.5 + parent: 179 +- proto: MopItem + entities: + - uid: 328 + components: + - type: Transform + pos: 7.6382103,16.08618 + parent: 179 + - type: SolutionContainerManager + solutions: + absorbed: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: Water + Quantity: 25 +- proto: Multitool + entities: + - uid: 307 + components: + - type: Transform + pos: -1.249865,-10.43489 + parent: 179 + - uid: 430 + components: + - type: Transform + pos: -0.6298993,4.7431083 + parent: 179 + - type: NetworkConfigurator + devices: + 'UID: 31739': 801 +- proto: NitrogenCanister + entities: + - uid: 459 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: Ointment + entities: + - uid: 148 + components: + - type: Transform + pos: 18.77326,6.653532 + parent: 179 + - uid: 149 + components: + - type: Transform + pos: 18.49201,6.059782 + parent: 179 +- proto: OxygenCanister + entities: + - uid: 340 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: PaperBin10 + entities: + - uid: 977 + components: + - type: Transform + pos: 10.5,12.5 + parent: 179 +- proto: PartRodMetal + entities: + - uid: 133 + components: + - type: Transform + pos: -3.4717777,7.672426 + parent: 179 +- proto: Pen + entities: + - uid: 978 + components: + - type: Transform + pos: 10.893699,12.7794075 + parent: 179 + - uid: 979 + components: + - type: Transform + pos: 10.862433,12.602201 + parent: 179 +- proto: PlasmaCanister + entities: + - uid: 461 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 179 + - type: AtmosDevice + joinedGrid: 179 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 997 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 179 + - uid: 998 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 179 + - uid: 999 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 179 + - uid: 1000 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 179 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 1016 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 179 +- proto: PowerCellHigh + entities: + - uid: 567 + components: + - type: Transform + pos: -4.76583,8.265328 + parent: 179 +- proto: PowerCellHyper + entities: + - uid: 703 + components: + - type: Transform + pos: -4.3179135,8.275752 + parent: 179 +- proto: PowerCellMedium + entities: + - uid: 186 + components: + - type: Transform + pos: -2.67511,-10.351 + parent: 179 + - uid: 187 + components: + - type: Transform + pos: -2.55011,-10.6635 + parent: 179 + - uid: 360 + components: + - type: Transform + pos: -3.7970803,8.275752 + parent: 179 +- proto: PowerCellRecharger + entities: + - uid: 709 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 179 +- proto: PowerCellSmall + entities: + - uid: 705 + components: + - type: Transform + pos: -3.3182633,8.234056 + parent: 179 +- proto: Poweredlight + entities: + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 663 + components: + - type: Transform + pos: 22.5,2.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 682 + components: + - type: Transform + pos: 13.5,2.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1075 + components: + - type: Transform + pos: 16.5,27.5 + parent: 179 + - uid: 1076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 179 +- proto: PoweredSmallLight + entities: + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,26.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,24.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 388 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 417 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Protolathe + entities: + - uid: 12 + components: + - type: Transform + pos: 13.5,21.5 + parent: 179 + - uid: 384 + components: + - type: Transform + pos: -6.5,6.5 + parent: 179 +- proto: Railing + entities: + - uid: 665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 179 + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 179 + - uid: 928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,11.5 + parent: 179 + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,12.5 + parent: 179 + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,13.5 + parent: 179 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 179 + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,15.5 + parent: 179 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,16.5 + parent: 179 + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 179 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 179 + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 179 + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 179 + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 179 + - uid: 939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 179 + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,17.5 + parent: 179 + - uid: 941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 179 + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 179 + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 179 + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 179 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,17.5 + parent: 179 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 179 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 179 + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 179 +- proto: RailingCornerSmall + entities: + - uid: 919 + components: + - type: Transform + pos: -14.5,9.5 + parent: 179 +- proto: ReinforcedWindow + entities: + - uid: 1084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 179 + - uid: 1093 + components: + - type: Transform + pos: 8.5,17.5 + parent: 179 + - uid: 1094 + components: + - type: Transform + pos: 9.5,17.5 + parent: 179 + - uid: 1095 + components: + - type: Transform + pos: 10.5,17.5 + parent: 179 + - uid: 1096 + components: + - type: Transform + pos: 10.5,16.5 + parent: 179 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 17 + components: + - type: Transform + pos: 8.5,18.5 + parent: 179 +- proto: ResearchDiskDebug + entities: + - uid: 54 + components: + - type: Transform + pos: 9.532393,18.446417 + parent: 179 +- proto: RubberStampCaptain + entities: + - uid: 982 + components: + - type: Transform + pos: 12.800895,12.664745 + parent: 179 +- proto: RubberStampCentcom + entities: + - uid: 980 + components: + - type: Transform + pos: 12.186007,12.716865 + parent: 179 +- proto: RubberStampSyndicate + entities: + - uid: 981 + components: + - type: Transform + pos: 12.436131,12.550082 + parent: 179 +- proto: Screen + entities: + - uid: 1192 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 179 +- proto: Screwdriver + entities: + - uid: 431 + components: + - type: Transform + pos: -1.235331,4.739151 + parent: 179 +- proto: SeedExtractor + entities: + - uid: 65 + components: + - type: Transform + pos: 2.5,17.5 + parent: 179 +- proto: SheetGlass + entities: + - uid: 354 + components: + - type: Transform + pos: 8.57603,21.566113 + parent: 179 + - uid: 479 + components: + - type: Transform + pos: -5.13758,7.5586076 + parent: 179 + - uid: 529 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 179 + - uid: 564 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 179 + - uid: 565 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 179 + - uid: 566 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 179 +- proto: SheetGlass1 + entities: + - uid: 960 + components: + - type: Transform + pos: -3.981244,10.799851 + parent: 179 +- proto: SheetPGlass + entities: + - uid: 416 + components: + - type: Transform + pos: -0.5,8.5 + parent: 179 +- proto: SheetPlasma + entities: + - uid: 1077 + components: + - type: Transform + pos: 17.485096,24.503635 + parent: 179 +- proto: SheetPlasteel + entities: + - uid: 478 + components: + - type: Transform + pos: -4.0129576,7.6107273 + parent: 179 +- proto: SheetPlastic + entities: + - uid: 79 + components: + - type: Transform + pos: 8.951309,21.511908 + parent: 179 + - uid: 181 + components: + - type: Transform + pos: -4.54383,7.579455 + parent: 179 +- proto: SheetRPGlass + entities: + - uid: 182 + components: + - type: Transform + pos: -0.5,7.5 + parent: 179 +- proto: SheetSteel + entities: + - uid: 205 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 179 + - uid: 305 + components: + - type: Transform + pos: 9.435405,21.503613 + parent: 179 + - uid: 382 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 179 + - uid: 473 + components: + - type: Transform + pos: -5.6834707,7.529523 + parent: 179 + - uid: 543 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 179 + - uid: 544 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 179 +- proto: SignalButton + entities: + - uid: 1013 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 202: + - Pressed: Toggle + 984: + - Pressed: Toggle + - uid: 1014 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 697: + - Pressed: Toggle + 698: + - Pressed: Toggle +- proto: SignCargoDock + entities: + - uid: 1046 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 179 +- proto: SmallLight + entities: + - uid: 1048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 179 + - uid: 1049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 179 +- proto: SMESBasic + entities: + - uid: 1017 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 179 +- proto: soda_dispenser + entities: + - uid: 751 + components: + - type: Transform + pos: 8.5,12.5 + parent: 179 +- proto: SpawnMobHuman + entities: + - uid: 138 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 179 + - uid: 139 + components: + - type: Transform + pos: -6.5,0.5 + parent: 179 + - uid: 140 + components: + - type: Transform + pos: 3.5,7.5 + parent: 179 +- proto: SpawnMobMouse + entities: + - uid: 1050 + components: + - type: Transform + pos: 3.5,8.5 + parent: 179 +- proto: SpawnPointCaptain + entities: + - uid: 954 + components: + - type: Transform + pos: -4.5,4.5 + parent: 179 +- proto: SpawnPointLatejoin + entities: + - uid: 961 + components: + - type: Transform + pos: -3.5,3.5 + parent: 179 +- proto: SpawnPointObserver + entities: + - uid: 679 + components: + - type: Transform + pos: -3.5,4.5 + parent: 179 +- proto: Spear + entities: + - uid: 185 + components: + - type: Transform + pos: -3.4579864,-1.9811735 + parent: 179 +- proto: SprayBottleWater + entities: + - uid: 903 + components: + - type: Transform + pos: 6.985283,16.424004 + parent: 179 +- proto: Stimpack + entities: + - uid: 462 + components: + - type: Transform + pos: 3.6877818,5.312015 + parent: 179 +- proto: Stool + entities: + - uid: 383 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 179 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 179 +- proto: Stunbaton + entities: + - uid: 434 + components: + - type: Transform + pos: -3.1734612,-2.6066077 + parent: 179 +- proto: SubstationBasic + entities: + - uid: 1018 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 179 +- proto: SurveillanceCameraGeneral + entities: + - uid: 1186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 179 + - uid: 1188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 179 + - uid: 1190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,10.5 + parent: 179 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 1189 + components: + - type: Transform + pos: 9.5,24.5 + parent: 179 +- proto: Syringe + entities: + - uid: 460 + components: + - type: Transform + pos: 3.2502818,4.5823417 + parent: 179 + - uid: 738 + components: + - type: Transform + pos: 5.767191,9.787079 + parent: 179 +- proto: Table + entities: + - uid: 63 + components: + - type: Transform + pos: 9.5,21.5 + parent: 179 + - uid: 64 + components: + - type: Transform + pos: 10.5,21.5 + parent: 179 + - uid: 67 + components: + - type: Transform + pos: 8.5,21.5 + parent: 179 + - uid: 92 + components: + - type: Transform + pos: 11.5,21.5 + parent: 179 + - uid: 143 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 179 + - uid: 144 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 179 + - uid: 145 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 179 + - uid: 161 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 179 + - uid: 162 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 179 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 179 + - uid: 180 + components: + - type: Transform + pos: -4.5,10.5 + parent: 179 + - uid: 262 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 179 + - uid: 263 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 179 + - uid: 264 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 179 + - uid: 265 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 179 + - uid: 267 + components: + - type: Transform + pos: 23.5,5.5 + parent: 179 + - uid: 268 + components: + - type: Transform + pos: 23.5,6.5 + parent: 179 + - uid: 298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 179 + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 179 + - uid: 300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 179 + - uid: 312 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 179 + - uid: 313 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 179 + - uid: 314 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 179 + - uid: 315 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 179 + - uid: 355 + components: + - type: Transform + pos: -6.5,7.5 + parent: 179 + - uid: 356 + components: + - type: Transform + pos: -5.5,7.5 + parent: 179 + - uid: 357 + components: + - type: Transform + pos: -4.5,7.5 + parent: 179 + - uid: 358 + components: + - type: Transform + pos: -3.5,7.5 + parent: 179 + - uid: 361 + components: + - type: Transform + pos: -0.5,7.5 + parent: 179 + - uid: 362 + components: + - type: Transform + pos: 0.5,7.5 + parent: 179 + - uid: 363 + components: + - type: Transform + pos: 1.5,7.5 + parent: 179 + - uid: 366 + components: + - type: Transform + pos: -2.5,4.5 + parent: 179 + - uid: 367 + components: + - type: Transform + pos: -1.5,4.5 + parent: 179 + - uid: 368 + components: + - type: Transform + pos: -0.5,4.5 + parent: 179 + - uid: 371 + components: + - type: Transform + pos: 1.5,4.5 + parent: 179 + - uid: 385 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 179 + - uid: 386 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 179 + - uid: 440 + components: + - type: Transform + pos: 0.5,4.5 + parent: 179 + - uid: 445 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 179 + - uid: 448 + components: + - type: Transform + pos: 3.5,5.5 + parent: 179 + - uid: 465 + components: + - type: Transform + pos: 1.5,8.5 + parent: 179 + - uid: 466 + components: + - type: Transform + pos: 0.5,8.5 + parent: 179 + - uid: 467 + components: + - type: Transform + pos: -3.5,8.5 + parent: 179 + - uid: 468 + components: + - type: Transform + pos: -0.5,8.5 + parent: 179 + - uid: 470 + components: + - type: Transform + pos: -6.5,8.5 + parent: 179 + - uid: 471 + components: + - type: Transform + pos: -5.5,8.5 + parent: 179 + - uid: 472 + components: + - type: Transform + pos: -4.5,8.5 + parent: 179 + - uid: 515 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 179 + - uid: 516 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 179 + - uid: 520 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 179 + - uid: 559 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 179 + - uid: 560 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 179 + - uid: 568 + components: + - type: Transform + pos: 18.5,4.5 + parent: 179 + - uid: 569 + components: + - type: Transform + pos: 21.5,6.5 + parent: 179 + - uid: 570 + components: + - type: Transform + pos: 20.5,6.5 + parent: 179 + - uid: 571 + components: + - type: Transform + pos: 18.5,6.5 + parent: 179 + - uid: 572 + components: + - type: Transform + pos: 19.5,6.5 + parent: 179 + - uid: 573 + components: + - type: Transform + pos: 18.5,5.5 + parent: 179 + - uid: 574 + components: + - type: Transform + pos: 22.5,8.5 + parent: 179 + - uid: 575 + components: + - type: Transform + pos: 24.5,4.5 + parent: 179 + - uid: 584 + components: + - type: Transform + pos: 23.5,7.5 + parent: 179 + - uid: 586 + components: + - type: Transform + pos: 25.5,10.5 + parent: 179 + - uid: 587 + components: + - type: Transform + pos: 23.5,10.5 + parent: 179 + - uid: 588 + components: + - type: Transform + pos: 24.5,10.5 + parent: 179 + - uid: 589 + components: + - type: Transform + pos: 26.5,10.5 + parent: 179 + - uid: 590 + components: + - type: Transform + pos: 27.5,10.5 + parent: 179 + - uid: 594 + components: + - type: Transform + pos: 13.5,2.5 + parent: 179 + - uid: 595 + components: + - type: Transform + pos: 13.5,0.5 + parent: 179 + - uid: 596 + components: + - type: Transform + pos: 13.5,1.5 + parent: 179 + - uid: 684 + components: + - type: Transform + pos: -3.5,0.5 + parent: 179 + - uid: 685 + components: + - type: Transform + pos: 3.5,4.5 + parent: 179 + - uid: 686 + components: + - type: Transform + pos: 3.5,6.5 + parent: 179 + - uid: 706 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 179 + - uid: 707 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 179 + - uid: 710 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 179 +- proto: TableGlass + entities: + - uid: 964 + components: + - type: Transform + pos: 9.5,12.5 + parent: 179 + - uid: 965 + components: + - type: Transform + pos: 11.5,12.5 + parent: 179 + - uid: 966 + components: + - type: Transform + pos: 13.5,12.5 + parent: 179 + - uid: 975 + components: + - type: Transform + pos: 10.5,12.5 + parent: 179 + - uid: 976 + components: + - type: Transform + pos: 12.5,12.5 + parent: 179 +- proto: TargetHuman + entities: + - uid: 159 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 179 +- proto: TelecomServerFilled + entities: + - uid: 963 + components: + - type: Transform + pos: -3.5,10.5 + parent: 179 +- proto: TimerTrigger + entities: + - uid: 482 + components: + - type: Transform + pos: 6.413024,9.39097 + parent: 179 +- proto: ToolboxElectricalFilled + entities: + - uid: 365 + components: + - type: Transform + pos: 0.4993378,3.429311 + parent: 179 + - uid: 419 + components: + - type: Transform + pos: -0.8099712,-5.21454 + parent: 179 + - uid: 420 + components: + - type: Transform + pos: -0.5597038,-5.679647 + parent: 179 +- proto: ToolboxMechanicalFilled + entities: + - uid: 364 + components: + - type: Transform + pos: 1.452203,3.4605832 + parent: 179 +- proto: ToyRubberDuck + entities: + - uid: 723 + components: + - type: Transform + pos: -1.6653601,11.616664 + parent: 179 +- proto: trayScanner + entities: + - uid: 758 + components: + - type: Transform + pos: 1.354346,4.548879 + parent: 179 +- proto: TwoWayLever + entities: + - uid: 699 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 990: + - Left: Forward + - Right: Reverse + - Middle: Off + 195: + - Left: Forward + - Right: Reverse + - Middle: Off + 991: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 722 + components: + - type: Transform + pos: 1.5,11.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 721: + - Left: Forward + - Right: Reverse + - Middle: Off + 720: + - Left: Forward + - Right: Reverse + - Middle: Off + 716: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 983 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 985: + - Left: Forward + - Right: Reverse + - Middle: Off + 259: + - Left: Forward + - Right: Reverse + - Middle: Off + 989: + - Left: Forward + - Right: Reverse + - Middle: Off + 463: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 522 + components: + - type: Transform + pos: -6.5,10.5 + parent: 179 +- proto: UniformPrinter + entities: + - uid: 443 + components: + - type: Transform + pos: -7.5,4.5 + parent: 179 +- proto: VendingMachineCigs + entities: + - uid: 870 + components: + - type: Transform + pos: -14.5,4.5 + parent: 179 +- proto: VendingMachineEngivend + entities: + - uid: 441 + components: + - type: Transform + pos: -11.5,4.5 + parent: 179 + - uid: 523 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 179 +- proto: VendingMachineMedical + entities: + - uid: 156 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 179 + - uid: 157 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 179 + - uid: 158 + components: + - type: Transform + pos: 29.5,3.5 + parent: 179 + - uid: 521 + components: + - type: Transform + pos: -12.5,4.5 + parent: 179 +- proto: VendingMachineSalvage + entities: + - uid: 485 + components: + - type: Transform + pos: -15.5,4.5 + parent: 179 +- proto: VendingMachineSec + entities: + - uid: 874 + components: + - type: Transform + pos: -13.5,4.5 + parent: 179 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 875 + components: + - type: Transform + pos: 7.5,0.5 + parent: 179 +- proto: VendingMachineYouTool + entities: + - uid: 350 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 179 +- proto: WallSolid + entities: + - uid: 3 + components: + - type: Transform + pos: 1.5,18.5 + parent: 179 + - uid: 4 + components: + - type: Transform + pos: 11.5,26.5 + parent: 179 + - uid: 5 + components: + - type: Transform + pos: 18.5,24.5 + parent: 179 + - uid: 6 + components: + - type: Transform + pos: 20.5,15.5 + parent: 179 + - uid: 8 + components: + - type: Transform + pos: 14.5,19.5 + parent: 179 + - uid: 9 + components: + - type: Transform + pos: 1.5,19.5 + parent: 179 + - uid: 10 + components: + - type: Transform + pos: 18.5,26.5 + parent: 179 + - uid: 11 + components: + - type: Transform + pos: 13.5,26.5 + parent: 179 + - uid: 13 + components: + - type: Transform + pos: 25.5,15.5 + parent: 179 + - uid: 18 + components: + - type: Transform + pos: 4.5,26.5 + parent: 179 + - uid: 19 + components: + - type: Transform + pos: 18.5,25.5 + parent: 179 + - uid: 21 + components: + - type: Transform + pos: 10.5,26.5 + parent: 179 + - uid: 22 + components: + - type: Transform + pos: 26.5,15.5 + parent: 179 + - uid: 25 + components: + - type: Transform + pos: 1.5,21.5 + parent: 179 + - uid: 27 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 179 + - uid: 28 + components: + - type: Transform + pos: 18.5,18.5 + parent: 179 + - uid: 29 + components: + - type: Transform + pos: 18.5,21.5 + parent: 179 + - uid: 30 + components: + - type: Transform + pos: 1.5,22.5 + parent: 179 + - uid: 31 + components: + - type: Transform + pos: 1.5,20.5 + parent: 179 + - uid: 32 + components: + - type: Transform + pos: 18.5,19.5 + parent: 179 + - uid: 33 + components: + - type: Transform + pos: 23.5,15.5 + parent: 179 + - uid: 34 + components: + - type: Transform + pos: 12.5,22.5 + parent: 179 + - uid: 35 + components: + - type: Transform + pos: 27.5,15.5 + parent: 179 + - uid: 36 + components: + - type: Transform + pos: 7.5,22.5 + parent: 179 + - uid: 37 + components: + - type: Transform + pos: 14.5,22.5 + parent: 179 + - uid: 38 + components: + - type: Transform + pos: 10.5,23.5 + parent: 179 + - uid: 39 + components: + - type: Transform + pos: 10.5,24.5 + parent: 179 + - uid: 40 + components: + - type: Transform + pos: 8.5,26.5 + parent: 179 + - uid: 41 + components: + - type: Transform + pos: 10.5,25.5 + parent: 179 + - uid: 42 + components: + - type: Transform + pos: 18.5,22.5 + parent: 179 + - uid: 43 + components: + - type: Transform + pos: 14.5,27.5 + parent: 179 + - uid: 44 + components: + - type: Transform + pos: 14.5,26.5 + parent: 179 + - uid: 45 + components: + - type: Transform + pos: 1.5,16.5 + parent: 179 + - uid: 46 + components: + - type: Transform + pos: 18.5,27.5 + parent: 179 + - uid: 49 + components: + - type: Transform + pos: 7.5,28.5 + parent: 179 + - uid: 50 + components: + - type: Transform + pos: 13.5,22.5 + parent: 179 + - uid: 51 + components: + - type: Transform + pos: 12.5,26.5 + parent: 179 + - uid: 52 + components: + - type: Transform + pos: 1.5,15.5 + parent: 179 + - uid: 53 + components: + - type: Transform + pos: 9.5,26.5 + parent: 179 + - uid: 55 + components: + - type: Transform + pos: 24.5,15.5 + parent: 179 + - uid: 56 + components: + - type: Transform + pos: 14.5,25.5 + parent: 179 + - uid: 57 + components: + - type: Transform + pos: 14.5,21.5 + parent: 179 + - uid: 60 + components: + - type: Transform + pos: 7.5,21.5 + parent: 179 + - uid: 61 + components: + - type: Transform + pos: 18.5,20.5 + parent: 179 + - uid: 62 + components: + - type: Transform + pos: 18.5,23.5 + parent: 179 + - uid: 66 + components: + - type: Transform + pos: 18.5,17.5 + parent: 179 + - uid: 68 + components: + - type: Transform + pos: 18.5,28.5 + parent: 179 + - uid: 69 + components: + - type: Transform + pos: 28.5,15.5 + parent: 179 + - uid: 71 + components: + - type: Transform + pos: 11.5,22.5 + parent: 179 + - uid: 72 + components: + - type: Transform + pos: 1.5,17.5 + parent: 179 + - uid: 73 + components: + - type: Transform + pos: 14.5,28.5 + parent: 179 + - uid: 74 + components: + - type: Transform + pos: 10.5,22.5 + parent: 179 + - uid: 75 + components: + - type: Transform + pos: 9.5,22.5 + parent: 179 + - uid: 76 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 179 + - uid: 77 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 179 + - uid: 78 + components: + - type: Transform + pos: 21.5,15.5 + parent: 179 + - uid: 80 + components: + - type: Transform + pos: 18.5,16.5 + parent: 179 + - uid: 81 + components: + - type: Transform + pos: 18.5,15.5 + parent: 179 + - uid: 82 + components: + - type: Transform + pos: 14.5,18.5 + parent: 179 + - uid: 83 + components: + - type: Transform + pos: 4.5,28.5 + parent: 179 + - uid: 84 + components: + - type: Transform + pos: 7.5,26.5 + parent: 179 + - uid: 85 + components: + - type: Transform + pos: 1.5,23.5 + parent: 179 + - uid: 86 + components: + - type: Transform + pos: 17.5,15.5 + parent: 179 + - uid: 89 + components: + - type: Transform + pos: 22.5,15.5 + parent: 179 + - uid: 95 + components: + - type: Transform + pos: 8.5,22.5 + parent: 179 + - uid: 96 + components: + - type: Transform + pos: 7.5,27.5 + parent: 179 + - uid: 97 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 179 + - uid: 98 + components: + - type: Transform + pos: 4.5,25.5 + parent: 179 + - uid: 99 + components: + - type: Transform + pos: 17.5,18.5 + parent: 179 + - uid: 100 + components: + - type: Transform + pos: 19.5,15.5 + parent: 179 + - uid: 101 + components: + - type: Transform + pos: 4.5,27.5 + parent: 179 + - uid: 103 + components: + - type: Transform + pos: 14.5,17.5 + parent: 179 + - uid: 104 + components: + - type: Transform + pos: 14.5,16.5 + parent: 179 + - uid: 105 + components: + - type: Transform + pos: 15.5,15.5 + parent: 179 + - uid: 106 + components: + - type: Transform + pos: 14.5,15.5 + parent: 179 + - uid: 107 + components: + - type: Transform + pos: 13.5,15.5 + parent: 179 + - uid: 109 + components: + - type: Transform + pos: 11.5,15.5 + parent: 179 + - uid: 110 + components: + - type: Transform + pos: 10.5,15.5 + parent: 179 + - uid: 112 + components: + - type: Transform + pos: 7.5,19.5 + parent: 179 + - uid: 113 + components: + - type: Transform + pos: 7.5,18.5 + parent: 179 + - uid: 114 + components: + - type: Transform + pos: 7.5,17.5 + parent: 179 + - uid: 117 + components: + - type: Transform + pos: 5.5,18.5 + parent: 179 + - uid: 118 + components: + - type: Transform + pos: 5.5,19.5 + parent: 179 + - uid: 121 + components: + - type: Transform + pos: 4.5,19.5 + parent: 179 + - uid: 122 + components: + - type: Transform + pos: 4.5,20.5 + parent: 179 + - uid: 123 + components: + - type: Transform + pos: 4.5,21.5 + parent: 179 + - uid: 124 + components: + - type: Transform + pos: 4.5,22.5 + parent: 179 + - uid: 125 + components: + - type: Transform + pos: 4.5,23.5 + parent: 179 + - uid: 126 + components: + - type: Transform + pos: 4.5,24.5 + parent: 179 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,9.5 + parent: 179 + - uid: 165 + components: + - type: Transform + pos: 8.5,2.5 + parent: 179 + - uid: 169 + components: + - type: Transform + pos: 8.5,0.5 + parent: 179 + - uid: 173 + components: + - type: Transform + pos: 8.5,1.5 + parent: 179 + - uid: 189 + components: + - type: Transform + pos: -7.5,0.5 + parent: 179 + - uid: 190 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 179 + - uid: 191 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 179 + - uid: 192 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 179 + - uid: 193 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 179 + - uid: 196 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 179 + - uid: 197 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 179 + - uid: 198 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 179 + - uid: 199 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 179 + - uid: 200 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 179 + - uid: 201 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 179 + - uid: 208 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 179 + - uid: 209 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 179 + - uid: 211 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 179 + - uid: 212 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 179 + - uid: 213 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 179 + - uid: 214 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 179 + - uid: 215 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 179 + - uid: 217 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 179 + - uid: 218 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 179 + - uid: 219 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 179 + - uid: 220 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 179 + - uid: 221 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 179 + - uid: 222 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 179 + - uid: 223 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 179 + - uid: 224 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 179 + - uid: 225 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 179 + - uid: 226 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 179 + - uid: 227 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 179 + - uid: 228 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 179 + - uid: 229 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 179 + - uid: 231 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 179 + - uid: 232 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 179 + - uid: 233 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 179 + - uid: 234 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 179 + - uid: 235 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 179 + - uid: 236 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 179 + - uid: 237 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 179 + - uid: 238 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 179 + - uid: 239 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 179 + - uid: 240 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 179 + - uid: 241 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 179 + - uid: 242 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 179 + - uid: 243 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 179 + - uid: 244 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 179 + - uid: 245 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 179 + - uid: 248 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 179 + - uid: 249 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 179 + - uid: 250 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 179 + - uid: 251 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 179 + - uid: 254 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 179 + - uid: 260 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 179 + - uid: 261 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 179 + - uid: 271 + components: + - type: Transform + pos: 1.5,14.5 + parent: 179 + - uid: 272 + components: + - type: Transform + pos: 1.5,13.5 + parent: 179 + - uid: 273 + components: + - type: Transform + pos: 1.5,12.5 + parent: 179 + - uid: 274 + components: + - type: Transform + pos: -7.5,11.5 + parent: 179 + - uid: 275 + components: + - type: Transform + pos: -6.5,11.5 + parent: 179 + - uid: 276 + components: + - type: Transform + pos: -5.5,11.5 + parent: 179 + - uid: 277 + components: + - type: Transform + pos: -4.5,11.5 + parent: 179 + - uid: 278 + components: + - type: Transform + pos: -3.5,11.5 + parent: 179 + - uid: 279 + components: + - type: Transform + pos: -2.5,11.5 + parent: 179 + - uid: 282 + components: + - type: Transform + pos: -1.5,12.5 + parent: 179 + - uid: 283 + components: + - type: Transform + pos: -0.5,12.5 + parent: 179 + - uid: 284 + components: + - type: Transform + pos: 0.5,12.5 + parent: 179 + - uid: 288 + components: + - type: Transform + pos: 12.5,8.5 + parent: 179 + - uid: 289 + components: + - type: Transform + pos: 11.5,8.5 + parent: 179 + - uid: 290 + components: + - type: Transform + pos: 10.5,8.5 + parent: 179 + - uid: 291 + components: + - type: Transform + pos: 9.5,8.5 + parent: 179 + - uid: 292 + components: + - type: Transform + pos: 8.5,8.5 + parent: 179 + - uid: 293 + components: + - type: Transform + pos: 7.5,8.5 + parent: 179 + - uid: 294 + components: + - type: Transform + pos: 6.5,8.5 + parent: 179 + - uid: 295 + components: + - type: Transform + pos: 5.5,8.5 + parent: 179 + - uid: 301 + components: + - type: Transform + pos: 9.5,11.5 + parent: 179 + - uid: 302 + components: + - type: Transform + pos: 10.5,11.5 + parent: 179 + - uid: 303 + components: + - type: Transform + pos: 11.5,11.5 + parent: 179 + - uid: 304 + components: + - type: Transform + pos: 12.5,11.5 + parent: 179 + - uid: 310 + components: + - type: Transform + pos: 9.5,9.5 + parent: 179 + - uid: 316 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 179 + - uid: 317 + components: + - type: Transform + pos: 26.5,14.5 + parent: 179 + - uid: 320 + components: + - type: Transform + pos: 24.5,14.5 + parent: 179 + - uid: 329 + components: + - type: Transform + pos: -11.5,5.5 + parent: 179 + - uid: 335 + components: + - type: Transform + pos: 13.5,11.5 + parent: 179 + - uid: 336 + components: + - type: Transform + pos: 14.5,11.5 + parent: 179 + - uid: 337 + components: + - type: Transform + pos: 13.5,9.5 + parent: 179 + - uid: 338 + components: + - type: Transform + pos: 13.5,8.5 + parent: 179 + - uid: 339 + components: + - type: Transform + pos: 13.5,7.5 + parent: 179 + - uid: 341 + components: + - type: Transform + pos: 24.5,12.5 + parent: 179 + - uid: 342 + components: + - type: Transform + pos: 26.5,12.5 + parent: 179 + - uid: 352 + components: + - type: Transform + pos: 13.5,6.5 + parent: 179 + - uid: 353 + components: + - type: Transform + pos: 13.5,5.5 + parent: 179 + - uid: 372 + components: + - type: Transform + pos: 13.5,4.5 + parent: 179 + - uid: 373 + components: + - type: Transform + pos: 25.5,4.5 + parent: 179 + - uid: 374 + components: + - type: Transform + pos: 23.5,4.5 + parent: 179 + - uid: 375 + components: + - type: Transform + pos: 17.5,3.5 + parent: 179 + - uid: 376 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 179 + - uid: 377 + components: + - type: Transform + pos: -10.5,0.5 + parent: 179 + - uid: 379 + components: + - type: Transform + pos: -8.5,0.5 + parent: 179 + - uid: 390 + components: + - type: Transform + pos: 18.5,3.5 + parent: 179 + - uid: 391 + components: + - type: Transform + pos: 19.5,3.5 + parent: 179 + - uid: 392 + components: + - type: Transform + pos: 21.5,3.5 + parent: 179 + - uid: 393 + components: + - type: Transform + pos: 22.5,3.5 + parent: 179 + - uid: 394 + components: + - type: Transform + pos: 22.5,4.5 + parent: 179 + - uid: 395 + components: + - type: Transform + pos: 22.5,5.5 + parent: 179 + - uid: 396 + components: + - type: Transform + pos: 22.5,6.5 + parent: 179 + - uid: 397 + components: + - type: Transform + pos: 22.5,7.5 + parent: 179 + - uid: 399 + components: + - type: Transform + pos: 22.5,10.5 + parent: 179 + - uid: 400 + components: + - type: Transform + pos: 21.5,11.5 + parent: 179 + - uid: 401 + components: + - type: Transform + pos: 22.5,11.5 + parent: 179 + - uid: 418 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 179 + - uid: 439 + components: + - type: Transform + pos: -13.5,5.5 + parent: 179 + - uid: 449 + components: + - type: Transform + pos: -16.5,2.5 + parent: 179 + - uid: 450 + components: + - type: Transform + pos: -16.5,3.5 + parent: 179 + - uid: 464 + components: + - type: Transform + pos: 4.5,8.5 + parent: 179 + - uid: 474 + components: + - type: Transform + pos: -7.5,8.5 + parent: 179 + - uid: 475 + components: + - type: Transform + pos: -7.5,7.5 + parent: 179 + - uid: 476 + components: + - type: Transform + pos: -7.5,6.5 + parent: 179 + - uid: 477 + components: + - type: Transform + pos: -7.5,5.5 + parent: 179 + - uid: 486 + components: + - type: Transform + pos: -15.5,5.5 + parent: 179 + - uid: 487 + components: + - type: Transform + pos: -16.5,4.5 + parent: 179 + - uid: 488 + components: + - type: Transform + pos: 5.5,17.5 + parent: 179 + - uid: 489 + components: + - type: Transform + pos: -11.5,0.5 + parent: 179 + - uid: 491 + components: + - type: Transform + pos: -16.5,5.5 + parent: 179 + - uid: 492 + components: + - type: Transform + pos: -14.5,5.5 + parent: 179 + - uid: 494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,7.5 + parent: 179 + - uid: 495 + components: + - type: Transform + pos: -12.5,5.5 + parent: 179 + - uid: 496 + components: + - type: Transform + pos: -16.5,1.5 + parent: 179 + - uid: 497 + components: + - type: Transform + pos: -16.5,0.5 + parent: 179 + - uid: 498 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 179 + - uid: 499 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 179 + - uid: 500 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 179 + - uid: 501 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 179 + - uid: 502 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 179 + - uid: 503 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 179 + - uid: 504 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 179 + - uid: 505 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 179 + - uid: 506 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 179 + - uid: 507 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 179 + - uid: 508 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 179 + - uid: 509 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 179 + - uid: 510 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 179 + - uid: 511 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 179 + - uid: 517 + components: + - type: Transform + pos: 23.5,11.5 + parent: 179 + - uid: 518 + components: + - type: Transform + pos: 24.5,11.5 + parent: 179 + - uid: 519 + components: + - type: Transform + pos: 25.5,11.5 + parent: 179 + - uid: 535 + components: + - type: Transform + pos: -15.5,0.5 + parent: 179 + - uid: 539 + components: + - type: Transform + pos: 26.5,11.5 + parent: 179 + - uid: 540 + components: + - type: Transform + pos: 27.5,11.5 + parent: 179 + - uid: 545 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 179 + - uid: 546 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 179 + - uid: 547 + components: + - type: Transform + pos: 28.5,11.5 + parent: 179 + - uid: 548 + components: + - type: Transform + pos: 28.5,10.5 + parent: 179 + - uid: 549 + components: + - type: Transform + pos: 28.5,9.5 + parent: 179 + - uid: 550 + components: + - type: Transform + pos: 28.5,8.5 + parent: 179 + - uid: 551 + components: + - type: Transform + pos: 28.5,7.5 + parent: 179 + - uid: 552 + components: + - type: Transform + pos: 28.5,6.5 + parent: 179 + - uid: 553 + components: + - type: Transform + pos: 28.5,5.5 + parent: 179 + - uid: 554 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 179 + - uid: 555 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 179 + - uid: 556 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 179 + - uid: 557 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 179 + - uid: 558 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 179 + - uid: 561 + components: + - type: Transform + pos: -14.5,0.5 + parent: 179 + - uid: 585 + components: + - type: Transform + pos: 9.5,10.5 + parent: 179 + - uid: 597 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 179 + - uid: 598 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 179 + - uid: 599 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 179 + - uid: 600 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 179 + - uid: 601 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 179 + - uid: 602 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 179 + - uid: 603 + components: + - type: Transform + pos: 14.5,3.5 + parent: 179 + - uid: 604 + components: + - type: Transform + pos: 13.5,3.5 + parent: 179 + - uid: 605 + components: + - type: Transform + pos: 12.5,3.5 + parent: 179 + - uid: 606 + components: + - type: Transform + pos: 12.5,2.5 + parent: 179 + - uid: 607 + components: + - type: Transform + pos: 12.5,1.5 + parent: 179 + - uid: 608 + components: + - type: Transform + pos: 12.5,0.5 + parent: 179 + - uid: 609 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 179 + - uid: 610 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 179 + - uid: 611 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 179 + - uid: 612 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 179 + - uid: 613 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 179 + - uid: 614 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 179 + - uid: 615 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 179 + - uid: 616 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 179 + - uid: 617 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 179 + - uid: 618 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 179 + - uid: 619 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 179 + - uid: 620 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 179 + - uid: 621 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 179 + - uid: 622 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 179 + - uid: 623 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 179 + - uid: 624 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 179 + - uid: 625 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 179 + - uid: 626 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 179 + - uid: 627 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 179 + - uid: 628 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 179 + - uid: 629 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 179 + - uid: 630 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 179 + - uid: 631 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 179 + - uid: 632 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 179 + - uid: 633 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 179 + - uid: 634 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 179 + - uid: 635 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 179 + - uid: 636 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 179 + - uid: 637 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 179 + - uid: 638 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 179 + - uid: 639 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 179 + - uid: 640 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 179 + - uid: 641 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 179 + - uid: 642 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 179 + - uid: 643 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 179 + - uid: 644 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 179 + - uid: 645 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 179 + - uid: 646 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 179 + - uid: 647 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 179 + - uid: 648 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 179 + - uid: 649 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 179 + - uid: 650 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 179 + - uid: 651 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 179 + - uid: 652 + components: + - type: Transform + pos: 30.5,0.5 + parent: 179 + - uid: 653 + components: + - type: Transform + pos: 30.5,1.5 + parent: 179 + - uid: 654 + components: + - type: Transform + pos: 30.5,2.5 + parent: 179 + - uid: 655 + components: + - type: Transform + pos: 30.5,3.5 + parent: 179 + - uid: 656 + components: + - type: Transform + pos: 30.5,4.5 + parent: 179 + - uid: 657 + components: + - type: Transform + pos: 29.5,4.5 + parent: 179 + - uid: 658 + components: + - type: Transform + pos: 28.5,4.5 + parent: 179 + - uid: 659 + components: + - type: Transform + pos: 27.5,4.5 + parent: 179 + - uid: 702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,6.5 + parent: 179 + - uid: 713 + components: + - type: Transform + pos: -7.5,9.5 + parent: 179 + - uid: 714 + components: + - type: Transform + pos: -7.5,10.5 + parent: 179 + - uid: 724 + components: + - type: Transform + pos: -2.5,12.5 + parent: 179 + - uid: 733 + components: + - type: Transform + pos: 4.5,5.5 + parent: 179 + - uid: 734 + components: + - type: Transform + pos: 4.5,4.5 + parent: 179 + - uid: 739 + components: + - type: Transform + pos: 8.5,7.5 + parent: 179 + - uid: 740 + components: + - type: Transform + pos: 8.5,6.5 + parent: 179 + - uid: 741 + components: + - type: Transform + pos: 8.5,5.5 + parent: 179 + - uid: 742 + components: + - type: Transform + pos: 8.5,4.5 + parent: 179 + - uid: 743 + components: + - type: Transform + pos: 8.5,3.5 + parent: 179 + - uid: 745 + components: + - type: Transform + pos: 4.5,7.5 + parent: 179 + - uid: 746 + components: + - type: Transform + pos: 4.5,6.5 + parent: 179 + - uid: 846 + components: + - type: Transform + pos: 2.5,19.5 + parent: 179 + - uid: 847 + components: + - type: Transform + pos: 3.5,19.5 + parent: 179 + - uid: 925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,17.5 + parent: 179 + - uid: 958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 179 + - uid: 1072 + components: + - type: Transform + pos: 15.5,28.5 + parent: 179 + - uid: 1073 + components: + - type: Transform + pos: 16.5,28.5 + parent: 179 + - uid: 1074 + components: + - type: Transform + pos: 17.5,28.5 + parent: 179 + - uid: 1181 + components: + - type: Transform + pos: 5.5,28.5 + parent: 179 +- proto: WaterTankFull + entities: + - uid: 115 + components: + - type: Transform + pos: 4.5,18.5 + parent: 179 + - uid: 694 + components: + - type: Transform + pos: -2.5,3.5 + parent: 179 +- proto: WeaponCapacitorRecharger + entities: + - uid: 708 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 179 +- proto: WeaponLaserCarbine + entities: + - uid: 188 + components: + - type: Transform + pos: -3.5226438,-0.45543313 + parent: 179 +- proto: WeaponLauncherMultipleRocket + entities: + - uid: 671 + components: + - type: Transform + pos: -13.195735,9.730438 + parent: 179 +- proto: WeaponLauncherRocket + entities: + - uid: 436 + components: + - type: Transform + pos: -3.478273,-1.1611286 + parent: 179 +- proto: WeaponRifleAk + entities: + - uid: 437 + components: + - type: Transform + pos: -3.5018106,0.24183923 + parent: 179 + - uid: 949 + components: + - type: Transform + pos: -12.238617,9.081488 + parent: 179 +- proto: WelderExperimental + entities: + - uid: 343 + components: + - type: Transform + pos: 0.6895334,4.7183027 + parent: 179 +- proto: WeldingFuelTankFull + entities: + - uid: 693 + components: + - type: Transform + pos: -1.5,3.5 + parent: 179 +- proto: Window + entities: + - uid: 111 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 179 + - uid: 194 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 179 + - uid: 230 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 179 + - uid: 1001 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 179 + - uid: 1002 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 179 + - uid: 1003 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 179 + - uid: 1004 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 179 + - uid: 1005 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 179 + - uid: 1006 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 179 +- proto: Wirecutter + entities: + - uid: 359 + components: + - type: Transform + pos: -1.6207478,4.3951616 + parent: 179 +- proto: Wrench + entities: + - uid: 327 + components: + - type: Transform + pos: -0.11783123,4.753312 + parent: 179 +... diff --git a/Resources/Prototypes/Maps/debug.yml b/Resources/Prototypes/Maps/debug.yml index 2f475c1e57..ec13a0ee1e 100644 --- a/Resources/Prototypes/Maps/debug.yml +++ b/Resources/Prototypes/Maps/debug.yml @@ -18,7 +18,7 @@ - type: gameMap id: Dev mapName: Dev - mapPath: /Maps/Test/dev_map.yml + mapPath: /Maps/CrystallPunk/dev_map.yml #CrystallPunk Dev replacement minPlayers: 0 stations: Dev: